mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-27 02:18:29 -04:00
11 lines
296 B
TypeScript
11 lines
296 B
TypeScript
import clsx from "clsx";
|
|
import type { ComponentPropsWithoutRef } from "react";
|
|
|
|
import styles from "./Content.module.css";
|
|
|
|
const Content = ({ className, ...rest }: ComponentPropsWithoutRef<"div">) => (
|
|
<div className={clsx(styles.content, className)} {...rest} />
|
|
);
|
|
|
|
export default Content;
|