UNPKG

@cerberus-design/react

Version:

The Cerberus Design React component library.

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