UNPKG

@daimo/pay

Version:

Seamless crypto payments. Onboard users from any chain, any coin into your app with one click.

23 lines (20 loc) 564 B
import { motion } from 'framer-motion'; import { keyframes } from 'styled-components'; import styled from '../../../styles/styled/index.js'; const Spin = keyframes` 0%{ transform: rotate(0deg); } 100%{ transform: rotate(360deg); } `; const SpinnerContainer = styled(motion.div)` display: flex; align-items: center; justify-content: center; animation: ${Spin} 1s linear infinite; svg { display: block; position: relative; animation: ${Spin} 1s ease-in-out infinite; } `; export { SpinnerContainer }; //# sourceMappingURL=styles.js.map