UNPKG

flowbite-svelte

Version:

Flowbite components for Svelte

14 lines (13 loc) 445 B
import type { ScoreRatingProps } from "../types"; /** * [Go to docs](https://flowbite-svelte.com/) * ## Type * [ScoreRatingProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L1316) * ## Props * @prop ratings * @prop ratings2 * @prop headerLabel */ declare const ScoreRating: import("svelte").Component<ScoreRatingProps, {}, "">; type ScoreRating = ReturnType<typeof ScoreRating>; export default ScoreRating;