Files
strudel/website/src/repl/components/textbox/Textbox.jsx
T
Jade (Rose) Rowland bd08b74ebc fixed strudel bool
2025-04-19 16:10:38 -04:00

12 lines
326 B
React

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