@navinc/base-react-components
Version:
Nav's Pattern Library
10 lines (9 loc) • 306 B
TypeScript
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;