flowbite-svelte
Version:
Flowbite components for Svelte
22 lines (21 loc) • 817 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#L1366)
* ## Props
* @prop fillPercent = 100
* @prop fillColor = "#00ff00"
* @prop strokeColor = "#00ff00"
* @prop size = 24
* @prop ariaLabel = "custom icon"
* @prop iconIndex = 0
* @prop groupId = "custom"
* @prop role = "img"
* @prop svgClass
* @prop pathd = "M21 8.25c0-2.485-2.099-4.5-4.688-4.5-1.935 0-3.597 1.126-4.312 2.733-.715-1.607-2.377-2.733-4.313-2.733C5.1 3.75 3 5.765 3 8.25c0 7.22 9 12 9 12s9-4.78 9-12z"
* @prop ...restProps
*/
declare const CustomIcon: import("svelte").Component<RatingIconProps, {}, "">;
type CustomIcon = ReturnType<typeof CustomIcon>;
export default CustomIcon;