mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-26 07:05:21 -04:00
11 lines
322 B
TypeScript
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;
|