mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-27 09:38:27 -04:00
12 lines
330 B
TypeScript
12 lines
330 B
TypeScript
import classNames from "classnames";
|
|
|
|
import styles from "./Blockquote.module.css";
|
|
|
|
export type BlockquoteProps = JSX.IntrinsicElements["blockquote"];
|
|
|
|
const Blockquote = ({ className, ...rest }: BlockquoteProps) => (
|
|
<blockquote className={classNames(styles.blockquote, className)} {...rest} />
|
|
);
|
|
|
|
export default Blockquote;
|