mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-27 15:16:21 -04:00
11 lines
318 B
TypeScript
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;
|