import { FunctionalComponent } from 'preact'; interface Props { text?: string; disabled?: boolean; className?: string; } export const Input: FunctionalComponent = ({ className = '', disabled = false, text, }) => { const base = `rounded py-1.5 px-3 text-input my-1 h-8 bg-contrast`; const stateClasses = disabled ? 'no-border' : 'border-solid border-1 border-neutral'; const classes = `${base} ${stateClasses} ${className}`; return ( ); };