We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e8c29c7 commit 6fa2041Copy full SHA for 6fa2041
1 file changed
apps/docs/src/ui/select-alignment.stories.tsx
@@ -1,6 +1,5 @@
1
import type { Meta, StoryObj } from '@storybook/react-vite';
2
import { expect, userEvent, within } from '@storybook/test';
3
-import * as React from 'react';
4
import { Select, type SelectOption } from '@lambdacurry/forms/ui/select';
5
6
const meta: Meta<typeof Select> = {
@@ -30,11 +29,7 @@ export const RightAlignedWithEndContent: Story = {
30
29
<div className="w-[480px]">
31
<div className="flex justify-end">
32
<div className="w-[280px]">
33
- <Select
34
- options={OPTIONS}
35
- placeholder="Choose a state"
36
- contentProps={{ align: 'end' }}
37
- />
+ <Select options={OPTIONS} placeholder="Choose a state" contentProps={{ align: 'end' }} />
38
</div>
39
40
@@ -74,5 +69,3 @@ export const RightAlignedWithEndContent: Story = {
74
69
});
75
70
},
76
71
};
77
-
78
0 commit comments