mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-26 19:08:26 -04:00
11 lines
310 B
TypeScript
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;
|