accords-library.com/src/components/HorizontalLine.tsx
2022-05-21 13:18:57 +02:00

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>
);
}