14 lines
307 B
TypeScript
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={`my-8 h-0 w-full border-t-[3px] border-dotted border-black ${props.className}`}
|
|
></div>
|
|
);
|
|
}
|