import { h } from 'preact'; import { memo } from 'preact/compat'; export function Calendar({ className = 'h-6 w-6', stroke = 'currentColor', fill = 'none', onClick = () => {} }) { return ( ); } export default memo(Calendar);