@patternfly/react-core
Version:
This library provides a set of common React components for use with the PatternFly reference implementation.
11 lines • 521 B
TypeScript
import * as React from 'react';
export interface DrawerCloseButtonProps extends React.HTMLProps<HTMLDivElement> {
/** Additional classes added to the drawer close button outer <div>. */
className?: string;
/** A callback for when the close button is clicked */
onClose?: () => void;
/** Accessible label for the drawer close button */
'aria-label'?: string;
}
export declare const DrawerCloseButton: React.FunctionComponent<DrawerCloseButtonProps>;
//# sourceMappingURL=DrawerCloseButton.d.ts.map