el.xwx.moe/components/ui/Divider.tsx

13 lines
242 B
TypeScript
Raw Normal View History

2024-10-29 17:08:47 -05:00
import clsx from "clsx";
import React from "react";
type Props = {
className?: string;
};
function Divider({ className }: Props) {
return <hr className={clsx("border-neutral-content border-t", className)} />;
}
export default Divider;