1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2026-04-22 04:15:31 -04:00
Files
jarv.is/components/Blockquote/Blockquote.tsx
T
2025-02-07 11:33:38 -05:00

11 lines
322 B
TypeScript

import clsx from "clsx";
import type { ComponentPropsWithoutRef } from "react";
import styles from "./Blockquote.module.css";
const Blockquote = ({ className, ...rest }: ComponentPropsWithoutRef<"blockquote">) => (
<blockquote className={clsx(styles.blockquote, className)} {...rest} />
);
export default Blockquote;