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) • 671 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 BluetoothOutlineIon: import("svelte").Component<Props, {}, "">;
type BluetoothOutlineIon = ReturnType<typeof BluetoothOutlineIon>;
export default BluetoothOutlineIon;