import * as SelectPrimitive from "@radix-ui/react-select";
import * as React from "react";
import { Chevron } from "react-day-picker";
const Select = SelectPrimitive.Root;
const SelectGroup = SelectPrimitive.Group;
const SelectValue = SelectPrimitive.Value;
const SelectTrigger = ({
children,
...props
}: SelectPrimitive.SelectTriggerProps) => (
{children}
);
const SelectScrollUpButton = (props: SelectPrimitive.SelectProps) => (
);
const SelectScrollDownButton = (
props: SelectPrimitive.SelectScrollDownButtonProps,
) => (
);
type SelectContentProps = SelectPrimitive.SelectContentProps & {
container?: SelectPrimitive.SelectPortalProps["container"];
};
const SelectContent: React.FC = ({
children,
position = "popper",
container,
...props
}) => (
{children}
);
const SelectItem = ({
children,
...props
}: SelectPrimitive.SelectItemProps) => (
{children}
);
function SelectStyles() {
return (
);
}
export {
Select,
SelectGroup,
SelectValue,
SelectTrigger,
SelectContent,
SelectItem,
SelectScrollUpButton,
SelectScrollDownButton,
SelectStyles,
};