UNPKG

svelte-ionicons

Version:

1350+ Ionicon SVG icons for Svelte 4, 5, and Runes

21 lines (20 loc) 417 B
import type { SVGAttributes } from 'svelte/elements'; type TitleType = { id?: string; title?: string; }; type DescType = { id?: string; desc?: string; }; export interface BaseProps extends SVGAttributes<SVGElement> { size?: string; role?: string; color?: string; } export interface Props extends BaseProps { title?: TitleType; desc?: DescType; ariaLabel?: string; } export {};