Separator
Separator is a React and Tailwind CSS layout component from HextaUI, licensed MIT. Copy it and paste it into your project.
HextaUI
MIT
layout
What it is
Separator is a React and Tailwind CSS layout component from HextaUI, licensed MIT. Copy it and paste it into your project.
How to use it
Open it in the catalogue, press copy, and paste it into your project. The prompt you copy carries the code and the rules that tell your agent to reproduce it without changing anything.
Five free copies a month. No card.
Needs
npm i @radix-ui/react-separator
Licence
This component comes from HextaUI and is redistributed under the MIT licence, which permits commercial use. The copyright notice travels with the code.
Separator
"use client";
import * as SeparatorPrimitive from "@radix-ui/react-separator";
import * as React from "react";
import { cn } from "@/lib/utils";
const Separator = React.forwardRef<
React.ComponentRef<typeof SeparatorPrimitive.Root>,
React.ComponentProps<typeof SeparatorPrimitive.Root>
>(function Separator(
{ className, orientation = "horizontal", decorative = true, ...props },
ref
) {
return (
<SeparatorPrimitive.Root
aria-orientation={orientation}
className={cn(
"shrink-0 touch-manipulation bg-border data-[orientation=horizontal]:h-px data-[orientation=vertical]:h-full data-[orientation=horizontal]:w-full data-[orientation=vertical]:w-px",
className
)}
data-slot="separator"
decorative={decorative}
orientation={orientation}
ref={ref}
{...props}
/>
);
});
export { Separator };