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