14 lines
307 B
TypeScript

import { Immutable } from "helpers/types";
interface Props {
className?: string;
}
export function HorizontalLine(props: Immutable<Props>): JSX.Element {
return (
<div
className={`h-0 w-full my-8 border-t-[3px] border-dotted border-black ${props.className}`}
></div>
);
}