A collection of animated SVG icons for Svelte with enhanced customization, flexible event handling, and improved state management. Each icon supports sophisticated animation transitions, accessibility features, and granular control.
pnpm i -D svelte-animated-icons
<script>
import { AddColumnAfterFlowbite } from 'svelte-animated-icons';
</script>
<AddColumnAfterFlowbite />
<script>
import { AddColumnAfterFlowbite } from 'svelte-animated-icons';
</script>
<AddColumnAfterFlowbite
size={32}
color="#ff0000"
strokeWidth={2}
event="click"
pauseDuration={300}
transitionParams={{
duration: 800,
delay: 0
}}
/>
Prop | Type | Default | Description |
---|---|---|---|
size | number | 24 | Icon size in pixels |
color | string | 'currentColor' | Icon color (any valid CSS color) |
strokeWidth | number | 2 | Width of the icon strokes |
event | 'hover' | 'click' | 'none' | 'hover' | Event that triggers the animation |
pauseDuration | number | 300 | Pause duration between animations (ms) |
transitionParams | object | { duration: 500, delay: 0 } | Svelte transition parameters |
title | { id?: string, title?: string } | - | SVG title for accessibility |
desc | { id?: string, desc?: string } | - | SVG description for accessibility |
ariaLabel | string | Icon-specific default | Aria label for the icon |
<AddColumnAfterFlowbite
title={{
id: 'add-column-title',
title: 'Add Column Icon'
}}
desc={{
id: 'add-column-desc',
desc: 'An icon to add a column with animated transition'
}}
/>
Icons include comprehensive ARIA attributes, support custom titles/descriptions, and are fully keyboard accessible.
Works in all modern browsers that support SVG and CSS animations.
git clone [email protected]:shinokada/svelte-animated-icons.git
cd svelte-animated-icons
pnpm install
pnpm test:e2e
pnpm test
pnpm build
Contributions are welcome! Please read our contributing guidelines before submitting a pull request.
MIT License - see the LICENSE file for details.