Update Separator component to use a thicker line for horizontal orientation

This commit is contained in:
Bram Suurd
2024-05-04 19:54:18 +02:00
parent bae23e90e3
commit de50973611

View File

@@ -19,7 +19,7 @@ const Separator = React.forwardRef<
orientation={orientation}
className={cn(
"shrink-0 bg-border",
orientation === "horizontal" ? "h-[1px] w-full" : "h-full w-[1px]",
orientation === "horizontal" ? "h-[3px] w-full" : "h-full w-[1px]",
className
)}
{...props}