diff --git a/packages/core-components/src/components/Select/Select.stories.tsx b/packages/core-components/src/components/Select/Select.stories.tsx index c48f36c2e5..af595605c7 100644 --- a/packages/core-components/src/components/Select/Select.stories.tsx +++ b/packages/core-components/src/components/Select/Select.stories.tsx @@ -15,7 +15,7 @@ */ import React from 'react'; -import { SelectComponent as Select } from './Select'; +import { SelectComponent as Select, SelectProps } from './Select'; export default { title: 'Inputs/Select', @@ -55,3 +55,44 @@ export const Multiple = () => ( onChange={() => {}} /> ); + +export const Disabled = (args: SelectProps) => ; + +Selected.args = { + placeholder: 'All results', + label: 'Selected', + items: SELECT_ITEMS, + disabled: false, + selected: 'test_2', +}; + +export const Native = (args: SelectProps) => ; + +MarginDense.args = { + placeholder: 'All results', + label: 'Margin Dense', + items: SELECT_ITEMS, + disabled: false, + selected: 'test_2', + margin: 'dense', +};