import { SmallTitle } from '@roleypoly/design-system/atoms/typography'; import * as React from 'react'; import { FiKey } from 'react-icons/fi'; import { TextInput, TextInputWithIcon } from './TextInput'; export default { title: 'Atoms/Text Input', argTypes: { placeholder: { control: 'text' }, }, args: { placeholder: 'Fill me in!', }, }; export const Common = (args) => (
TextInput
TextInputWithIcon
} {...args} />
} {...args} disabled />
} {...args} type="password" />
);