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

11 lines
318 B
TypeScript

import classNames from "classnames";
import type { HTMLAttributes } from "react";
import styles from "./Content.module.css";
type Props = HTMLAttributes<HTMLDivElement>;
const Content = ({ className, ...rest }: Props) => <div className={classNames(styles.content, className)} {...rest} />;
export default Content;