gestalt
Version:
A set of React UI components which enforce Pinterest's design language
9 lines (8 loc) • 319 B
TypeScript
type Props = {
accessibilityDismissButtonLabel: string;
type: 'default' | 'warning' | 'error';
heading: string;
onDismiss: () => void;
};
export default function ModalAlertHeader({ accessibilityDismissButtonLabel, type, heading, onDismiss, }: Props): import("react/jsx-runtime").JSX.Element;
export {};