UNPKG

svelte-lucide

Version:

Lucide SVG icon components for Svelte

18 lines (17 loc) 509 B
import type { Props } from './types'; /** * [Go to docs](https://svelte-lucide.codewithshin.com/) * ## Props * @prop size = ctx.size || '24' * @prop role = ctx.role || 'img' * @prop color = ctx.color || 'currentColor' * @prop strokeWidth = ctx.strokeWidth || '2' * @prop title * @prop desc * @prop focusable = 'false' * @prop ariaLabel * @prop ...restProps */ declare const StarHalf: import("svelte").Component<Props, {}, "">; type StarHalf = ReturnType<typeof StarHalf>; export default StarHalf;