We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf082d6 commit 9f2ba50Copy full SHA for 9f2ba50
1 file changed
features/ui/select/select.tsx
@@ -26,12 +26,12 @@ export function Select<T>({
26
value,
27
onChange,
28
placeholder = "Choose an option",
29
- defaultValue = "",
30
- iconSrc = "",
+ defaultValue,
+ iconSrc,
31
disabled = false,
32
- label = "",
33
- hint = "",
34
- errorMessage = "",
+ label,
+ hint,
+ errorMessage,
35
...props
36
}: SelectProps<T>) {
37
const [showDropdown, setShowDropdown] = useState(false);
0 commit comments