@coin-voyage/paykit
Version:
Seamless crypto payments. Onboard users from any chain, any coin into your app with one click.
23 lines (21 loc) • 446 B
JavaScript
import { motion } from "framer-motion";
import styled from "../../../styles/styled";
export const TokenChainContainer = styled(motion.div) `
position: relative;
width: 100%;
height: 100%;
`;
export const ChainContainer = styled(motion.div) `
position: absolute;
width: 16px;
height: 16px;
border-radius: 9999px;
overflow: hidden;
bottom: 0px;
right: 0px;
svg {
display: block;
width: 100%;
height: 100%;
}
`;