summaryrefslogtreecommitdiffstats
path: root/src/components/atoms/forms/select.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/atoms/forms/select.tsx')
-rw-r--r--src/components/atoms/forms/select.tsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/components/atoms/forms/select.tsx b/src/components/atoms/forms/select.tsx
index 6e46660..e434a82 100644
--- a/src/components/atoms/forms/select.tsx
+++ b/src/components/atoms/forms/select.tsx
@@ -7,7 +7,7 @@ type SelectOptions = {
value: string;
};
-type SelectProps = {
+export type SelectProps = {
/**
* Field state. Either enabled (false) or disabled (true).
*/
@@ -15,11 +15,11 @@ type SelectProps = {
/**
* Field id attribute.
*/
- id?: string;
+ id: string;
/**
* Field name attribute.
*/
- name?: string;
+ name: string;
/**
* True if the field is required. Default: false.
*/