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