flowbite-svelte
Version:
Flowbite components for Svelte
21 lines (20 loc) • 611 B
TypeScript
import type { RatingIconProps } from "../types";
/**
* [Go to docs](https://flowbite-svelte.com/)
* ## Type
* [RatingIconProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L1430)
* ## Props
* @prop fillPercent = 100
* @prop fillColor = "#ff0000"
* @prop strokeColor = "#ff0000"
* @prop size = 24
* @prop ariaLabel = "star"
* @prop iconIndex = 0
* @prop groupId = "star"
* @prop role = "img"
* @prop svgClass
* @prop ...restProps
*/
declare const Heart: import("svelte").Component<RatingIconProps, {}, "">;
type Heart = ReturnType<typeof Heart>;
export default Heart;