flowbite-svelte
Version:
Flowbite components for Svelte
20 lines (19 loc) • 582 B
TypeScript
import { type IndicatorProps } from "..";
/**
* [Go to docs](https://flowbite-svelte.com/)
* ## Type
* [IndicatorProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L995)
* ## Props
* @prop children
* @prop color = "primary"
* @prop cornerStyle = "circular"
* @prop size = "md"
* @prop border = false
* @prop placement
* @prop offset = true
* @prop class: className
* @prop ...restProps
*/
declare const Indicator: import("svelte").Component<IndicatorProps, {}, "">;
type Indicator = ReturnType<typeof Indicator>;
export default Indicator;