el.xwx.moe/components/ui/Divider.tsx
2024-10-29 18:08:47 -04:00

13 lines
242 B
TypeScript

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;