@crossed/ui
Version:
A universal & performant styling library for React Native, Next.js & React
14 lines (13 loc) • 501 B
JavaScript
import { createStyles } from "@crossed/styled";
const justifyContentStyle = createStyles(() => ({
start: { base: { justifyContent: "flex-start" } },
end: { base: { justifyContent: "flex-end" } },
between: { base: { justifyContent: "space-between" } },
around: { base: { justifyContent: "space-around" } },
evenly: { base: { justifyContent: "space-evenly" } },
center: { base: { justifyContent: "center" } }
}));
export {
justifyContentStyle
};
//# sourceMappingURL=justifyContent.js.map