diff --git a/public/icon/dropdown_icon.svg b/public/icon/dropdown_icon.svg new file mode 100644 index 0000000..3ee9530 --- /dev/null +++ b/public/icon/dropdown_icon.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/common/input/Input.tsx b/src/components/common/input/Input.tsx index c413c43..81279b4 100644 --- a/src/components/common/input/Input.tsx +++ b/src/components/common/input/Input.tsx @@ -29,6 +29,7 @@ const Input = forwardRef( alt, error = false, errorMessage, + required, ...props }, ref @@ -57,6 +58,7 @@ const Input = forwardRef(
{ containerClassName: string; labelClassName: string; textareaClassName: string; + spanClassName: string; } const Textarea = ({ label, + required, containerClassName, labelClassName, textareaClassName, + spanClassName, ...props }: TextareaProps) => { return (
- -