UNPKG

@coin-voyage/paykit

Version:

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

12 lines (11 loc) 328 B
import styled, { keyframes } from "styled-components"; const PulseKeyframes = keyframes ` 0%,100% { opacity:1; } 50% { opacity:0.5; } `; export const SkeletonWrapper = styled.div ` animation: ${PulseKeyframes} 1.5s ease-in-out infinite; border-radius: 0.375rem; border: 0; background-color: rgba(0, 0, 255, 0.1); `;