import { Immutable } from "helpers/types"; interface Props { className?: string; } export function HorizontalLine(props: Immutable): JSX.Element { return (
); }