UNPKG

@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.

12 lines (11 loc) 277 B
import type { FC } from 'react'; type StateMessageProps = { hasMessage: boolean; state: any; message: string; theme: any; host: HTMLElement; }; export declare const messageId = "message"; export declare const StateMessage: FC<StateMessageProps>; export {};