@crossed/ui
Version:
A universal & performant styling library for React Native, Next.js & React
14 lines (13 loc) • 427 B
JavaScript
import { createStyles } from "@crossed/styled";
const textAlignStyles = createStyles(() => ({
auto: { base: { textAlign: "auto" } },
justify: { base: { textAlign: "justify" } },
default: { base: { textAlign: "left" } },
center: { base: { textAlign: "center" } },
left: { base: { textAlign: "left" } },
right: { base: { textAlign: "right" } }
}));
export {
textAlignStyles
};
//# sourceMappingURL=textAlign.js.map