flowbite-svelte
Version:
Flowbite components for Svelte
16 lines (15 loc) • 454 B
TypeScript
import { type LabelProps } from "../..";
/**
* [Go to docs](https://flowbite-svelte.com/)
* ## Type
* [LabelProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L803)
* ## Props
* @prop children
* @prop color = "gray"
* @prop show = true
* @prop class: className
* @prop ...restProps
*/
declare const Label: import("svelte").Component<LabelProps, {}, "">;
type Label = ReturnType<typeof Label>;
export default Label;