Files
strudel/website/src/repl/components/textbox/Textbox.jsx
T
Jade (Rose) Rowland c852b5fab0 fix lint
2025-04-19 16:21:11 -04:00

15 lines
351 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}
/>
);
}