svelte-animated-icons
Version: 
A collection of animated SVG icons for Svelte with customizable draw transitions, events, and accessibility features. Each icon supports hover/click animations, customizable colors, sizes, and stroke widths.
24 lines (23 loc) • 667 B
TypeScript
import type { DrawParams } from 'svelte/transition';
import type { SVGAttributes } from 'svelte/elements';
type TitleType = {
    id?: string;
    title?: string;
};
type DescType = {
    id?: string;
    desc?: string;
};
interface Props extends SVGAttributes<SVGSVGElement> {
    pauseDuration?: number;
    event?: 'hover' | 'click' | 'none';
    title?: TitleType;
    desc?: DescType;
    ariaLabel?: string;
    size?: number;
    color?: string;
    transitionParams?: DrawParams;
}
declare const TrashBinOutlineIon: import("svelte").Component<Props, {}, "">;
type TrashBinOutlineIon = ReturnType<typeof TrashBinOutlineIon>;
export default TrashBinOutlineIon;