flowbite-svelte
Version:
Flowbite components for Svelte
19 lines (18 loc) • 551 B
TypeScript
import type { BlockquoteProps } from "../../types";
/**
* [Go to docs](https://flowbite-svelte.com/)
* ## Type
* [BlockquoteProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L1877)
* ## Props
* @prop children
* @prop class: className
* @prop border
* @prop italic = true
* @prop bg
* @prop alignment = "left"
* @prop size = "lg"
* @prop ...restProps
*/
declare const Blockquote: import("svelte").Component<BlockquoteProps, {}, "">;
type Blockquote = ReturnType<typeof Blockquote>;
export default Blockquote;