import type { Component } from 'svelte'; import type { Props } from './types'; interface IconProps extends Props { Icon: Component; } /** * [Go to docs](https://svelte-ant-design-icons.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;