mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-27 05:18:28 -04:00
12 lines
326 B
TypeScript
12 lines
326 B
TypeScript
import classNames from "classnames";
|
|
|
|
import styles from "./HorizontalRule.module.css";
|
|
|
|
export type HorizontalRuleProps = JSX.IntrinsicElements["hr"];
|
|
|
|
const HorizontalRule = ({ className, ...rest }: HorizontalRuleProps) => (
|
|
<hr className={classNames(styles.hr, className)} {...rest} />
|
|
);
|
|
|
|
export default HorizontalRule;
|