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