UNPKG

@reown/appkit-ui

Version:

The full stack toolkit to build onchain app UX.

46 lines (38 loc) 721 B
import { css } from 'lit'; export default css ` :host { display: flex; } :host([data-size='sm']) > svg { width: 12px; height: 12px; } :host([data-size='md']) > svg { width: 16px; height: 16px; } :host([data-size='lg']) > svg { width: 24px; height: 24px; } :host([data-size='xl']) > svg { width: 32px; height: 32px; } svg { animation: rotate 1.4s linear infinite; color: var(--local-color); } :host([data-size='md']) > svg > circle { stroke-width: 6px; } :host([data-size='sm']) > svg > circle { stroke-width: 8px; } @keyframes rotate { 100% { transform: rotate(360deg); } } `; //# sourceMappingURL=styles.js.map