import { useRef } from 'preact/hooks' import { Icon } from './Icon.jsx' const isSafari = /^((?!chrome|android).)*safari/i.test(navigator.userAgent) export const DatePicker = ({ date, setDate }) => { const input = useRef() const [year, month, day] = date.split('T')[0].split('-') return (