Skip to content

Commit

Permalink
🔥 SelectSperator 컴포넌트 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
doggopawer committed Nov 1, 2023
1 parent 67641fa commit 0887fff
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions src/components/ui/Select/Select.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -96,18 +96,6 @@ const SelectItem = React.forwardRef<
))
SelectItem.displayName = SelectPrimitive.Item.displayName

const SelectSeparator = React.forwardRef<
React.ElementRef<typeof SelectPrimitive.Separator>,
React.ComponentPropsWithoutRef<typeof SelectPrimitive.Separator>
>(({ className, ...props }, ref) => (
<SelectPrimitive.Separator
ref={ref}
className={cn('-mx-1 my-1 h-px bg-muted', className)}
{...props}
/>
))
SelectSeparator.displayName = SelectPrimitive.Separator.displayName

export {
Select,
SelectGroup,
Expand All @@ -116,5 +104,4 @@ export {
SelectContent,
SelectLabel,
SelectItem,
SelectSeparator,
}

0 comments on commit 0887fff

Please sign in to comment.