File tree Expand file tree Collapse file tree 1 file changed +27
-33
lines changed
packages/components/src/components/Select Expand file tree Collapse file tree 1 file changed +27
-33
lines changed Original file line number Diff line number Diff line change @@ -54,39 +54,33 @@ function DefaultComponent(
5454 props : Omit < ComponentProps < typeof Select > , 'children' > ,
5555) {
5656 return (
57- < Flex justifyContent = "flex-end" >
58- < Select { ...props } defaultValue = { [ 'Option 1' ] } onChange = { ( ) => { } } >
59- < SelectTrigger > Select2</ SelectTrigger >
60- < SelectContainer >
61- < SelectOption disabled value = "Option 1" >
62- Option 1
63- </ SelectOption >
64- < SelectOption value = "Option 2" > Option 2</ SelectOption >
65- < SelectDivider />
66- < SelectOption value = "Option 3" > Option 3</ SelectOption >
67- < SelectOption disabled value = "Option 4" >
68- Option 4
69- </ SelectOption >
70- < Select type = "radio" >
71- < SelectTrigger asChild >
72- < SelectOption >
73- < Flex
74- alignItems = "center"
75- justifyContent = "space-between"
76- w = "100%"
77- >
78- Option 5< IconArrow />
79- </ Flex >
80- </ SelectOption >
81- </ SelectTrigger >
82- < SelectContainer >
83- < SelectOption value = "Option 6" > Option 6</ SelectOption >
84- < SelectOption value = "Option 7" > Option 7</ SelectOption >
85- </ SelectContainer >
86- </ Select >
87- </ SelectContainer >
88- </ Select >
89- </ Flex >
57+ < Select { ...props } defaultValue = { [ 'Option 1' ] } onChange = { ( ) => { } } >
58+ < SelectTrigger > Select2</ SelectTrigger >
59+ < SelectContainer >
60+ < SelectOption disabled value = "Option 1" >
61+ Option 1
62+ </ SelectOption >
63+ < SelectOption value = "Option 2" > Option 2</ SelectOption >
64+ < SelectDivider />
65+ < SelectOption value = "Option 3" > Option 3</ SelectOption >
66+ < SelectOption disabled value = "Option 4" >
67+ Option 4
68+ </ SelectOption >
69+ < Select type = "radio" >
70+ < SelectTrigger asChild >
71+ < SelectOption >
72+ < Flex alignItems = "center" justifyContent = "space-between" w = "100%" >
73+ Option 5< IconArrow />
74+ </ Flex >
75+ </ SelectOption >
76+ </ SelectTrigger >
77+ < SelectContainer >
78+ < SelectOption value = "Option 6" > Option 6</ SelectOption >
79+ < SelectOption value = "Option 7" > Option 7</ SelectOption >
80+ </ SelectContainer >
81+ </ Select >
82+ </ SelectContainer >
83+ </ Select >
9084 )
9185}
9286
You can’t perform that action at this time.
0 commit comments