{"version":3,"sources":["components/modal/modal-footer-button.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAIH,OAAO,QAAQ,MAAM,kBAAkB,CAAC;AAMxC;;;GAGG;AACH,cACM,mBAAoB,SAAQ,QAAQ;IACxC,MAAM,CAAC,MAAM,QAA0B;CACxC;AAED,eAAe,mBAAmB,CAAC","file":"modal-footer-button.d.ts","sourcesContent":["/**\n * @license\n *\n * Copyright IBM Corp. 2021\n *\n * This source code is licensed under the Apache-2.0 license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\nimport { customElement } from 'lit-element';\nimport settings from 'carbon-components/es/globals/js/settings';\nimport BXButton from '../button/button';\nimport buttonStyles from '../button/button.scss';\nimport styles from './modal.scss';\n\nconst { prefix } = settings;\n\n/**\n * Modal footer button.\n * @element bx-modal-footer-button\n */\n@customElement(`${prefix}-modal-footer-button`)\nclass BXModalFooterButton extends BXButton {\n  static styles = [buttonStyles, styles]; // `styles` here is a `CSSResult` generated by custom WebPack loader\n}\n\nexport default BXModalFooterButton;\n"]}