@cerberus-design/react
Version:
The Cerberus Design React component library.
21 lines • 557 B
JavaScript
// src/components/deprecated/NotificationDescription.tsx
import { cx } from "styled-system/css";
import {
notification
} from "styled-system/recipes";
import { jsx } from "react/jsx-runtime";
function NotificationDescription(props) {
const { palette, ...nativeProps } = props;
const styles = notification({ palette });
return /* @__PURE__ */ jsx(
"p",
{
className: cx(nativeProps.className, styles.description),
...nativeProps
}
);
}
export {
NotificationDescription
};
//# sourceMappingURL=NotificationDescription.js.map