@visa/nova-react
Version:
Visa Product Design System Nova React library. Compatible with React ^19.
12 lines (11 loc) • 474 B
TypeScript
import { type TypographyProperties } from '../typography';
export type DialogHeaderProperties = TypographyProperties;
/**
* Container for the heading area of a dialog pop-up window.
* @docs {@link https://design.visa.com/components/dialog/?code_library=react | See Docs}
*/
declare const DialogHeader: {
({ className, tag, ...remainingProps }: DialogHeaderProperties): import("react/jsx-runtime").JSX.Element;
displayName: string;
};
export default DialogHeader;