import React from 'react'; import { Blockquote as BlockquotePrimitive, BlockquoteProps as BlockquotePropsPrimitive } from '@modulz/primitives'; export type BlockquoteProps = BlockquotePropsPrimitive type ExtractRefType = TypesThatMayContainReactRef extends {ref?: React.Ref} ? T : unknown; type PrimitiveRefType = ExtractRefType export const Blockquote = React.forwardRef((props, ref) => { return ( ); });