UNPKG

flowbite-svelte

Version:

Flowbite components for Svelte

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