import { h, JSX } from 'preact'; import clsx from 'clsx'; import styles from './input.module.css'; type Props = JSX.HTMLAttributes & { invalid?: boolean; }; export function Input({ className, type, invalid, ...props }: Props) { return ( ); }