@coin-voyage/paykit
Version:
Seamless crypto payments. Onboard users from any chain, any coin into your app with one click.
26 lines (25 loc) • 557 B
JavaScript
import styled from "../../../styles/styled";
export const LogoContainer = styled.div `
position: relative;
width: ${({ $width }) => ($width ? `${$width}px` : "100%")};
height: ${({ $height }) => ($height ? `${$height}px` : "100%")};
`;
export const Squircle = styled.svg `
z-index: 1;
position: relative;
display: block;
`;
export const Image = styled.div `
z-index: 2;
position: absolute;
inset: 0;
display: block;
overflow: hidden;
svg,
img {
display: block;
position: relative;
width: 100%;
height: 100%;
}
`;