"use client"
import * as React from "react"
import { CheckIcon, ChevronDownIcon, ChevronUpIcon } from "lucide-react"
import { Select as SelectPrimitive } from "radix-ui"
import { cn } from "@/lib/utils"
function Select({
...props
}) {
return ;
}
function SelectGroup({
...props
}) {
return ;
}
function SelectValue({
...props
}) {
return ;
}
function SelectTrigger({
className,
size = "default",
children,
...props
}) {
return (
{children}
);
}
function SelectContent({
className,
children,
position = "item-aligned",
align = "center",
sideOffset = 4,
...props
}) {
return (
{children}
);
}
function SelectLabel({
className,
...props
}) {
return (
);
}
function SelectItem({
className,
children,
...props
}) {
return (
{children}
);
}
function SelectSeparator({
className,
...props
}) {
return (
);
}
function SelectScrollUpButton({
className,
...props
}) {
return (
);
}
function SelectScrollDownButton({
className,
...props
}) {
return (
);
}
export {
Select,
SelectContent,
SelectGroup,
SelectItem,
SelectLabel,
SelectScrollDownButton,
SelectScrollUpButton,
SelectSeparator,
SelectTrigger,
SelectValue,
}