Installation
Follow these simple steps to add the Select component to your project:
Create a new file components/ui/select.tsx
and copy the code below:
import { cn } from "@/lib/utils"
function Skeleton({
className,
...props
}: React.HTMLAttributes<HTMLDivElement>) {
return (
<div
className={cn("animate-pulse rounded-md bg-primary/10", className)}
{...props}
/>
)
}
export { Skeleton }
Adjust the import paths in both files according to your project's structure.