evalstate's picture
download
raw
654 Bytes
import * as React from 'react';
import * as SeparatorPrimitive from '@radix-ui/react-separator';
import { cn } from '@/lib/utils';
function Separator({
className,
orientation = 'horizontal',
decorative = true,
...props
}: React.ComponentProps<typeof SeparatorPrimitive.Root>) {
return (
<SeparatorPrimitive.Root
data-slot="separator"
decorative={decorative}
orientation={orientation}
className={cn(
'bg-border shrink-0 data-[orientation=horizontal]:h-px data-[orientation=horizontal]:w-full data-[orientation=vertical]:h-full data-[orientation=vertical]:w-px',
className
)}
{...props}
/>
);
}
export { Separator };

Xet Storage Details

Size:
654 Bytes
·
Xet hash:
819edc021c3ed59b2d8fb2894c41e3da6d6f53e03beb1f85362802d6d4b2dea2

Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.