UNPKG

@patternfly/react-core

Version:

This library provides a set of common React components for use with the PatternFly reference implementation.

16 lines 1.2 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.DrawerCloseButton = void 0; const tslib_1 = require("tslib"); const jsx_runtime_1 = require("react/jsx-runtime"); const drawer_1 = tslib_1.__importDefault(require("@patternfly/react-styles/css/components/Drawer/drawer")); const react_styles_1 = require("@patternfly/react-styles"); const Button_1 = require("../Button"); const times_icon_1 = tslib_1.__importDefault(require('@patternfly/react-icons/dist/js/icons/times-icon')); const DrawerCloseButton = (_a) => { var { className = '', onClose = () => undefined, 'aria-label': ariaLabel = 'Close drawer panel' } = _a, props = tslib_1.__rest(_a, ["className", "onClose", 'aria-label']); return ((0, jsx_runtime_1.jsx)("div", Object.assign({ className: (0, react_styles_1.css)(drawer_1.default.drawerClose, className) }, props, { children: (0, jsx_runtime_1.jsx)(Button_1.Button, { variant: "plain", onClick: onClose, "aria-label": ariaLabel, icon: (0, jsx_runtime_1.jsx)(times_icon_1.default, {}) }) }))); }; exports.DrawerCloseButton = DrawerCloseButton; exports.DrawerCloseButton.displayName = 'DrawerCloseButton'; //# sourceMappingURL=DrawerCloseButton.js.map