"use client"; import { ComponentProps } from "react"; import * as SelectPrimitive from "@radix-ui/react-select"; import { cn } from "@/lib/style"; import * as icons from "@/components/icons"; import { Indicator } from "@/components/indicator"; export type Props = ComponentProps; export const { Root, Group, Value } = SelectPrimitive; export const Trigger = ({ className, children, ...props }: ComponentProps) => ( {children} ); export const Content = ({ className, children, position = "popper", ...props }: ComponentProps) => ( {children} ); export const Label = ({ className, ...props }: ComponentProps) => ( ); export const Item = ({ className, children, ...props }: ComponentProps) => ( {children} ); export const Separator = ({ className, ...props }: ComponentProps) => ( );