fui-fancyui
Version:
FancyUI Libary
21 lines (19 loc) • 442 B
JavaScript
import { css as n } from "styled-components";
import { boxShadow as r } from "../../../design/designFunctions/shadows/shadows.js";
const a = (e) => {
const { $externalStyle: o, $boxShadow: t } = e;
return n`
padding: 0;
margin: 0;
display: flex;
flex-direction: column;
justify-content: space-between;
width: 100%;
overflow: hidden;
${t && r.md};
${o}
`;
};
export {
a as generateFancyBoxStyle
};