@chatui/core
Version:
The React library for Chatbot UI
22 lines (19 loc) • 320 B
text/less
.Icon {
display: inline-block;
width: 1em;
height: 1em;
stroke-width: 0;
fill: currentColor;
transition: all 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}
.is-spin {
animation: spin 1s infinite linear;
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
to {
transform: rotate(1turn);
}
}