File size: 173 Bytes
1067b6f | 1 2 3 4 5 6 | import { cn } from "@/lib/utils";
export const Line = (props: { className?: string }) => {
return <div className={cn("h-[1px] bg-border w-full", props.className)} />;
};
|
1067b6f | 1 2 3 4 5 6 | import { cn } from "@/lib/utils";
export const Line = (props: { className?: string }) => {
return <div className={cn("h-[1px] bg-border w-full", props.className)} />;
};
|