Jade (Rose) Rowland bbb88a2302 accessibility
2025-02-21 20:03:17 -05:00

12 lines
291 B
JavaScript

import cx from '@src/cx.mjs';
export function Textbox({ onChange, className, ...inputProps }) {
return (
<input
className={cx('p-1 bg-background rounded-md my-2 border-foreground', className)}
onChange={(e) => onChange(e.target.value)}
{...inputProps}
/>
);
}