UNPKG

flowbite-svelte

Version:

Flowbite components for Svelte

15 lines (14 loc) 462 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#L1419) * ## Props * @prop ratings * @prop ratings2 * @prop headerLabel * @prop classes */ declare const ScoreRating: import("svelte").Component<ScoreRatingProps, {}, "">; type ScoreRating = ReturnType<typeof ScoreRating>; export default ScoreRating;