40 lines
723 B
JavaScript
40 lines
723 B
JavaScript
|
import BaseStyle from 'primevue/base/style';
|
||
|
|
||
|
const css = `
|
||
|
.p-icon {
|
||
|
display: inline-block;
|
||
|
}
|
||
|
|
||
|
.p-icon-spin {
|
||
|
-webkit-animation: p-icon-spin 2s infinite linear;
|
||
|
animation: p-icon-spin 2s infinite linear;
|
||
|
}
|
||
|
|
||
|
@-webkit-keyframes p-icon-spin {
|
||
|
0% {
|
||
|
-webkit-transform: rotate(0deg);
|
||
|
transform: rotate(0deg);
|
||
|
}
|
||
|
100% {
|
||
|
-webkit-transform: rotate(359deg);
|
||
|
transform: rotate(359deg);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@keyframes p-icon-spin {
|
||
|
0% {
|
||
|
-webkit-transform: rotate(0deg);
|
||
|
transform: rotate(0deg);
|
||
|
}
|
||
|
100% {
|
||
|
-webkit-transform: rotate(359deg);
|
||
|
transform: rotate(359deg);
|
||
|
}
|
||
|
}
|
||
|
`;
|
||
|
|
||
|
export default BaseStyle.extend({
|
||
|
name: 'baseicon',
|
||
|
css
|
||
|
});
|