UNPKG

@cerberus-design/react

Version:

The Cerberus Design React component library.

15 lines 509 B
// src/components/deprecated/NotificationHeading.tsx import { cx } from "styled-system/css"; import { notification } from "styled-system/recipes"; import { jsx } from "react/jsx-runtime"; function NotificationHeading(props) { const { palette, ...nativeProps } = props; const styles = notification({ palette }); return /* @__PURE__ */ jsx("p", { className: cx(nativeProps.className, styles.heading), ...nativeProps }); } export { NotificationHeading }; //# sourceMappingURL=NotificationHeading.js.map