@rkosafo/cai.components
Version:
This package is under development and not ready for public use.
16 lines (15 loc) • 463 B
TypeScript
import { type LabelProps } from '../../index.js';
/**
* [Go to docs](https://flowbite-svelte.com/)
* ## Type
* [LabelProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L784)
* ## 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;