UNPKG

@vertisanpro/flowbite-react

Version:

Non-Official React components built for Flowbite and Tailwind CSS

13 lines (12 loc) 426 B
import type { ComponentProps, FC } from 'react'; import type { DeepPartial } from '../../types'; export interface FlowbiteBlockquoteTheme { root: FlowbiteBlockquoteRootTheme; } export interface FlowbiteBlockquoteRootTheme { base: string; } export interface BlockquoteProps extends ComponentProps<'blockquote'> { theme?: DeepPartial<FlowbiteBlockquoteTheme>; } export declare const Blockquote: FC<BlockquoteProps>;