UNPKG

@navinc/base-react-components

Version:
10 lines (9 loc) 306 B
import { ReactNode } from 'react'; import { ThemeColor } from './theme.js'; declare type BlockQuoteProps = { title: string; children?: ReactNode; color?: ThemeColor; }; declare const BlockQuote: ({ title, children, color, ...props }: BlockQuoteProps) => JSX.Element; export default BlockQuote;