(
{label && (
@@ -63,6 +64,7 @@ const MultiSelect = ({
multiValue: () => 'bg-gray-300',
multiValueRemove: () => 'hover:cursor-pointer text-red-700',
}}
+ {...props}
/>
{error && {error}}
diff --git a/src/components/MultiSelectCreatable.tsx b/src/components/MultiSelectCreatable.tsx
index 0aabf5f5..fb59eb2c 100644
--- a/src/components/MultiSelectCreatable.tsx
+++ b/src/components/MultiSelectCreatable.tsx
@@ -30,6 +30,7 @@ const MultiSelectCreatable = ({
onChange,
onBlur,
error,
+ ...props
}: MultiSelectCreatableProps) => {
const [inputValue, setInputValue] = React.useState('')
const [value, setValue] = React.useState
>(initialValue)
@@ -112,6 +113,7 @@ const MultiSelectCreatable = ({
},
}),
}}
+ {...props}
/>
{error && {error}}
diff --git a/src/components/RadioButton.tsx b/src/components/RadioButton.tsx
index 5dc3008a..0c2824f1 100644
--- a/src/components/RadioButton.tsx
+++ b/src/components/RadioButton.tsx
@@ -6,7 +6,7 @@ export interface RadioButtonProps extends React.HTMLProps