UNPKG

@crossed/ui

Version:

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

18 lines (17 loc) 385 B
import { jsx } from "react/jsx-runtime"; import { Text } from "./Text"; import { createStyles } from "@crossed/styled"; const useP = createStyles(() => ({ root: { base: { alignSelf: "stretch" } } })); const P = (props) => { return /* @__PURE__ */ jsx(Text, { role: "paragraph", ...props, ...useP.root.rnw(props) }); }; export { P }; //# sourceMappingURL=P.js.map