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