Skip to content

Commit

Permalink
Add some examples to be tested and deleted later
Browse files Browse the repository at this point in the history
  • Loading branch information
OsamaAbdellateef committed Aug 1, 2023
1 parent 87548e1 commit e1dc6ab
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions packages/components/src/Input/Input.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,14 @@ export const Basic: Story = {
render: args => <Input placeholder="Placeholder..." {...args} />,
};

export const FileInput: Story = {
render: args => <Input placeholder="Placeholder..." {...args} type="file" />,
};

export const ColorPicker: Story = {
render: args => <Input placeholder="Placeholder..." {...args} type="color" />,
};

export const WithLeadingIcons: Story = {
render: args => (
<Input placeholder="Placeholder..." icon={<Search />} {...args} />
Expand Down

0 comments on commit e1dc6ab

Please sign in to comment.