UNPKG

@reown/appkit-scaffold-ui

Version:

The full stack toolkit to build onchain app UX.

26 lines (24 loc) 561 B
import { css } from '@reown/appkit-ui'; export default css ` wui-shimmer { width: 100%; aspect-ratio: 1 / 1; border-radius: ${({ borderRadius }) => borderRadius[4]}; } wui-qr-code { opacity: 0; animation-duration: ${({ durations }) => durations['xl']}; animation-timing-function: ${({ easings }) => easings['ease-out-power-2']}; animation-name: fade-in; animation-fill-mode: forwards; } @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } `; //# sourceMappingURL=styles.js.map