Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 | import React, { ChangeEvent } from "react";
type MultilineInputType = {
label?: string;
value: string;
handleChange: (val: string) => void;
error?: string;
disabled?: boolean;
className?: string;
};
function Multiline({
label,
value,
handleChange,
disabled,
error,
className,
...props
}: MultilineInputType) {
const onChange = (e: ChangeEvent<HTMLTextAreaElement>) => {
const value = e.target.value;
handleChange(value);
};
return (
<textarea
className={`${className} w-full border border-gray-300 p-1 rounded text-xs resize-none text-[#676666] h-32 outline-none`}
rows={4}
value={value}
onChange={onChange}
disabled={disabled}
style={error ? { borderColor: "red" } : {}}
placeholder={`Enter ${label}`}
{...props}
/>
);
}
export default Multiline;
|