mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-27 15:16:21 -04:00
13 lines
335 B
TypeScript
13 lines
335 B
TypeScript
import classNames from "classnames";
|
|
import type { PropsWithChildren } from "react";
|
|
|
|
import styles from "./Content.module.css";
|
|
|
|
type Props = PropsWithChildren<{
|
|
className?: string;
|
|
}>;
|
|
|
|
const Content = ({ className, ...rest }: Props) => <div className={classNames(styles.content, className)} {...rest} />;
|
|
|
|
export default Content;
|