UNPKG
solid-fa
Version:
latest (0.2.0)
0.2.0
0.1.0
0.0.4
0.0.3
0.0.2
0.0.1
Tiny FontAwesome component for SolidJS
github.com/Cweili/solid-fa
Cweili/solid-fa
solid-fa
/
src
/
Fa
/
style.module.css
17 lines
(14 loc)
•
208 B
CSS
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
.spin
{
animation
: spin
2s
0s
infinite linear; }
.pulse
{
animation
: spin
1s
infinite
steps
(
8
); }
@keyframes
spin {
0%
{
transform
:
rotate
(
0deg
); }
100%
{
transform
:
rotate
(
360deg
); } }