import { forwardRef } from 'react' import { Box, BoxProps } from '../Box' import { cx } from '../classnames' export interface BlockquoteProps extends BoxProps {} export let Blockquote = forwardRef(function Blockquote( props: BlockquoteProps, ref, ) { return ( ) }) export default Blockquote