@visa/nova-react
Version:
Visa Product Design System Nova React library. Compatible with React ^19.
15 lines (14 loc) • 588 B
TypeScript
import { type MessageProperties } from '../message';
export type SectionMessageProperties = MessageProperties;
/**
* Section-level messages providing information about the status of a page or action.
* @docs {@link https://design.visa.com/components/section-message/?code_library=react | See Docs}
* @related section-message-close-button, message-content
* @vgar TODO
* @wcag TODO
*/
declare const SectionMessage: {
({ className, ...remainingProps }: SectionMessageProperties): import("react/jsx-runtime").JSX.Element;
displayName: string;
};
export default SectionMessage;