UNPKG

@cerberus-design/react

Version:

The Cerberus Design React component library.

13 lines (12 loc) 558 B
import { NotificationVariantProps } from 'styled-system/recipes'; import { HTMLAttributes } from 'react'; /** * This module exports the NotificationDescription component. * @module */ export type BaseNotificationDescriptionProps = HTMLAttributes<HTMLParagraphElement>; export type NotificationDescriptionProps = BaseNotificationDescriptionProps & NotificationVariantProps; /** * @deprecated use `NotificationParts` instead */ export declare function NotificationDescription(props: NotificationDescriptionProps): import("react/jsx-runtime").JSX.Element;