A collection of loading animations component for Svelte
npm install svelte-loading-animationsh
npm install svelte-loading-animation
`Usage
First you need to import the desired animation(s) on the script section
`js
// ...
import { LoadRing, LoadRipple } from 'sveltip';
// ...
`
and then use it on your application. Here's some example code:
`html
`
By default, they have Svelte's orange color and 64px*64px size. You can customize the looks by passing available properties.Properties
| Property | Default | Accepted Value |
| ----- | ----- | ------ |
| color | #ff3e00 | Any CSS background color |
| size | 64px | Integer or decimal in px, em, rem |Some samples with props:
`html
``