UNPKG

flowbite-svelte

Version:

Flowbite components for Svelte

37 lines (36 loc) 1.23 kB
import { SvelteComponentTyped } from "svelte"; import type { SVGAttributes } from 'svelte/elements'; declare const __propDef: { props: SVGAttributes<SVGSVGElement> & { fillPercent?: number; fillColor?: string; strokeColor?: string; size?: number; ariaLabel?: string; id?: string; role?: string; }; events: { click: MouseEvent; } & { [evt: string]: CustomEvent<any>; }; slots: {}; }; export type ThumbupProps = typeof __propDef.props; export type ThumbupEvents = typeof __propDef.events; export type ThumbupSlots = typeof __propDef.slots; /** * [Go to docs](https://flowbite-svelte.com/) * ## Props * @prop export let fillPercent: $$Props['fillPercent'] = 100; * @prop export let fillColor: $$Props['fillColor'] = '#00b500'; * @prop export let strokeColor: $$Props['strokeColor'] = '#00b500'; * @prop export let size: $$Props['size'] = 24; * @prop export let ariaLabel: $$Props['ariaLabel'] = 'thumbup'; * @prop export let id: $$Props['id'] = 'thumbup'; * @prop export let role: $$Props['role'] = 'img'; */ export default class Thumbup extends SvelteComponentTyped<ThumbupProps, ThumbupEvents, ThumbupSlots> { } export {};