flowbite-svelte
Version:
Flowbite components for Svelte
23 lines (22 loc) • 673 B
TypeScript
import type { ParagraphProps } from "../../types";
/**
* [Go to docs](https://flowbite-svelte.com/)
* ## Type
* [ParagraphProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L2129)
* ## Props
* @prop children
* @prop class: className = "text-gray-900 dark:text-white"
* @prop height = "normal"
* @prop align = "left"
* @prop justify = false
* @prop italic
* @prop firstUpper = false
* @prop whitespace = "normal"
* @prop size = "base"
* @prop space = "normal"
* @prop weight = "normal"
* @prop ...restProps
*/
declare const P: import("svelte").Component<ParagraphProps, {}, "">;
type P = ReturnType<typeof P>;
export default P;