1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-04-27 05:18:28 -04:00
jarv.is/components/HorizontalRule/HorizontalRule.tsx

12 lines
283 B
TypeScript

import classNames from "classnames";
import styles from "./HorizontalRule.module.css";
type Props = {
className?: string;
};
const HorizontalRule = ({ className, ...rest }: Props) => <hr className={classNames(styles.hr, className)} {...rest} />;
export default HorizontalRule;