UNPKG

@crossed/ui

Version:

A universal & performant styling library for React Native, Next.js & React

21 lines (20 loc) 745 B
import { createStyles } from "@crossed/styled"; const alignItemsStyle = createStyles(() => ({ "center": { base: { alignItems: "center" } }, "baseline": { base: { alignItems: "baseline" } }, "flex-end": { base: { alignItems: "flex-end" } }, "flex-start": { base: { alignItems: "flex-start" } }, "stretch": { base: { alignItems: "stretch" } } })); const alignSelfStyle = createStyles(() => ({ "center": { base: { alignSelf: "center" } }, "baseline": { base: { alignSelf: "baseline" } }, "flex-end": { base: { alignSelf: "flex-end" } }, "flex-start": { base: { alignSelf: "flex-start" } }, "stretch": { base: { alignSelf: "stretch" } } })); export { alignItemsStyle, alignSelfStyle }; //# sourceMappingURL=alignItems.js.map