@porsche-design-system/components-react
Version:
Porsche Design System is a component library designed to help developers create the best experience for software or services distributed by Dr. Ing. h.c. F. Porsche AG.
15 lines (14 loc) • 437 B
TypeScript
import type { FC } from 'react';
import type { JSX } from 'react';
type NotificationBaseProps = {
heading?: string;
headingTag?: 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6';
hasHeadingSlot?: boolean;
description?: string;
hasDescriptionSlot?: boolean;
innerHTML?: boolean;
actionLabel?: JSX.Element;
dismissButton?: JSX.Element;
};
export declare const NotificationBase: FC<NotificationBaseProps>;
export {};