pronounsfu/frontend/components/TextInput.tsx

25 lines
626 B
TypeScript
Raw Normal View History

2022-11-17 08:34:20 -08:00
import { ChangeEventHandler } from "react";
export type Props = {
contrastBackground?: boolean;
defaultValue?: string;
value?: string;
onChange?: ChangeEventHandler<HTMLInputElement>;
2022-11-17 08:34:20 -08:00
};
export default function TextInput(props: Props) {
const bg = props.contrastBackground
? "bg-slate-50 dark:bg-slate-700"
: "bg-white dark:bg-slate-800";
return (
<input
type="text"
className={`p-1 lg:p-2 rounded-md ${bg} border-slate-300 text-black dark:border-slate-900 dark:text-white`}
defaultValue={props.defaultValue}
value={props.value}
onChange={props.onChange}
/>
);
2022-11-17 08:34:20 -08:00
}