This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import * as React from "react"; | |
| import * as ToastPrimitives from "@radix-ui/react-toast"; | |
| import { cva, type VariantProps } from "class-variance-authority"; | |
| import { X } from "lucide-react"; | |
| import { cn } from "@/lib/utils"; | |
| const ToastProvider = ToastPrimitives.Provider; | |
| const ToastViewport = React.forwardRef< |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 1. Select Component --------------------------------------------------------------------------------- | |
| "use client"; | |
| import clsx from "clsx"; | |
| import { ChevronDownIcon, X } from "lucide-react"; | |
| import Select, { | |
| ClearIndicatorProps, | |
| DropdownIndicatorProps, | |
| MultiValueRemoveProps, |