1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2026-04-22 05:35:28 -04:00
Files
jarv.is/components/HorizontalRule/HorizontalRule.tsx
T
2025-02-07 11:33:38 -05:00

11 lines
310 B
TypeScript

import clsx from "clsx";
import type { ComponentPropsWithoutRef } from "react";
import styles from "./HorizontalRule.module.css";
const HorizontalRule = ({ className, ...rest }: ComponentPropsWithoutRef<"hr">) => (
<hr className={clsx(styles.hr, className)} {...rest} />
);
export default HorizontalRule;