fui-fancyui
Version:
FancyUI Libary
36 lines (35 loc) • 592 B
JavaScript
const s = {
xs: {
width: "sm",
borderRadius: "xxs",
gapBetweenItems: "xxs",
paddingBottomTop: "xxs"
},
sm: {
width: "md",
borderRadius: "xs",
gapBetweenItems: "xxs",
paddingBottomTop: "xxs"
},
md: {
width: "lg",
borderRadius: "sm",
gapBetweenItems: "xs",
paddingBottomTop: "xs"
},
lg: {
width: "xl",
borderRadius: "md",
gapBetweenItems: "xs",
paddingBottomTop: "xs"
},
xl: {
width: "xxl",
borderRadius: "lg",
gapBetweenItems: "sm",
paddingBottomTop: "sm"
}
};
export {
s as sizeSettings
};