mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-27 06:18:27 -04:00
13 lines
360 B
TypeScript
13 lines
360 B
TypeScript
import classNames from "classnames";
|
|
import type { BlockquoteHTMLAttributes } from "react";
|
|
|
|
import styles from "./Blockquote.module.css";
|
|
|
|
type Props = BlockquoteHTMLAttributes<HTMLElement>;
|
|
|
|
const Blockquote = ({ className, ...rest }: Props) => (
|
|
<blockquote className={classNames(styles.blockquote, className)} {...rest} />
|
|
);
|
|
|
|
export default Blockquote;
|