UNPKG

flowbite-svelte

Version:

Flowbite components for Svelte

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