@reown/appkit-ui
Version:
The full stack toolkit to build onchain app UX.
31 lines (28 loc) • 556 B
JavaScript
import { css } from '../../utils/ThemeHelperUtil.js';
export default css `
:host {
display: block;
width: 120px;
height: 120px;
}
svg {
width: 120px;
height: 120px;
fill: none;
stroke: transparent;
stroke-linecap: round;
}
use {
stroke: ${tokens => tokens.colors.accent100};
stroke-width: 2px;
stroke-dasharray: 54, 118;
stroke-dashoffset: 172;
animation: dash 1s linear infinite;
}
@keyframes dash {
to {
stroke-dashoffset: 0px;
}
}
`;
//# sourceMappingURL=styles.js.map