flowbite-react
Version:
Official React components built for Flowbite and Tailwind CSS
12 lines (11 loc) • 482 B
TypeScript
import { type ComponentProps } from "react";
import type { ThemingProps } from "../../types";
export interface BlockquoteTheme {
root: BlockquoteRootTheme;
}
export interface BlockquoteRootTheme {
base: string;
}
export interface BlockquoteProps extends ComponentProps<"blockquote">, ThemingProps<BlockquoteTheme> {
}
export declare const Blockquote: import("react").ForwardRefExoticComponent<Omit<BlockquoteProps, "ref"> & import("react").RefAttributes<HTMLQuoteElement>>;