UNPKG

flowbite-svelte

Version:

Flowbite components for Svelte

14 lines (13 loc) 444 B
import type { SecondaryProps } from "../../types"; /** * [Go to docs](https://flowbite-svelte.com/) * ## Type * [SecondaryProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L2137) * ## Props * @prop children * @prop class: className * @prop ...restProps */ declare const Secondary: import("svelte").Component<SecondaryProps, {}, "">; type Secondary = ReturnType<typeof Secondary>; export default Secondary;