UNPKG

@crossed/ui

Version:

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

20 lines (19 loc) 445 B
import { jsx } from "react/jsx-runtime"; import { Headline } from "../../typography"; import { composeStyles } from "@crossed/styled"; import { cardStyles } from "./styles"; const Title = (props) => { return /* @__PURE__ */ jsx( Headline, { size: "lg", ...props, style: composeStyles(cardStyles.title, props.style) } ); }; Title.displayName = "Card.Title"; export { Title }; //# sourceMappingURL=Title.js.map