accords-library.com/src/components/HorizontalLine.tsx
2022-04-03 10:34:21 +02:00

12 lines
258 B
TypeScript

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