flowbite-svelte
Version:
Flowbite components for Svelte
22 lines (21 loc) • 575 B
TypeScript
import type { RatingProps } from "../types";
/**
* [Go to docs](https://flowbite-svelte.com/)
* ## Type
* [RatingProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L1292)
* ## Props
* @prop children
* @prop text
* @prop class: className
* @prop classes
* @prop size = 24
* @prop total = 5
* @prop rating = 4
* @prop icon: Icon = Star
* @prop count = false
* @prop pClass
* @prop ...restProps
*/
declare const Rating: import("svelte").Component<RatingProps, {}, "">;
type Rating = ReturnType<typeof Rating>;
export default Rating;