fui-fancyui
Version:
FancyUI Libary
16 lines (15 loc) • 383 B
JavaScript
import { styled as d } from "styled-components";
const t = d.div`
position: fixed;
z-index: 1000;
top: ${({ theme: i }) => i.spacing.md};
right: ${({ theme: i }) => i.spacing.md};
width: calc(100% - ${({ theme: i }) => i.spacing.md} * 2);
max-width: 350px;
display: flex;
flex-direction: column;
${({ $externalStyle: i }) => i};
`;
export {
t as ToastsWrapper
};