@crossed/ui
Version:
A universal & performant styling library for React Native, Next.js & React
15 lines (14 loc) • 405 B
JavaScript
import { createStyles } from "@crossed/styled";
const gapStyles = createStyles(({ space }) => ({
xxs: { base: { gap: space.xs } },
xs: { base: { gap: space.md } },
sm: { base: { gap: space.lg } },
md: { base: { gap: space.xl } },
lg: { base: { gap: space.lg } },
xl: { base: { gap: space.xl } },
xxl: { base: { gap: space.xxl } }
}));
export {
gapStyles
};
//# sourceMappingURL=gap.js.map