import type { Component } from 'svelte'; import type { SVGAttributes } from 'svelte/elements'; interface Props extends SVGAttributes { Icon: Component; size?: string; role?: string; ariaLabel?: string; } /** * [Go to docs](https://svelte-heros-v2.codewithshin.com/) * ## Props * @prop Icon * @prop size = '24' * @prop color = 'currentColor' * @prop role = 'img' * @prop ariaLabel = 'Icon' * @prop ...restProps */ declare const Icon: Component; type Icon = ReturnType; export default Icon;