import React from 'react'; import { Meta, Story } from '@storybook/react'; import { Select, SelectProps } from './index'; import { HMSThemeProvider } from '../../hooks/HMSThemeProvider'; const meta: Meta = { title: 'Select', component: Select, }; export default meta; const BasicSelectField: Story = args => { return (
); }; export const Default = BasicSelectField.bind({}); const options = ['Kheer Ganga', 'Hampi', 'Ooty', 'Manali'].map(o => ( )); Default.args = { children: options }; export const LightSelect = Light.bind({}); LightSelect.args = { children: options };