├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── pull_request_template.md ├── .gitignore ├── CONTRIBUTING.md ├── Examples ├── Layouts │ ├── Demo_Widgets_Added_Desktop Layout.json │ ├── Header_Added_Desktop Layout.json │ ├── Logo_Added_ Desktop Layout .json │ ├── MS Dynamics │ │ └── README.md │ ├── Nav_Added_ Desktop Layout .json │ ├── README.md │ ├── Salesforce │ │ └── README.md │ ├── ServiceNow │ │ └── README.md │ └── Zendesk │ │ └── README.md ├── README.md ├── Widgets │ ├── CRM │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── .gitignore │ │ ├── README.md │ │ ├── babel.config.js │ │ ├── jest.config.js │ │ ├── jest │ │ │ ├── cssTransform.js │ │ │ └── imgTransform.js │ │ ├── package.json │ │ ├── src │ │ │ ├── [sandbox] │ │ │ │ ├── favicon.ico │ │ │ │ ├── index.html │ │ │ │ ├── index.ts │ │ │ │ ├── sandbox.mock.ts │ │ │ │ ├── sandbox.scss │ │ │ │ └── sandbox.ts │ │ │ ├── assets │ │ │ │ └── styles │ │ │ │ │ ├── mixins.scss │ │ │ │ │ └── variables.scss │ │ │ ├── components │ │ │ │ ├── App.scss │ │ │ │ ├── Summary.scss │ │ │ │ ├── Summary.ts │ │ │ │ ├── TableStyles.scss │ │ │ │ ├── VisitBadge.scss │ │ │ │ ├── VisitBadge.ts │ │ │ │ ├── Visits.scss │ │ │ │ └── Visits.ts │ │ │ ├── customer-data │ │ │ │ ├── mock-customer-blob.ts │ │ │ │ └── mock-customer.ts │ │ │ ├── index.ts │ │ │ ├── tsconfig.json │ │ │ └── types │ │ │ │ ├── declare.d.ts │ │ │ │ └── globals.d.ts │ │ ├── static │ │ │ └── crm.png │ │ ├── tsconfig.json │ │ ├── webpack.config.d.ts │ │ ├── webpack.config.dev.server.ts │ │ └── webpack.config.ts │ ├── CovidByLocation │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── .gitignore │ │ ├── README.md │ │ ├── babel.config.js │ │ ├── jest.config.js │ │ ├── jest │ │ │ ├── cssTransform.js │ │ │ └── imgTransform.js │ │ ├── package.json │ │ ├── src │ │ │ ├── [sandbox] │ │ │ │ ├── favicon.ico │ │ │ │ ├── index.html │ │ │ │ ├── index.ts │ │ │ │ ├── sandbox.scss │ │ │ │ └── sandbox.ts │ │ │ ├── assets │ │ │ │ └── styles │ │ │ │ │ ├── mixins.scss │ │ │ │ │ └── variables.scss │ │ │ ├── components │ │ │ │ ├── App.scss │ │ │ │ ├── App.ts │ │ │ │ ├── Constants.ts │ │ │ │ ├── Graph.scss │ │ │ │ ├── Graph.ts │ │ │ │ ├── Table.scss │ │ │ │ └── Table.ts │ │ │ ├── index.ts │ │ │ ├── tsconfig.json │ │ │ └── types │ │ │ │ ├── declare.d.ts │ │ │ │ └── globals.d.ts │ │ ├── tsconfig.json │ │ ├── webpack.config.d.ts │ │ ├── webpack.config.dev.server.ts │ │ └── webpack.config.ts │ ├── HospitalBedCapacity │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── .gitignore │ │ ├── README.md │ │ ├── babel.config.js │ │ ├── jest.config.js │ │ ├── jest │ │ │ ├── cssTransform.js │ │ │ └── imgTransform.js │ │ ├── package.json │ │ ├── src │ │ │ ├── [sandbox] │ │ │ │ ├── favicon.ico │ │ │ │ ├── index.html │ │ │ │ ├── index.ts │ │ │ │ ├── sandbox.scss │ │ │ │ └── sandbox.ts │ │ │ ├── assets │ │ │ │ └── styles │ │ │ │ │ ├── mixins.scss │ │ │ │ │ └── variables.scss │ │ │ ├── components │ │ │ │ ├── HospitalDetails.ts │ │ │ │ ├── HospitalItem.scss │ │ │ │ ├── HospitalItem.ts │ │ │ │ ├── HospitalWidget.scss │ │ │ │ ├── HospitalWidget.ts │ │ │ │ ├── Hospitals.scss │ │ │ │ └── mixins.scss │ │ │ ├── index.ts │ │ │ ├── tsconfig.json │ │ │ └── types │ │ │ │ ├── declare.d.ts │ │ │ │ └── globals.d.ts │ │ ├── tsconfig.json │ │ ├── webpack.config.d.ts │ │ ├── webpack.config.dev.server.ts │ │ └── webpack.config.ts │ ├── LearningWidgetSample │ │ ├── .gitignore │ │ ├── README.md │ │ ├── babel.config.js │ │ ├── jest.config.js │ │ ├── jest │ │ │ ├── cssTransform.js │ │ │ └── imgTransform.js │ │ ├── package.json │ │ ├── src │ │ │ ├── [sandbox] │ │ │ │ ├── favicon.ico │ │ │ │ ├── index.html │ │ │ │ ├── index.ts │ │ │ │ ├── sandbox.scss │ │ │ │ └── sandbox.ts │ │ │ ├── assets │ │ │ │ └── styles │ │ │ │ │ ├── mixins.scss │ │ │ │ │ └── variables.scss │ │ │ ├── components │ │ │ │ ├── App.scss │ │ │ │ └── App.ts │ │ │ ├── index.ts │ │ │ ├── tsconfig.json │ │ │ └── types │ │ │ │ ├── declare.d.ts │ │ │ │ └── globals.d.ts │ │ ├── tsconfig.json │ │ ├── webpack.config.d.ts │ │ ├── webpack.config.dev.server.ts │ │ └── webpack.config.ts │ ├── Map │ │ ├── README.md │ │ ├── babel.config.js │ │ ├── index.d.ts │ │ ├── jest.config.js │ │ ├── jest │ │ │ ├── cssTransform.js │ │ │ └── imgTransform.js │ │ ├── package.json │ │ ├── src │ │ │ ├── [sandbox] │ │ │ │ ├── favicon.ico │ │ │ │ ├── index.html │ │ │ │ ├── index.ts │ │ │ │ ├── sandbox.scss │ │ │ │ └── sandbox.ts │ │ │ ├── assets │ │ │ │ └── styles │ │ │ │ │ ├── mixins.scss │ │ │ │ │ └── variables.scss │ │ │ ├── components │ │ │ │ ├── App.scss │ │ │ │ ├── App.ts │ │ │ │ ├── darkMap.ts │ │ │ │ └── lightMap.ts │ │ │ ├── index.ts │ │ │ ├── tsconfig.json │ │ │ └── types │ │ │ │ ├── declare.d.ts │ │ │ │ └── globals.d.ts │ │ ├── static │ │ │ └── map-screenshot.png │ │ ├── tsconfig.json │ │ ├── webpack.config.d.ts │ │ ├── webpack.config.dev.server.ts │ │ └── webpack.config.ts │ ├── Notes │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── .gitignore │ │ ├── README.md │ │ ├── babel.config.js │ │ ├── jest.config.js │ │ ├── jest │ │ │ ├── cssTransform.js │ │ │ └── imgTransform.js │ │ ├── package.json │ │ ├── src │ │ │ ├── NotesWidget.ts │ │ │ ├── Utils.ts │ │ │ ├── [sandbox] │ │ │ │ ├── favicon.ico │ │ │ │ ├── index.html │ │ │ │ ├── index.ts │ │ │ │ ├── sandbox.mock.ts │ │ │ │ ├── sandbox.scss │ │ │ │ └── sandbox.ts │ │ │ ├── assets │ │ │ │ ├── images │ │ │ │ │ └── Lighthouse_anding.svg │ │ │ │ ├── localisation │ │ │ │ │ └── app.json │ │ │ │ └── styles │ │ │ │ │ ├── NotesHeaderWidget.scss │ │ │ │ │ ├── NotesWidget.scss │ │ │ │ │ ├── mixins.scss │ │ │ │ │ └── variables.scss │ │ │ ├── components │ │ │ │ ├── EmptyState │ │ │ │ │ ├── EmptyState.scss │ │ │ │ │ └── EmptyState.ts │ │ │ │ ├── NotesActionBar │ │ │ │ │ └── NotesActionBar.ts │ │ │ │ ├── NotesCard │ │ │ │ │ ├── NotesCard.scss │ │ │ │ │ └── NotesCard.ts │ │ │ │ ├── NotesColors │ │ │ │ │ └── NotesColors.ts │ │ │ │ ├── NotesEditor │ │ │ │ │ ├── NotesEditor.scss │ │ │ │ │ ├── NotesEditor.ts │ │ │ │ │ └── NotesEditorClose.ts │ │ │ │ ├── NotesErrorState │ │ │ │ │ ├── NotesErrorState.ts │ │ │ │ │ └── widgetError.scss │ │ │ │ ├── NotesFavoriteBtn │ │ │ │ │ └── NotesFavoriteBtn.ts │ │ │ │ ├── NotesSelectAll.ts │ │ │ │ ├── NotesWidgetHeader │ │ │ │ │ ├── NotesWidgetHeader.scss │ │ │ │ │ └── NotesWidgetHeader.ts │ │ │ │ └── index.ts │ │ │ ├── constants.ts │ │ │ ├── index.ts │ │ │ ├── tsconfig.json │ │ │ ├── types │ │ │ │ ├── declare.d.ts │ │ │ │ └── globals.d.ts │ │ │ └── utils │ │ │ │ └── helpers.ts │ │ ├── static │ │ │ └── notes.png │ │ ├── tsconfig.json │ │ ├── webpack.config.d.ts │ │ ├── webpack.config.dev.server.ts │ │ └── webpack.config.ts │ ├── README.md │ ├── RSS │ │ ├── README.md │ │ ├── babel.config.js │ │ ├── jest.config.js │ │ ├── jest │ │ │ ├── cssTransform.js │ │ │ └── imgTransform.js │ │ ├── package.json │ │ ├── src │ │ │ ├── [sandbox] │ │ │ │ ├── favicon.ico │ │ │ │ ├── index.html │ │ │ │ ├── index.ts │ │ │ │ ├── sandbox.scss │ │ │ │ └── sandbox.ts │ │ │ ├── assets │ │ │ │ └── styles │ │ │ │ │ ├── mixins.scss │ │ │ │ │ └── variables.scss │ │ │ ├── components │ │ │ │ ├── App.scss │ │ │ │ └── App.ts │ │ │ ├── index.ts │ │ │ ├── tsconfig.json │ │ │ └── types │ │ │ │ ├── declare.d.ts │ │ │ │ └── globals.d.ts │ │ ├── static │ │ │ └── rss-screenshot.png │ │ ├── tsconfig.json │ │ ├── webpack.config.d.ts │ │ ├── webpack.config.dev.server.ts │ │ ├── webpack.config.ts │ │ └── yarn-error.log │ ├── Timer │ │ ├── README.md │ │ ├── babel.config.js │ │ ├── jest.config.js │ │ ├── jest │ │ │ ├── cssTransform.js │ │ │ └── imgTransform.js │ │ ├── package.json │ │ ├── src │ │ │ ├── [sandbox] │ │ │ │ ├── favicon.ico │ │ │ │ ├── index.html │ │ │ │ ├── index.ts │ │ │ │ ├── sandbox.scss │ │ │ │ └── sandbox.ts │ │ │ ├── assets │ │ │ │ └── styles │ │ │ │ │ ├── mixins.scss │ │ │ │ │ └── variables.scss │ │ │ ├── components │ │ │ │ ├── App.scss │ │ │ │ ├── App.ts │ │ │ │ └── time-circle.ts │ │ │ ├── index.ts │ │ │ ├── tsconfig.json │ │ │ └── types │ │ │ │ ├── declare.d.ts │ │ │ │ └── globals.d.ts │ │ ├── static │ │ │ └── timer_screenshot.png │ │ ├── tsconfig.json │ │ ├── webpack.config.d.ts │ │ ├── webpack.config.dev.server.ts │ │ └── webpack.config.ts │ └── prebuild-app-widget │ │ ├── .babelrc │ │ ├── README.md │ │ ├── package.json │ │ ├── public │ │ ├── index.html │ │ ├── prebuild-app-widget-arc.png │ │ └── prebuild-app.html │ │ ├── src │ │ ├── PrebuildAppWrapper.js │ │ └── index.js │ │ └── webpack.config.js ├── lerna.json └── package.json ├── Iframe_Widget_Allowedparams.json ├── LICENSE ├── README.md ├── angular ├── .browserslistrc ├── .editorconfig ├── .gitignore ├── README.md ├── angular.json ├── index.js ├── karma.conf.js ├── package-lock.json ├── package.json ├── src │ ├── .browserslistrc │ ├── .editorconfig │ ├── .gitignore │ ├── angular.json │ ├── app │ │ ├── app-routing.module.ts │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ └── my-custom-component │ │ │ ├── my-custom-component.component.html │ │ │ ├── my-custom-component.component.ts │ │ │ ├── my-custom-component.spec.ts │ │ │ └── sdk.ts │ ├── assets │ │ └── .gitkeep │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── karma.conf.js │ ├── main.ts │ ├── polyfills.ts │ ├── styles.css │ ├── test.ts │ ├── tsconfig.app.json │ ├── tsconfig.json │ └── tsconfig.spec.json ├── tsconfig.app.json ├── tsconfig.json └── tsconfig.spec.json ├── config.json ├── css ├── momentum-ui-icons.min.css ├── momentum-ui.min.css └── momentum-ui.min.css.map ├── demo.js ├── docs ├── 0.5ad98560d4535953307c.manager.bundle.js ├── 0.5ad98560d4535953307c.manager.bundle.js.LICENSE.txt ├── 0.df390710.iframe.bundle.js ├── 0.df390710.iframe.bundle.js.LICENSE.txt ├── 0.df390710.iframe.bundle.js.map ├── 1.fd3b847c.iframe.bundle.js ├── 1.fd3b847c.iframe.bundle.js.LICENSE.txt ├── 1.fd3b847c.iframe.bundle.js.map ├── 1.fdd7cb27db995ce54d8c.manager.bundle.js ├── 10.becae9f7.iframe.bundle.js ├── 10.becae9f7.iframe.bundle.js.LICENSE.txt ├── 10.becae9f7.iframe.bundle.js.map ├── 2.cc66cb1a.iframe.bundle.js ├── 3.96b896bc.iframe.bundle.js ├── 5.6fb6d854d293b5c1f334.manager.bundle.js ├── 5.6fb6d854d293b5c1f334.manager.bundle.js.LICENSE.txt ├── 6.8057719e399ba51a6fbe.manager.bundle.js ├── 7.0fd1250dcaff22b08dab.manager.bundle.js ├── 7.807a5b9a.iframe.bundle.js ├── 7.807a5b9a.iframe.bundle.js.LICENSE.txt ├── 7.807a5b9a.iframe.bundle.js.map ├── 8.1f409ad74256394057ea.manager.bundle.js ├── 8.1f409ad74256394057ea.manager.bundle.js.LICENSE.txt ├── 8.3c2bbfb8.iframe.bundle.js ├── 9.287b999ce9a8630fc369.manager.bundle.js ├── 9.31ebdbe5.iframe.bundle.js ├── favicon.ico ├── iframe.html ├── index.html ├── main.7ec027ac5dd790616832.manager.bundle.js ├── main.aed3d75d.iframe.bundle.js ├── project.json ├── runtime~main.069416fe.iframe.bundle.js ├── runtime~main.fc7b967b21e6b3fc4085.manager.bundle.js ├── static │ └── media │ │ ├── CiscoSansTTBold.322189e6.woff │ │ ├── CiscoSansTTBold.ca633863.woff2 │ │ ├── CiscoSansTTBoldOblique.8ee9e096.woff │ │ ├── CiscoSansTTBoldOblique.eea41862.woff2 │ │ ├── CiscoSansTTExtraLight.282a631f.woff2 │ │ ├── CiscoSansTTExtraLight.b48c8958.woff │ │ ├── CiscoSansTTExtraLightOblique.26f2d9ab.woff │ │ ├── CiscoSansTTExtraLightOblique.c29a6783.woff2 │ │ ├── CiscoSansTTHeavy.25dcd0a0.woff2 │ │ ├── CiscoSansTTHeavy.45ac7d6f.woff │ │ ├── CiscoSansTTHeavyOblique.3ee4e037.woff2 │ │ ├── CiscoSansTTHeavyOblique.bf8479dc.woff │ │ ├── CiscoSansTTLight.5f95ef69.woff │ │ ├── CiscoSansTTLight.9a42f59d.woff2 │ │ ├── CiscoSansTTLightOblique.1f6a6769.woff │ │ ├── CiscoSansTTLightOblique.fe6cf58f.woff2 │ │ ├── CiscoSansTTRegular.58a0337b.woff │ │ ├── CiscoSansTTRegular.7cd4b91d.woff2 │ │ ├── CiscoSansTTRegularOblique.0cd6b90e.woff │ │ ├── CiscoSansTTRegularOblique.ac7bdb12.woff2 │ │ ├── CiscoSansTTThin.2153ecb1.woff2 │ │ ├── CiscoSansTTThin.2670dd1b.woff │ │ ├── CiscoSansTTThinOblique.78a7ee78.woff2 │ │ ├── CiscoSansTTThinOblique.dd8ec842.woff │ │ ├── bag.fc78469c.svg │ │ ├── code-brackets.2e1112d7.svg │ │ ├── colors.a4bd0486.svg │ │ ├── comments.a3859089.svg │ │ ├── direction.b770f9af.svg │ │ ├── flags.971279e5.png │ │ ├── flags@2x.bb911f6d.png │ │ ├── flow.edad2ac1.svg │ │ ├── guide.f3b1e168.svg │ │ ├── momentum-ui-icons.cfd5b32a.woff2 │ │ ├── momentum-ui-icons.e91da4b5.woff │ │ ├── momentum.c8a620f8.png │ │ ├── plugin.d494b228.svg │ │ ├── repo.6d496322.svg │ │ ├── stackalt.dba9fbb3.svg │ │ ├── wc2.b3380074.png │ │ └── wxcc_logo.53ea363f.svg ├── vendors~main.3be4a177.iframe.bundle.js ├── vendors~main.3be4a177.iframe.bundle.js.LICENSE.txt ├── vendors~main.3be4a177.iframe.bundle.js.map ├── vendors~main.b6e1b116aae2100d5b3e.manager.bundle.js ├── vendors~main.b6e1b116aae2100d5b3e.manager.bundle.js.LICENSE.txt └── widgets │ ├── covid-by-location.js │ ├── covid-by-location.js.map │ ├── crm.js │ ├── crm.js.map │ ├── custom-react-wc-widget-test.js │ ├── hospital-bed-capacity.js │ ├── hospital-bed-capacity.js.map │ ├── learning-widget-sample.js │ ├── learning-widget-sample.js.map │ ├── map-widget.js │ ├── map-widget.js.map │ ├── notes-widget.js │ ├── notes-widget.js.map │ ├── react-testing-gadget.js │ ├── rss-feed-widget.js │ ├── rss-feed-widget.js.map │ ├── timer.js │ ├── timer.js.map │ └── wc-testing-gadget.js ├── fonts ├── CiscoSansTT-Medium.woff ├── CiscoSansTT-Medium.woff2 ├── CiscoSansTTBold.woff ├── CiscoSansTTBold.woff2 ├── CiscoSansTTBoldOblique.woff ├── CiscoSansTTBoldOblique.woff2 ├── CiscoSansTTExtraLight.woff ├── CiscoSansTTExtraLight.woff2 ├── CiscoSansTTExtraLightOblique.woff ├── CiscoSansTTExtraLightOblique.woff2 ├── CiscoSansTTHeavy.woff ├── CiscoSansTTHeavy.woff2 ├── CiscoSansTTHeavyOblique.woff ├── CiscoSansTTHeavyOblique.woff2 ├── CiscoSansTTLight.woff ├── CiscoSansTTLight.woff2 ├── CiscoSansTTLightOblique.woff ├── CiscoSansTTLightOblique.woff2 ├── CiscoSansTTRegular.woff ├── CiscoSansTTRegular.woff2 ├── CiscoSansTTRegularOblique.woff ├── CiscoSansTTRegularOblique.woff2 ├── CiscoSansTTThin.woff ├── CiscoSansTTThin.woff2 ├── CiscoSansTTThinOblique.woff ├── CiscoSansTTThinOblique.woff2 ├── index.html ├── momentum-ui-icons.svg ├── momentum-ui-icons.ttf ├── momentum-ui-icons.woff └── momentum-ui-icons.woff2 ├── gridstack-h5.js ├── gridstack.min.css ├── index.html ├── lit-element ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── README.md ├── babel.config.js ├── jest.config.js ├── jest │ ├── cssTransform.js │ └── imgTransform.js ├── package.json ├── src │ ├── [sandbox] │ │ ├── DISCLAIMER.md │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── index.ts │ │ ├── sandbox.mock.ts │ │ ├── sandbox.scss │ │ └── sandbox.ts │ ├── assets │ │ └── styles │ │ │ ├── mixins.scss │ │ │ └── variables.scss │ ├── components │ │ ├── App.scss │ │ ├── App.ts │ │ └── sdk.ts │ ├── index.ts │ ├── tsconfig.json │ └── types │ │ ├── declare.d.ts │ │ └── globals.d.ts ├── tsconfig.json ├── webpack.config.d.ts ├── webpack.config.dev.server.ts └── webpack.config.ts ├── package.json ├── react ├── .eslintrc ├── .gitignore ├── README.md ├── direflow-config.json ├── direflow-webpack.js ├── package.json ├── public │ ├── favicon.ico │ └── index.html ├── src │ ├── [sandbox] │ │ ├── index.ts │ │ └── sandbox.ts │ ├── __mocks__ │ │ ├── globalMock.js │ │ └── styleMock.js │ ├── direflow-component │ │ ├── App.css │ │ ├── App.tsx │ │ ├── declared-web-components.d.ts │ │ ├── sdk.ts │ │ └── test │ │ │ └── App.test.tsx │ ├── index.tsx │ ├── react-app-env.d.ts │ └── types │ │ ├── declare.d.ts │ │ └── globals.d.ts └── tsconfig.json ├── story-book ├── .editorconfig ├── .gitignore ├── .storybook │ ├── main.js │ ├── manager.js │ ├── preview-body.html │ ├── preview-head.html │ ├── preview.js │ └── theme.js ├── LICENSE ├── README.md ├── assets │ ├── open-wc-logo.svg │ └── webex_cc_logo.png ├── docs │ ├── 0.5ad98560d4535953307c.manager.bundle.js │ ├── 0.5ad98560d4535953307c.manager.bundle.js.LICENSE.txt │ ├── 0.df390710.iframe.bundle.js │ ├── 0.df390710.iframe.bundle.js.LICENSE.txt │ ├── 0.df390710.iframe.bundle.js.map │ ├── 1.fd3b847c.iframe.bundle.js │ ├── 1.fd3b847c.iframe.bundle.js.LICENSE.txt │ ├── 1.fd3b847c.iframe.bundle.js.map │ ├── 1.fdd7cb27db995ce54d8c.manager.bundle.js │ ├── 10.becae9f7.iframe.bundle.js │ ├── 10.becae9f7.iframe.bundle.js.LICENSE.txt │ ├── 10.becae9f7.iframe.bundle.js.map │ ├── 2.cc66cb1a.iframe.bundle.js │ ├── 3.96b896bc.iframe.bundle.js │ ├── 5.6fb6d854d293b5c1f334.manager.bundle.js │ ├── 5.6fb6d854d293b5c1f334.manager.bundle.js.LICENSE.txt │ ├── 6.8057719e399ba51a6fbe.manager.bundle.js │ ├── 7.0fd1250dcaff22b08dab.manager.bundle.js │ ├── 7.807a5b9a.iframe.bundle.js │ ├── 7.807a5b9a.iframe.bundle.js.LICENSE.txt │ ├── 7.807a5b9a.iframe.bundle.js.map │ ├── 8.1f409ad74256394057ea.manager.bundle.js │ ├── 8.1f409ad74256394057ea.manager.bundle.js.LICENSE.txt │ ├── 8.3c2bbfb8.iframe.bundle.js │ ├── 9.287b999ce9a8630fc369.manager.bundle.js │ ├── 9.31ebdbe5.iframe.bundle.js │ ├── favicon.ico │ ├── iframe.html │ ├── index.html │ ├── main.7ec027ac5dd790616832.manager.bundle.js │ ├── main.aed3d75d.iframe.bundle.js │ ├── project.json │ ├── runtime~main.069416fe.iframe.bundle.js │ ├── runtime~main.fc7b967b21e6b3fc4085.manager.bundle.js │ ├── static │ │ └── media │ │ │ ├── CiscoSansTTBold.322189e6.woff │ │ │ ├── CiscoSansTTBold.ca633863.woff2 │ │ │ ├── CiscoSansTTBoldOblique.8ee9e096.woff │ │ │ ├── CiscoSansTTBoldOblique.eea41862.woff2 │ │ │ ├── CiscoSansTTExtraLight.282a631f.woff2 │ │ │ ├── CiscoSansTTExtraLight.b48c8958.woff │ │ │ ├── CiscoSansTTExtraLightOblique.26f2d9ab.woff │ │ │ ├── CiscoSansTTExtraLightOblique.c29a6783.woff2 │ │ │ ├── CiscoSansTTHeavy.25dcd0a0.woff2 │ │ │ ├── CiscoSansTTHeavy.45ac7d6f.woff │ │ │ ├── CiscoSansTTHeavyOblique.3ee4e037.woff2 │ │ │ ├── CiscoSansTTHeavyOblique.bf8479dc.woff │ │ │ ├── CiscoSansTTLight.5f95ef69.woff │ │ │ ├── CiscoSansTTLight.9a42f59d.woff2 │ │ │ ├── CiscoSansTTLightOblique.1f6a6769.woff │ │ │ ├── CiscoSansTTLightOblique.fe6cf58f.woff2 │ │ │ ├── CiscoSansTTRegular.58a0337b.woff │ │ │ ├── CiscoSansTTRegular.7cd4b91d.woff2 │ │ │ ├── CiscoSansTTRegularOblique.0cd6b90e.woff │ │ │ ├── CiscoSansTTRegularOblique.ac7bdb12.woff2 │ │ │ ├── CiscoSansTTThin.2153ecb1.woff2 │ │ │ ├── CiscoSansTTThin.2670dd1b.woff │ │ │ ├── CiscoSansTTThinOblique.78a7ee78.woff2 │ │ │ ├── CiscoSansTTThinOblique.dd8ec842.woff │ │ │ ├── bag.fc78469c.svg │ │ │ ├── code-brackets.2e1112d7.svg │ │ │ ├── colors.a4bd0486.svg │ │ │ ├── comments.a3859089.svg │ │ │ ├── direction.b770f9af.svg │ │ │ ├── flags.971279e5.png │ │ │ ├── flags@2x.bb911f6d.png │ │ │ ├── flow.edad2ac1.svg │ │ │ ├── guide.f3b1e168.svg │ │ │ ├── momentum-ui-icons.cfd5b32a.woff2 │ │ │ ├── momentum-ui-icons.e91da4b5.woff │ │ │ ├── momentum.c8a620f8.png │ │ │ ├── plugin.d494b228.svg │ │ │ ├── repo.6d496322.svg │ │ │ ├── stackalt.dba9fbb3.svg │ │ │ ├── wc2.b3380074.png │ │ │ └── wxcc_logo.53ea363f.svg │ ├── vendors~main.3be4a177.iframe.bundle.js │ ├── vendors~main.3be4a177.iframe.bundle.js.LICENSE.txt │ ├── vendors~main.3be4a177.iframe.bundle.js.map │ ├── vendors~main.b6e1b116aae2100d5b3e.manager.bundle.js │ └── vendors~main.b6e1b116aae2100d5b3e.manager.bundle.js.LICENSE.txt ├── index.html ├── log.log ├── package.json ├── src │ ├── StoryBook.js │ ├── ThemeChangeListener.js │ ├── stories │ │ ├── Crm.stories.js │ │ ├── GoogleMap.stories.js │ │ ├── Introduction.stories.mdx │ │ ├── LearningWidget.stories.js │ │ ├── News.stories.js │ │ ├── Notes.stories.js │ │ ├── RSS-Feed.stories.js │ │ ├── Timer.stories.js │ │ ├── assets │ │ │ ├── bag.svg │ │ │ ├── code-brackets.svg │ │ │ ├── colors.svg │ │ │ ├── comments.svg │ │ │ ├── css │ │ │ │ ├── momentum-ui-icons.min.css │ │ │ │ ├── momentum-ui.min.css │ │ │ │ └── momentum-ui.min.css.map │ │ │ ├── direction.svg │ │ │ ├── flow.svg │ │ │ ├── fonts │ │ │ │ ├── CiscoSansTT-Medium.woff │ │ │ │ ├── CiscoSansTT-Medium.woff2 │ │ │ │ ├── CiscoSansTTBold.woff │ │ │ │ ├── CiscoSansTTBold.woff2 │ │ │ │ ├── CiscoSansTTBoldOblique.woff │ │ │ │ ├── CiscoSansTTBoldOblique.woff2 │ │ │ │ ├── CiscoSansTTExtraLight.woff │ │ │ │ ├── CiscoSansTTExtraLight.woff2 │ │ │ │ ├── CiscoSansTTExtraLightOblique.woff │ │ │ │ ├── CiscoSansTTExtraLightOblique.woff2 │ │ │ │ ├── CiscoSansTTHeavy.woff │ │ │ │ ├── CiscoSansTTHeavy.woff2 │ │ │ │ ├── CiscoSansTTHeavyOblique.woff │ │ │ │ ├── CiscoSansTTHeavyOblique.woff2 │ │ │ │ ├── CiscoSansTTLight.woff │ │ │ │ ├── CiscoSansTTLight.woff2 │ │ │ │ ├── CiscoSansTTLightOblique.woff │ │ │ │ ├── CiscoSansTTLightOblique.woff2 │ │ │ │ ├── CiscoSansTTRegular.woff │ │ │ │ ├── CiscoSansTTRegular.woff2 │ │ │ │ ├── CiscoSansTTRegularOblique.woff │ │ │ │ ├── CiscoSansTTRegularOblique.woff2 │ │ │ │ ├── CiscoSansTTThin.woff │ │ │ │ ├── CiscoSansTTThin.woff2 │ │ │ │ ├── CiscoSansTTThinOblique.woff │ │ │ │ ├── CiscoSansTTThinOblique.woff2 │ │ │ │ ├── index.html │ │ │ │ ├── momentum-ui-icons.svg │ │ │ │ ├── momentum-ui-icons.ttf │ │ │ │ ├── momentum-ui-icons.woff │ │ │ │ └── momentum-ui-icons.woff2 │ │ │ ├── guide.svg │ │ │ ├── icons │ │ │ │ ├── .npmignore │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── css │ │ │ │ │ ├── momentum-ui-icons.css │ │ │ │ │ └── momentum-ui-icons.min.css │ │ │ │ ├── data │ │ │ │ │ ├── MomentumIconType.swift │ │ │ │ │ ├── iconNames.json │ │ │ │ │ └── iconsData.json │ │ │ │ ├── fonts │ │ │ │ │ ├── index.html │ │ │ │ │ ├── momentum-ui-icons.svg │ │ │ │ │ ├── momentum-ui-icons.ttf │ │ │ │ │ ├── momentum-ui-icons.woff │ │ │ │ │ └── momentum-ui-icons.woff2 │ │ │ │ ├── package.json │ │ │ │ ├── scss │ │ │ │ │ ├── animated.scss │ │ │ │ │ ├── bordered-pulled.scss │ │ │ │ │ ├── core.scss │ │ │ │ │ ├── fixed-width.scss │ │ │ │ │ ├── functions.scss │ │ │ │ │ ├── icons.scss │ │ │ │ │ ├── list.scss │ │ │ │ │ ├── mixins.scss │ │ │ │ │ ├── momentum-ui-icons.scss │ │ │ │ │ ├── path.scss │ │ │ │ │ ├── placeholders.scss │ │ │ │ │ ├── rotated-flipped.scss │ │ │ │ │ ├── sizes.scss │ │ │ │ │ ├── stacked.scss │ │ │ │ │ ├── symphony │ │ │ │ │ │ ├── icon-mapping.scss │ │ │ │ │ │ ├── icons.scss │ │ │ │ │ │ ├── placeholder-mapping.scss │ │ │ │ │ │ └── variable-mapping.scss │ │ │ │ │ └── variables.scss │ │ │ │ └── svg │ │ │ │ │ ├── 3d-object_16.svg │ │ │ │ │ ├── 3d-object_20.svg │ │ │ │ │ ├── 3d-object_24.svg │ │ │ │ │ ├── accessibility_16.svg │ │ │ │ │ ├── accessories-active_12.svg │ │ │ │ │ ├── accessories-active_16.svg │ │ │ │ │ ├── accessories-active_18.svg │ │ │ │ │ ├── accessories-active_20.svg │ │ │ │ │ ├── accessories_16.svg │ │ │ │ │ ├── accessories_18.svg │ │ │ │ │ ├── accessories_20.svg │ │ │ │ │ ├── accessories_24.svg │ │ │ │ │ ├── accessories_36.svg │ │ │ │ │ ├── accessories_56.svg │ │ │ │ │ ├── active-speaker-alert_12.svg │ │ │ │ │ ├── active-speaker-locked_24.svg │ │ │ │ │ ├── active-speaker-muted_12.svg │ │ │ │ │ ├── active-speaker-muted_16.svg │ │ │ │ │ ├── active-speaker-muted_24.svg │ │ │ │ │ ├── active-speaker_12.svg │ │ │ │ │ ├── active-speaker_16.svg │ │ │ │ │ ├── active-speaker_24.svg │ │ │ │ │ ├── active-speaker_32.svg │ │ │ │ │ ├── active-speaker_48.svg │ │ │ │ │ ├── activities_12.svg │ │ │ │ │ ├── activities_16.svg │ │ │ │ │ ├── add-option_12.svg │ │ │ │ │ ├── add-option_14.svg │ │ │ │ │ ├── add-option_16.svg │ │ │ │ │ ├── add-poll_12.svg │ │ │ │ │ ├── add-poll_14.svg │ │ │ │ │ ├── add-question_12.svg │ │ │ │ │ ├── add-question_14.svg │ │ │ │ │ ├── add-question_16.svg │ │ │ │ │ ├── add-video-marker_12.svg │ │ │ │ │ ├── add_10.svg │ │ │ │ │ ├── add_12.svg │ │ │ │ │ ├── add_14.svg │ │ │ │ │ ├── add_16.svg │ │ │ │ │ ├── add_20.svg │ │ │ │ │ ├── add_24.svg │ │ │ │ │ ├── added-to-space_10.svg │ │ │ │ │ ├── added-to-space_12.svg │ │ │ │ │ ├── adjust-audio_12.svg │ │ │ │ │ ├── adjust-audio_14.svg │ │ │ │ │ ├── adjust-audio_16.svg │ │ │ │ │ ├── adjust-audio_18.svg │ │ │ │ │ ├── adjust-audio_20.svg │ │ │ │ │ ├── adjust-audio_24.svg │ │ │ │ │ ├── adjust-audio_28.svg │ │ │ │ │ ├── adjust-microphone_12.svg │ │ │ │ │ ├── adjust-video_14.svg │ │ │ │ │ ├── adjust-video_16.svg │ │ │ │ │ ├── adjust-video_24.svg │ │ │ │ │ ├── adjust_12.svg │ │ │ │ │ ├── adjust_14.svg │ │ │ │ │ ├── adjust_16.svg │ │ │ │ │ ├── adjust_20.svg │ │ │ │ │ ├── adjust_24.svg │ │ │ │ │ ├── admin_12.svg │ │ │ │ │ ├── admin_14.svg │ │ │ │ │ ├── admin_16.svg │ │ │ │ │ ├── admin_24.svg │ │ │ │ │ ├── admin_32.svg │ │ │ │ │ ├── alarm_16.svg │ │ │ │ │ ├── alarm_20.svg │ │ │ │ │ ├── alarm_24.svg │ │ │ │ │ ├── alert-active_10.svg │ │ │ │ │ ├── alert-active_12.svg │ │ │ │ │ ├── alert-active_16.svg │ │ │ │ │ ├── alert-active_18.svg │ │ │ │ │ ├── alert-active_20.svg │ │ │ │ │ ├── alert-active_24.svg │ │ │ │ │ ├── alert-active_36.svg │ │ │ │ │ ├── alert-muted-active_10.svg │ │ │ │ │ ├── alert-muted-active_12.svg │ │ │ │ │ ├── alert-muted-active_16.svg │ │ │ │ │ ├── alert-muted-active_18.svg │ │ │ │ │ ├── alert-muted-active_20.svg │ │ │ │ │ ├── alert-muted-active_24.svg │ │ │ │ │ ├── alert-muted-active_36.svg │ │ │ │ │ ├── alert-muted-active_8.svg │ │ │ │ │ ├── alert-muted_10.svg │ │ │ │ │ ├── alert-muted_12.svg │ │ │ │ │ ├── alert-muted_14.svg │ │ │ │ │ ├── alert-muted_16.svg │ │ │ │ │ ├── alert-muted_18.svg │ │ │ │ │ ├── alert-muted_20.svg │ │ │ │ │ ├── alert-muted_24.svg │ │ │ │ │ ├── alert-muted_28.svg │ │ │ │ │ ├── alert-muted_36.svg │ │ │ │ │ ├── alert-muted_8.svg │ │ │ │ │ ├── alert_10.svg │ │ │ │ │ ├── alert_12.svg │ │ │ │ │ ├── alert_14.svg │ │ │ │ │ ├── alert_16.svg │ │ │ │ │ ├── alert_18.svg │ │ │ │ │ ├── alert_20.svg │ │ │ │ │ ├── alert_24.svg │ │ │ │ │ ├── alert_28.svg │ │ │ │ │ ├── alert_36.svg │ │ │ │ │ ├── allow-to-annotate_16.svg │ │ │ │ │ ├── allow-to-annotate_24.svg │ │ │ │ │ ├── analysis-active_16.svg │ │ │ │ │ ├── analysis-active_20.svg │ │ │ │ │ ├── analysis-active_24.svg │ │ │ │ │ ├── analysis-active_32.svg │ │ │ │ │ ├── analysis-active_36.svg │ │ │ │ │ ├── analysis-active_48.svg │ │ │ │ │ ├── analysis_12.svg │ │ │ │ │ ├── analysis_16.svg │ │ │ │ │ ├── analysis_20.svg │ │ │ │ │ ├── analysis_24.svg │ │ │ │ │ ├── analysis_32.svg │ │ │ │ │ ├── analysis_36.svg │ │ │ │ │ ├── analysis_48.svg │ │ │ │ │ ├── angellist_16.svg │ │ │ │ │ ├── annotation-legacy_16.svg │ │ │ │ │ ├── annotation_10.svg │ │ │ │ │ ├── annotation_12.svg │ │ │ │ │ ├── annotation_14.svg │ │ │ │ │ ├── annotation_16.svg │ │ │ │ │ ├── annotation_18.svg │ │ │ │ │ ├── annotation_20.svg │ │ │ │ │ ├── annotation_24.svg │ │ │ │ │ ├── announcement-active_12.svg │ │ │ │ │ ├── announcement-active_14.svg │ │ │ │ │ ├── announcement-active_16.svg │ │ │ │ │ ├── announcement-active_20.svg │ │ │ │ │ ├── announcement-active_8.svg │ │ │ │ │ ├── announcement-muted_14.svg │ │ │ │ │ ├── announcement_12.svg │ │ │ │ │ ├── announcement_14.svg │ │ │ │ │ ├── announcement_16.svg │ │ │ │ │ ├── announcement_20.svg │ │ │ │ │ ├── announcement_72.svg │ │ │ │ │ ├── announcement_8.svg │ │ │ │ │ ├── appearance_16.svg │ │ │ │ │ ├── appearance_20.svg │ │ │ │ │ ├── applause_12.svg │ │ │ │ │ ├── applause_16.svg │ │ │ │ │ ├── application-panel_16.svg │ │ │ │ │ ├── application-panel_20.svg │ │ │ │ │ ├── application_12.svg │ │ │ │ │ ├── application_16.svg │ │ │ │ │ ├── application_20.svg │ │ │ │ │ ├── application_24.svg │ │ │ │ │ ├── application_36.svg │ │ │ │ │ ├── application_48.svg │ │ │ │ │ ├── applications_16.svg │ │ │ │ │ ├── applications_24.svg │ │ │ │ │ ├── approvals_16.svg │ │ │ │ │ ├── approvals_32.svg │ │ │ │ │ ├── apps-active_16.svg │ │ │ │ │ ├── apps-active_20.svg │ │ │ │ │ ├── apps-active_24.svg │ │ │ │ │ ├── apps-active_28.svg │ │ │ │ │ ├── apps_16.svg │ │ │ │ │ ├── apps_20.svg │ │ │ │ │ ├── apps_24.svg │ │ │ │ │ ├── apps_28.svg │ │ │ │ │ ├── archive_10.svg │ │ │ │ │ ├── archive_12.svg │ │ │ │ │ ├── archive_14.svg │ │ │ │ │ ├── archive_16.svg │ │ │ │ │ ├── archive_20.svg │ │ │ │ │ ├── archive_8.svg │ │ │ │ │ ├── area-chart_16.svg │ │ │ │ │ ├── area-selector_16.svg │ │ │ │ │ ├── area-selector_20.svg │ │ │ │ │ ├── arrow-circle-down_16.svg │ │ │ │ │ ├── arrow-circle-down_20.svg │ │ │ │ │ ├── arrow-circle-down_24.svg │ │ │ │ │ ├── arrow-circle-left_16.svg │ │ │ │ │ ├── arrow-circle-left_20.svg │ │ │ │ │ ├── arrow-circle-left_24.svg │ │ │ │ │ ├── arrow-circle-right_16.svg │ │ │ │ │ ├── arrow-circle-right_20.svg │ │ │ │ │ ├── arrow-circle-right_24.svg │ │ │ │ │ ├── arrow-circle-up_16.svg │ │ │ │ │ ├── arrow-circle-up_20.svg │ │ │ │ │ ├── arrow-circle-up_24.svg │ │ │ │ │ ├── arrow-down-optical_10.svg │ │ │ │ │ ├── arrow-down-optical_12.svg │ │ │ │ │ ├── arrow-down-optical_14.svg │ │ │ │ │ ├── arrow-down-optical_16.svg │ │ │ │ │ ├── arrow-down-optical_18.svg │ │ │ │ │ ├── arrow-down-optical_20.svg │ │ │ │ │ ├── arrow-down-optical_24.svg │ │ │ │ │ ├── arrow-down-optical_28.svg │ │ │ │ │ ├── arrow-down-optical_32.svg │ │ │ │ │ ├── arrow-down-optical_8.svg │ │ │ │ │ ├── arrow-down_12.svg │ │ │ │ │ ├── arrow-down_16.svg │ │ │ │ │ ├── arrow-down_18.svg │ │ │ │ │ ├── arrow-down_20.svg │ │ │ │ │ ├── arrow-down_24.svg │ │ │ │ │ ├── arrow-down_28.svg │ │ │ │ │ ├── arrow-down_32.svg │ │ │ │ │ ├── arrow-down_6.svg │ │ │ │ │ ├── arrow-down_8.svg │ │ │ │ │ ├── arrow-filled-down_10.svg │ │ │ │ │ ├── arrow-filled-down_12.svg │ │ │ │ │ ├── arrow-filled-down_8.svg │ │ │ │ │ ├── arrow-filled-up_10.svg │ │ │ │ │ ├── arrow-filled-up_12.svg │ │ │ │ │ ├── arrow-filled-up_8.svg │ │ │ │ │ ├── arrow-left-optical_10.svg │ │ │ │ │ ├── arrow-left-optical_12.svg │ │ │ │ │ ├── arrow-left-optical_14.svg │ │ │ │ │ ├── arrow-left-optical_16.svg │ │ │ │ │ ├── arrow-left-optical_18.svg │ │ │ │ │ ├── arrow-left-optical_20.svg │ │ │ │ │ ├── arrow-left-optical_24.svg │ │ │ │ │ ├── arrow-left-optical_28.svg │ │ │ │ │ ├── arrow-left-optical_32.svg │ │ │ │ │ ├── arrow-left-optical_8.svg │ │ │ │ │ ├── arrow-left_12.svg │ │ │ │ │ ├── arrow-left_16.svg │ │ │ │ │ ├── arrow-left_18.svg │ │ │ │ │ ├── arrow-left_20.svg │ │ │ │ │ ├── arrow-left_24.svg │ │ │ │ │ ├── arrow-left_28.svg │ │ │ │ │ ├── arrow-left_32.svg │ │ │ │ │ ├── arrow-left_6.svg │ │ │ │ │ ├── arrow-left_8.svg │ │ │ │ │ ├── arrow-right-optical_10.svg │ │ │ │ │ ├── arrow-right-optical_12.svg │ │ │ │ │ ├── arrow-right-optical_14.svg │ │ │ │ │ ├── arrow-right-optical_16.svg │ │ │ │ │ ├── arrow-right-optical_18.svg │ │ │ │ │ ├── arrow-right-optical_20.svg │ │ │ │ │ ├── arrow-right-optical_24.svg │ │ │ │ │ ├── arrow-right-optical_28.svg │ │ │ │ │ ├── arrow-right-optical_32.svg │ │ │ │ │ ├── arrow-right-optical_8.svg │ │ │ │ │ ├── arrow-right_12.svg │ │ │ │ │ ├── arrow-right_16.svg │ │ │ │ │ ├── arrow-right_18.svg │ │ │ │ │ ├── arrow-right_20.svg │ │ │ │ │ ├── arrow-right_24.svg │ │ │ │ │ ├── arrow-right_28.svg │ │ │ │ │ ├── arrow-right_32.svg │ │ │ │ │ ├── arrow-right_6.svg │ │ │ │ │ ├── arrow-right_8.svg │ │ │ │ │ ├── arrow-tail-down_10.svg │ │ │ │ │ ├── arrow-tail-down_12.svg │ │ │ │ │ ├── arrow-tail-down_14.svg │ │ │ │ │ ├── arrow-tail-down_16.svg │ │ │ │ │ ├── arrow-tail-down_20.svg │ │ │ │ │ ├── arrow-tail-down_24.svg │ │ │ │ │ ├── arrow-tail-down_28.svg │ │ │ │ │ ├── arrow-tail-down_36.svg │ │ │ │ │ ├── arrow-tail-up_10.svg │ │ │ │ │ ├── arrow-tail-up_12.svg │ │ │ │ │ ├── arrow-tail-up_14.svg │ │ │ │ │ ├── arrow-tail-up_16.svg │ │ │ │ │ ├── arrow-tail-up_20.svg │ │ │ │ │ ├── arrow-tail-up_24.svg │ │ │ │ │ ├── arrow-tail-up_28.svg │ │ │ │ │ ├── arrow-tail-up_36.svg │ │ │ │ │ ├── arrow-up-optical_12.svg │ │ │ │ │ ├── arrow-up-optical_14.svg │ │ │ │ │ ├── arrow-up-optical_16.svg │ │ │ │ │ ├── arrow-up-optical_18.svg │ │ │ │ │ ├── arrow-up-optical_20.svg │ │ │ │ │ ├── arrow-up-optical_24.svg │ │ │ │ │ ├── arrow-up-optical_28.svg │ │ │ │ │ ├── arrow-up-optical_32.svg │ │ │ │ │ ├── arrow-up-optical_8.svg │ │ │ │ │ ├── arrow-up_12.svg │ │ │ │ │ ├── arrow-up_16.svg │ │ │ │ │ ├── arrow-up_18.svg │ │ │ │ │ ├── arrow-up_20.svg │ │ │ │ │ ├── arrow-up_24.svg │ │ │ │ │ ├── arrow-up_28.svg │ │ │ │ │ ├── arrow-up_32.svg │ │ │ │ │ ├── arrow-up_6.svg │ │ │ │ │ ├── arrow-up_8.svg │ │ │ │ │ ├── ask-for-help_12.svg │ │ │ │ │ ├── ask-for-help_16.svg │ │ │ │ │ ├── ask-for-help_20.svg │ │ │ │ │ ├── assign-host_12.svg │ │ │ │ │ ├── assign-host_16.svg │ │ │ │ │ ├── assign-host_20.svg │ │ │ │ │ ├── assign-host_24.svg │ │ │ │ │ ├── assign-privilege_12.svg │ │ │ │ │ ├── assign-privilege_16.svg │ │ │ │ │ ├── assign-privilege_20.svg │ │ │ │ │ ├── assignment_24.svg │ │ │ │ │ ├── asterisk_10.svg │ │ │ │ │ ├── asterisk_16.svg │ │ │ │ │ ├── asterisk_24.svg │ │ │ │ │ ├── asterisk_32.svg │ │ │ │ │ ├── asterisk_36.svg │ │ │ │ │ ├── attachment_12.svg │ │ │ │ │ ├── attachment_16.svg │ │ │ │ │ ├── attachment_20.svg │ │ │ │ │ ├── audio-and-video-connection_12.svg │ │ │ │ │ ├── audio-and-video-connection_20.svg │ │ │ │ │ ├── audio-and-video-connection_24.svg │ │ │ │ │ ├── audio-broadcast_14.svg │ │ │ │ │ ├── audio-broadcast_16.svg │ │ │ │ │ ├── audio-broadcast_20.svg │ │ │ │ │ ├── audio-broadcast_24.svg │ │ │ │ │ ├── audio-call_14.svg │ │ │ │ │ ├── audio-call_16.svg │ │ │ │ │ ├── audio-input_16.svg │ │ │ │ │ ├── audio-options_20.svg │ │ │ │ │ ├── audio-options_24.svg │ │ │ │ │ ├── audio-options_28.svg │ │ │ │ │ ├── audio-options_32.svg │ │ │ │ │ ├── audio-options_40.svg │ │ │ │ │ ├── audio-video_12.svg │ │ │ │ │ ├── audio-video_16.svg │ │ │ │ │ ├── audio-video_20.svg │ │ │ │ │ ├── audio-video_24.svg │ │ │ │ │ ├── audio-video_28.svg │ │ │ │ │ ├── back-to-fullscreen-adr_12.svg │ │ │ │ │ ├── back-to-fullscreen-adr_14.svg │ │ │ │ │ ├── back-to-fullscreen-adr_16.svg │ │ │ │ │ ├── back-to-fullscreen-adr_20.svg │ │ │ │ │ ├── back-to-fullscreen-adr_22.svg │ │ │ │ │ ├── back-to-fullscreen-adr_24.svg │ │ │ │ │ ├── back-to-fullscreen-adr_26.svg │ │ │ │ │ ├── back-to-fullscreen-adr_28.svg │ │ │ │ │ ├── back-to-fullscreen_12.svg │ │ │ │ │ ├── back-to-fullscreen_14.svg │ │ │ │ │ ├── back-to-fullscreen_16.svg │ │ │ │ │ ├── back-to-fullscreen_20.svg │ │ │ │ │ ├── back-to-fullscreen_22.svg │ │ │ │ │ ├── back-to-fullscreen_24.svg │ │ │ │ │ ├── back_10.svg │ │ │ │ │ ├── back_12.svg │ │ │ │ │ ├── back_16.svg │ │ │ │ │ ├── back_20.svg │ │ │ │ │ ├── back_24.svg │ │ │ │ │ ├── back_28.svg │ │ │ │ │ ├── back_36.svg │ │ │ │ │ ├── backspace_16.svg │ │ │ │ │ ├── backspace_20.svg │ │ │ │ │ ├── backspace_24.svg │ │ │ │ │ ├── backup-data_16.svg │ │ │ │ │ ├── backup-data_24.svg │ │ │ │ │ ├── battery_20.svg │ │ │ │ │ ├── battery_24.svg │ │ │ │ │ ├── beta-active_20.svg │ │ │ │ │ ├── beta_20.svg │ │ │ │ │ ├── blocked-selected_20.svg │ │ │ │ │ ├── blocked-selected_24.svg │ │ │ │ │ ├── blocked_12.svg │ │ │ │ │ ├── blocked_14.svg │ │ │ │ │ ├── blocked_16.svg │ │ │ │ │ ├── blocked_18.svg │ │ │ │ │ ├── blocked_20.svg │ │ │ │ │ ├── blocked_24.svg │ │ │ │ │ ├── blocked_28.svg │ │ │ │ │ ├── blocked_32.svg │ │ │ │ │ ├── blocked_36.svg │ │ │ │ │ ├── blocked_40.svg │ │ │ │ │ ├── blocked_48.svg │ │ │ │ │ ├── blocked_56.svg │ │ │ │ │ ├── blocked_8.svg │ │ │ │ │ ├── blocked_80.svg │ │ │ │ │ ├── blog_16.svg │ │ │ │ │ ├── bloomberg-circle_16.svg │ │ │ │ │ ├── bloomberg_16.svg │ │ │ │ │ ├── bluetooth-container-muted_16.svg │ │ │ │ │ ├── bluetooth-container_16.svg │ │ │ │ │ ├── bluetooth_16.svg │ │ │ │ │ ├── bluetooth_20.svg │ │ │ │ │ ├── bluetooth_24.svg │ │ │ │ │ ├── blur_12.svg │ │ │ │ │ ├── blur_20.svg │ │ │ │ │ ├── blur_24.svg │ │ │ │ │ ├── bookmark_16.svg │ │ │ │ │ ├── bot-active_24.svg │ │ │ │ │ ├── bot-customer-assistant_16.svg │ │ │ │ │ ├── bot-customer-assistant_24.svg │ │ │ │ │ ├── bot-customer-assistant_36.svg │ │ │ │ │ ├── bot-expert-assistant_16.svg │ │ │ │ │ ├── bot-expert-assistant_24.svg │ │ │ │ │ ├── bot-expert-assistant_36.svg │ │ │ │ │ ├── bot_12.svg │ │ │ │ │ ├── bot_14.svg │ │ │ │ │ ├── bot_16.svg │ │ │ │ │ ├── bot_18.svg │ │ │ │ │ ├── bot_20.svg │ │ │ │ │ ├── bot_24.svg │ │ │ │ │ ├── bot_36.svg │ │ │ │ │ ├── bot_40.svg │ │ │ │ │ ├── bot_56.svg │ │ │ │ │ ├── box_24.svg │ │ │ │ │ ├── breakout-session_16.svg │ │ │ │ │ ├── breakout-session_20.svg │ │ │ │ │ ├── breakout-session_24.svg │ │ │ │ │ ├── brightness_16.svg │ │ │ │ │ ├── brightness_24.svg │ │ │ │ │ ├── broadcast-message_16.svg │ │ │ │ │ ├── broken-file_16.svg │ │ │ │ │ ├── broken-file_24.svg │ │ │ │ │ ├── browser_12.svg │ │ │ │ │ ├── browser_16.svg │ │ │ │ │ ├── browser_20.svg │ │ │ │ │ ├── browser_24.svg │ │ │ │ │ ├── browser_28.svg │ │ │ │ │ ├── bug_16.svg │ │ │ │ │ ├── calendar-add_12.svg │ │ │ │ │ ├── calendar-add_14.svg │ │ │ │ │ ├── calendar-add_16.svg │ │ │ │ │ ├── calendar-add_20.svg │ │ │ │ │ ├── calendar-add_24.svg │ │ │ │ │ ├── calendar-add_32.svg │ │ │ │ │ ├── calendar-add_36.svg │ │ │ │ │ ├── calendar-day_12.svg │ │ │ │ │ ├── calendar-empty-active_16.svg │ │ │ │ │ ├── calendar-empty-active_18.svg │ │ │ │ │ ├── calendar-empty-active_20.svg │ │ │ │ │ ├── calendar-empty-active_24.svg │ │ │ │ │ ├── calendar-empty-active_32.svg │ │ │ │ │ ├── calendar-empty_16.svg │ │ │ │ │ ├── calendar-empty_18.svg │ │ │ │ │ ├── calendar-empty_20.svg │ │ │ │ │ ├── calendar-empty_24.svg │ │ │ │ │ ├── calendar-empty_32.svg │ │ │ │ │ ├── calendar-external_12.svg │ │ │ │ │ ├── calendar-external_16.svg │ │ │ │ │ ├── calendar-external_18.svg │ │ │ │ │ ├── calendar-external_20.svg │ │ │ │ │ ├── calendar-external_24.svg │ │ │ │ │ ├── calendar-month-active_20.svg │ │ │ │ │ ├── calendar-month-active_24.svg │ │ │ │ │ ├── calendar-month_10.svg │ │ │ │ │ ├── calendar-month_12.svg │ │ │ │ │ ├── calendar-month_16.svg │ │ │ │ │ ├── calendar-month_20.svg │ │ │ │ │ ├── calendar-month_24.svg │ │ │ │ │ ├── calendar-month_28.svg │ │ │ │ │ ├── calendar-month_36.svg │ │ │ │ │ ├── calendar-week-view_12.svg │ │ │ │ │ ├── calendar-week_12.svg │ │ │ │ │ ├── calendar-week_16.svg │ │ │ │ │ ├── calendar-week_20.svg │ │ │ │ │ ├── calendar-week_24.svg │ │ │ │ │ ├── calendar-work-week_12.svg │ │ │ │ │ ├── call-activities_16.svg │ │ │ │ │ ├── call-activities_24.svg │ │ │ │ │ ├── call-forward-active_24.svg │ │ │ │ │ ├── call-forward-divert_14.svg │ │ │ │ │ ├── call-forward-divert_16.svg │ │ │ │ │ ├── call-forward-settings_12.svg │ │ │ │ │ ├── call-forward-settings_14.svg │ │ │ │ │ ├── call-forward-settings_16.svg │ │ │ │ │ ├── call-forward-settings_20.svg │ │ │ │ │ ├── call-forward-settings_24.svg │ │ │ │ │ ├── call-forward_16.svg │ │ │ │ │ ├── call-forward_24.svg │ │ │ │ │ ├── call-forward_28.svg │ │ │ │ │ ├── call-handling_14.svg │ │ │ │ │ ├── call-handling_16.svg │ │ │ │ │ ├── call-hold_14.svg │ │ │ │ │ ├── call-hold_16.svg │ │ │ │ │ ├── call-hold_20.svg │ │ │ │ │ ├── call-hold_24.svg │ │ │ │ │ ├── call-incoming_12.svg │ │ │ │ │ ├── call-incoming_16.svg │ │ │ │ │ ├── call-incoming_24.svg │ │ │ │ │ ├── call-incoming_8.svg │ │ │ │ │ ├── call-log-active_20.svg │ │ │ │ │ ├── call-log_12.svg │ │ │ │ │ ├── call-log_14.svg │ │ │ │ │ ├── call-log_16.svg │ │ │ │ │ ├── call-log_20.svg │ │ │ │ │ ├── call-log_24.svg │ │ │ │ │ ├── call-merge_12.svg │ │ │ │ │ ├── call-merge_16.svg │ │ │ │ │ ├── call-merge_20.svg │ │ │ │ │ ├── call-merge_24.svg │ │ │ │ │ ├── call-outgoing_12.svg │ │ │ │ │ ├── call-outgoing_16.svg │ │ │ │ │ ├── call-outgoing_24.svg │ │ │ │ │ ├── call-outgoing_8.svg │ │ │ │ │ ├── call-pickup_12.svg │ │ │ │ │ ├── call-pickup_14.svg │ │ │ │ │ ├── call-private_12.svg │ │ │ │ │ ├── call-private_14.svg │ │ │ │ │ ├── call-request_12.svg │ │ │ │ │ ├── call-request_14.svg │ │ │ │ │ ├── call-room_28.svg │ │ │ │ │ ├── call-settings_14.svg │ │ │ │ │ ├── call-settings_20.svg │ │ │ │ │ ├── call-swap_16.svg │ │ │ │ │ ├── call-swap_20.svg │ │ │ │ │ ├── call-swap_24.svg │ │ │ │ │ ├── call-swap_28.svg │ │ │ │ │ ├── call-voicemail_12.svg │ │ │ │ │ ├── call-voicemail_14.svg │ │ │ │ │ ├── call-voicemail_16.svg │ │ │ │ │ ├── call-voicemail_18.svg │ │ │ │ │ ├── call-voicemail_20.svg │ │ │ │ │ ├── call-voicemail_24.svg │ │ │ │ │ ├── camera-active_14.svg │ │ │ │ │ ├── camera-active_24.svg │ │ │ │ │ ├── camera-aux_16.svg │ │ │ │ │ ├── camera-aux_24.svg │ │ │ │ │ ├── camera-group_16.svg │ │ │ │ │ ├── camera-group_24.svg │ │ │ │ │ ├── camera-muted_12.svg │ │ │ │ │ ├── camera-muted_14.svg │ │ │ │ │ ├── camera-muted_16.svg │ │ │ │ │ ├── camera-muted_20.svg │ │ │ │ │ ├── camera-muted_24.svg │ │ │ │ │ ├── camera-muted_28.svg │ │ │ │ │ ├── camera-muted_32.svg │ │ │ │ │ ├── camera-muted_36.svg │ │ │ │ │ ├── camera-muted_8.svg │ │ │ │ │ ├── camera-on_16.svg │ │ │ │ │ ├── camera-on_20.svg │ │ │ │ │ ├── camera-on_24.svg │ │ │ │ │ ├── camera-photo-swap_16.svg │ │ │ │ │ ├── camera-photo_12.svg │ │ │ │ │ ├── camera-photo_16.svg │ │ │ │ │ ├── camera-photo_20.svg │ │ │ │ │ ├── camera-photo_24.svg │ │ │ │ │ ├── camera-photo_32.svg │ │ │ │ │ ├── camera-photo_48.svg │ │ │ │ │ ├── camera-presence-stroke_10.svg │ │ │ │ │ ├── camera-presence-stroke_14.svg │ │ │ │ │ ├── camera-presence-stroke_16.svg │ │ │ │ │ ├── camera-presence-stroke_26.svg │ │ │ │ │ ├── camera-presence-stroke_30.svg │ │ │ │ │ ├── camera-presence_12.svg │ │ │ │ │ ├── camera-presence_14.svg │ │ │ │ │ ├── camera-presence_24.svg │ │ │ │ │ ├── camera-presence_28.svg │ │ │ │ │ ├── camera-presence_8.svg │ │ │ │ │ ├── camera-swap_12.svg │ │ │ │ │ ├── camera-swap_16.svg │ │ │ │ │ ├── camera-swap_20.svg │ │ │ │ │ ├── camera-swap_24.svg │ │ │ │ │ ├── camera_10.svg │ │ │ │ │ ├── camera_12.svg │ │ │ │ │ ├── camera_120.svg │ │ │ │ │ ├── camera_124.svg │ │ │ │ │ ├── camera_14.svg │ │ │ │ │ ├── camera_16.svg │ │ │ │ │ ├── camera_18.svg │ │ │ │ │ ├── camera_20.svg │ │ │ │ │ ├── camera_24.svg │ │ │ │ │ ├── camera_26.svg │ │ │ │ │ ├── camera_28.svg │ │ │ │ │ ├── camera_32.svg │ │ │ │ │ ├── camera_36.svg │ │ │ │ │ ├── camera_40.svg │ │ │ │ │ ├── camera_48.svg │ │ │ │ │ ├── camera_56.svg │ │ │ │ │ ├── camera_64.svg │ │ │ │ │ ├── camera_8.svg │ │ │ │ │ ├── cancel_10.svg │ │ │ │ │ ├── cancel_12.svg │ │ │ │ │ ├── cancel_14.svg │ │ │ │ │ ├── cancel_16.svg │ │ │ │ │ ├── cancel_18.svg │ │ │ │ │ ├── cancel_20.svg │ │ │ │ │ ├── cancel_24.svg │ │ │ │ │ ├── cancel_28.svg │ │ │ │ │ ├── cancel_36.svg │ │ │ │ │ ├── cancel_6.svg │ │ │ │ │ ├── cancel_8.svg │ │ │ │ │ ├── cellular_16.svg │ │ │ │ │ ├── certified_16.svg │ │ │ │ │ ├── certified_24.svg │ │ │ │ │ ├── ch-p-search_14.svg │ │ │ │ │ ├── chat-active_10.svg │ │ │ │ │ ├── chat-active_12.svg │ │ │ │ │ ├── chat-active_14.svg │ │ │ │ │ ├── chat-active_16.svg │ │ │ │ │ ├── chat-active_18.svg │ │ │ │ │ ├── chat-active_20.svg │ │ │ │ │ ├── chat-active_24.svg │ │ │ │ │ ├── chat-active_26.svg │ │ │ │ │ ├── chat-active_28.svg │ │ │ │ │ ├── chat-active_32.svg │ │ │ │ │ ├── chat-active_36.svg │ │ │ │ │ ├── chat-active_8.svg │ │ │ │ │ ├── chat-group_12.svg │ │ │ │ │ ├── chat-group_16.svg │ │ │ │ │ ├── chat-group_20.svg │ │ │ │ │ ├── chat-group_32.svg │ │ │ │ │ ├── chat-muted_12.svg │ │ │ │ │ ├── chat-muted_16.svg │ │ │ │ │ ├── chat-persistent-active_20.svg │ │ │ │ │ ├── chat-persistent-active_24.svg │ │ │ │ │ ├── chat-persistent_16.svg │ │ │ │ │ ├── chat-persistent_20.svg │ │ │ │ │ ├── chat-persistent_24.svg │ │ │ │ │ ├── chat_10.svg │ │ │ │ │ ├── chat_12.svg │ │ │ │ │ ├── chat_14.svg │ │ │ │ │ ├── chat_16.svg │ │ │ │ │ ├── chat_18.svg │ │ │ │ │ ├── chat_20.svg │ │ │ │ │ ├── chat_24.svg │ │ │ │ │ ├── chat_26.svg │ │ │ │ │ ├── chat_28.svg │ │ │ │ │ ├── chat_32.svg │ │ │ │ │ ├── chat_36.svg │ │ │ │ │ ├── chat_40.svg │ │ │ │ │ ├── chat_8.svg │ │ │ │ │ ├── check-circle-active_16.svg │ │ │ │ │ ├── check-circle-active_24.svg │ │ │ │ │ ├── check-circle_100.svg │ │ │ │ │ ├── check-circle_12.svg │ │ │ │ │ ├── check-circle_14.svg │ │ │ │ │ ├── check-circle_16.svg │ │ │ │ │ ├── check-circle_18.svg │ │ │ │ │ ├── check-circle_20.svg │ │ │ │ │ ├── check-circle_24.svg │ │ │ │ │ ├── check-circle_36.svg │ │ │ │ │ ├── check-circle_40.svg │ │ │ │ │ ├── check-circle_44.svg │ │ │ │ │ ├── check-circle_72.svg │ │ │ │ │ ├── check-refresh_16.svg │ │ │ │ │ ├── check_10.svg │ │ │ │ │ ├── check_12.svg │ │ │ │ │ ├── check_14.svg │ │ │ │ │ ├── check_16.svg │ │ │ │ │ ├── check_18.svg │ │ │ │ │ ├── check_20.svg │ │ │ │ │ ├── check_24.svg │ │ │ │ │ ├── check_28.svg │ │ │ │ │ ├── check_32.svg │ │ │ │ │ ├── check_36.svg │ │ │ │ │ ├── check_40.svg │ │ │ │ │ ├── check_64.svg │ │ │ │ │ ├── check_8.svg │ │ │ │ │ ├── check_80.svg │ │ │ │ │ ├── cisco-logo.svg │ │ │ │ │ ├── clear-active_12.svg │ │ │ │ │ ├── clear-active_14.svg │ │ │ │ │ ├── clear-active_16.svg │ │ │ │ │ ├── clear-active_18.svg │ │ │ │ │ ├── clear-active_20.svg │ │ │ │ │ ├── clear-active_24.svg │ │ │ │ │ ├── clear-active_32.svg │ │ │ │ │ ├── clear_12.svg │ │ │ │ │ ├── clear_14.svg │ │ │ │ │ ├── clear_140.svg │ │ │ │ │ ├── clear_16.svg │ │ │ │ │ ├── clear_18.svg │ │ │ │ │ ├── clear_20.svg │ │ │ │ │ ├── clear_24.svg │ │ │ │ │ ├── clear_32.svg │ │ │ │ │ ├── clear_44.svg │ │ │ │ │ ├── clear_80.svg │ │ │ │ │ ├── close-space_12.svg │ │ │ │ │ ├── close-space_18.svg │ │ │ │ │ ├── closed-caption-badge_12.svg │ │ │ │ │ ├── closed-caption-badge_16.svg │ │ │ │ │ ├── closed-caption-badge_20.svg │ │ │ │ │ ├── closed-caption_12.svg │ │ │ │ │ ├── closed-caption_16.svg │ │ │ │ │ ├── closed-caption_20.svg │ │ │ │ │ ├── closed-caption_24.svg │ │ │ │ │ ├── cloud-upload_16.svg │ │ │ │ │ ├── cloud-upload_20.svg │ │ │ │ │ ├── cloud-upload_24.svg │ │ │ │ │ ├── cloud_16.svg │ │ │ │ │ ├── cloud_20.svg │ │ │ │ │ ├── cloud_24.svg │ │ │ │ │ ├── cloud_32.svg │ │ │ │ │ ├── commenting-active_20.svg │ │ │ │ │ ├── commenting_16.svg │ │ │ │ │ ├── commenting_20.svg │ │ │ │ │ ├── commenting_24.svg │ │ │ │ │ ├── company_12.svg │ │ │ │ │ ├── company_16.svg │ │ │ │ │ ├── company_20.svg │ │ │ │ │ ├── company_24.svg │ │ │ │ │ ├── company_32.svg │ │ │ │ │ ├── computer_16.svg │ │ │ │ │ ├── computer_24.svg │ │ │ │ │ ├── condition_16.svg │ │ │ │ │ ├── contact-card-active_20.svg │ │ │ │ │ ├── contact-card-active_22.svg │ │ │ │ │ ├── contact-card-active_24.svg │ │ │ │ │ ├── contact-card_10.svg │ │ │ │ │ ├── contact-card_12.svg │ │ │ │ │ ├── contact-card_16.svg │ │ │ │ │ ├── contact-card_20.svg │ │ │ │ │ ├── contact-card_22.svg │ │ │ │ │ ├── contact-card_24.svg │ │ │ │ │ ├── contact-card_28.svg │ │ │ │ │ ├── contact-card_36.svg │ │ │ │ │ ├── contact-group_16.svg │ │ │ │ │ ├── contact-group_20.svg │ │ │ │ │ ├── content-download_12.svg │ │ │ │ │ ├── content-download_14.svg │ │ │ │ │ ├── content-share_10.svg │ │ │ │ │ ├── content-share_12.svg │ │ │ │ │ ├── content-share_120.svg │ │ │ │ │ ├── content-share_124.svg │ │ │ │ │ ├── content-share_14.svg │ │ │ │ │ ├── content-share_16.svg │ │ │ │ │ ├── content-share_18.svg │ │ │ │ │ ├── content-share_20.svg │ │ │ │ │ ├── content-share_24.svg │ │ │ │ │ ├── content-share_32.svg │ │ │ │ │ ├── content-share_36.svg │ │ │ │ │ ├── content-share_40.svg │ │ │ │ │ ├── content-share_48.svg │ │ │ │ │ ├── content-share_56.svg │ │ │ │ │ ├── copy_10.svg │ │ │ │ │ ├── copy_12.svg │ │ │ │ │ ├── copy_14.svg │ │ │ │ │ ├── copy_16.svg │ │ │ │ │ ├── copy_20.svg │ │ │ │ │ ├── copy_24.svg │ │ │ │ │ ├── cpu_16.svg │ │ │ │ │ ├── cpu_24.svg │ │ │ │ │ ├── cpu_32.svg │ │ │ │ │ ├── crop_16.svg │ │ │ │ │ ├── crunchbase-circle_16.svg │ │ │ │ │ ├── crunchbase_16.svg │ │ │ │ │ ├── cucm-connection_24.svg │ │ │ │ │ ├── dashboard_32.svg │ │ │ │ │ ├── data-usage_16.svg │ │ │ │ │ ├── data-usage_18.svg │ │ │ │ │ ├── data-usage_20.svg │ │ │ │ │ ├── data-usage_24.svg │ │ │ │ │ ├── default-app_16.svg │ │ │ │ │ ├── delete_10.svg │ │ │ │ │ ├── delete_12.svg │ │ │ │ │ ├── delete_14.svg │ │ │ │ │ ├── delete_16.svg │ │ │ │ │ ├── delete_18.svg │ │ │ │ │ ├── delete_20.svg │ │ │ │ │ ├── delete_24.svg │ │ │ │ │ ├── deskphone-warning_16.svg │ │ │ │ │ ├── deskphone_12.svg │ │ │ │ │ ├── deskphone_14.svg │ │ │ │ │ ├── deskphone_16.svg │ │ │ │ │ ├── deskphone_20.svg │ │ │ │ │ ├── deskphone_24.svg │ │ │ │ │ ├── deskphone_32.svg │ │ │ │ │ ├── deskphone_48.svg │ │ │ │ │ ├── device-connection-active_14.svg │ │ │ │ │ ├── device-connection-active_16.svg │ │ │ │ │ ├── device-connection-active_20.svg │ │ │ │ │ ├── device-connection-active_24.svg │ │ │ │ │ ├── device-connection-active_36.svg │ │ │ │ │ ├── device-connection-active_40.svg │ │ │ │ │ ├── device-connection_12.svg │ │ │ │ │ ├── device-connection_14.svg │ │ │ │ │ ├── device-connection_16.svg │ │ │ │ │ ├── device-connection_18.svg │ │ │ │ │ ├── device-connection_20.svg │ │ │ │ │ ├── device-connection_24.svg │ │ │ │ │ ├── device-connection_36.svg │ │ │ │ │ ├── device-connection_48.svg │ │ │ │ │ ├── device-in-room-active_24.svg │ │ │ │ │ ├── device-in-room-end_16.svg │ │ │ │ │ ├── device-in-room_100.svg │ │ │ │ │ ├── device-in-room_12.svg │ │ │ │ │ ├── device-in-room_14.svg │ │ │ │ │ ├── device-in-room_16.svg │ │ │ │ │ ├── device-in-room_18.svg │ │ │ │ │ ├── device-in-room_20.svg │ │ │ │ │ ├── device-in-room_24.svg │ │ │ │ │ ├── device-in-room_32.svg │ │ │ │ │ ├── device-in-room_48.svg │ │ │ │ │ ├── device-in-room_56.svg │ │ │ │ │ ├── device-in-room_8.svg │ │ │ │ │ ├── diagnostics-circle_100.svg │ │ │ │ │ ├── diagnostics_16.svg │ │ │ │ │ ├── diagnostics_24.svg │ │ │ │ │ ├── diagnostics_32.svg │ │ │ │ │ ├── dialpad_12.svg │ │ │ │ │ ├── dialpad_14.svg │ │ │ │ │ ├── dialpad_16.svg │ │ │ │ │ ├── dialpad_20.svg │ │ │ │ │ ├── dialpad_24.svg │ │ │ │ │ ├── dialpad_28.svg │ │ │ │ │ ├── directory_16.svg │ │ │ │ │ ├── directory_20.svg │ │ │ │ │ ├── directory_24.svg │ │ │ │ │ ├── disconnect-contact_16.svg │ │ │ │ │ ├── dislike_16.svg │ │ │ │ │ ├── dislike_24.svg │ │ │ │ │ ├── display-input_16.svg │ │ │ │ │ ├── display-input_24.svg │ │ │ │ │ ├── display-warning_16.svg │ │ │ │ │ ├── display_14.svg │ │ │ │ │ ├── display_16.svg │ │ │ │ │ ├── display_24.svg │ │ │ │ │ ├── display_36.svg │ │ │ │ │ ├── display_72.svg │ │ │ │ │ ├── dnd-active_14.svg │ │ │ │ │ ├── dnd-active_24.svg │ │ │ │ │ ├── dnd-presence-stroke_10.svg │ │ │ │ │ ├── dnd-presence-stroke_14.svg │ │ │ │ │ ├── dnd-presence-stroke_16.svg │ │ │ │ │ ├── dnd-presence-stroke_26.svg │ │ │ │ │ ├── dnd-presence-stroke_30.svg │ │ │ │ │ ├── dnd-presence_12.svg │ │ │ │ │ ├── dnd-presence_14.svg │ │ │ │ │ ├── dnd-presence_24.svg │ │ │ │ │ ├── dnd-presence_28.svg │ │ │ │ │ ├── dnd-presence_8.svg │ │ │ │ │ ├── dnd_12.svg │ │ │ │ │ ├── dnd_120.svg │ │ │ │ │ ├── dnd_124.svg │ │ │ │ │ ├── dnd_14.svg │ │ │ │ │ ├── dnd_16.svg │ │ │ │ │ ├── dnd_18.svg │ │ │ │ │ ├── dnd_20.svg │ │ │ │ │ ├── dnd_24.svg │ │ │ │ │ ├── dnd_26.svg │ │ │ │ │ ├── dnd_28.svg │ │ │ │ │ ├── dnd_32.svg │ │ │ │ │ ├── dnd_36.svg │ │ │ │ │ ├── dnd_40.svg │ │ │ │ │ ├── dnd_48.svg │ │ │ │ │ ├── dnd_56.svg │ │ │ │ │ ├── dnd_8.svg │ │ │ │ │ ├── dock-in_12.svg │ │ │ │ │ ├── dock-in_16.svg │ │ │ │ │ ├── dock-out_12.svg │ │ │ │ │ ├── dock-out_16.svg │ │ │ │ │ ├── document-create_16.svg │ │ │ │ │ ├── document-move_16.svg │ │ │ │ │ ├── document-share_16.svg │ │ │ │ │ ├── document-share_24.svg │ │ │ │ │ ├── document-share_36.svg │ │ │ │ │ ├── document-share_48.svg │ │ │ │ │ ├── document_12.svg │ │ │ │ │ ├── document_14.svg │ │ │ │ │ ├── document_16.svg │ │ │ │ │ ├── document_18.svg │ │ │ │ │ ├── document_20.svg │ │ │ │ │ ├── document_24.svg │ │ │ │ │ ├── document_28.svg │ │ │ │ │ ├── document_32.svg │ │ │ │ │ ├── document_36.svg │ │ │ │ │ ├── document_40.svg │ │ │ │ │ ├── document_44.svg │ │ │ │ │ ├── document_72.svg │ │ │ │ │ ├── donut-chart_16.svg │ │ │ │ │ ├── download-active_20.svg │ │ │ │ │ ├── download-circle_100.svg │ │ │ │ │ ├── download_10.svg │ │ │ │ │ ├── download_12.svg │ │ │ │ │ ├── download_130.svg │ │ │ │ │ ├── download_14.svg │ │ │ │ │ ├── download_16.svg │ │ │ │ │ ├── download_18.svg │ │ │ │ │ ├── download_20.svg │ │ │ │ │ ├── download_24.svg │ │ │ │ │ ├── download_28.svg │ │ │ │ │ ├── download_32.svg │ │ │ │ │ ├── drag_14.svg │ │ │ │ │ ├── drag_16.svg │ │ │ │ │ ├── drive-mode_20.svg │ │ │ │ │ ├── dx70_16.svg │ │ │ │ │ ├── dx70_20.svg │ │ │ │ │ ├── dx80_16.svg │ │ │ │ │ ├── dx80_20.svg │ │ │ │ │ ├── edit_10.svg │ │ │ │ │ ├── edit_12.svg │ │ │ │ │ ├── edit_14.svg │ │ │ │ │ ├── edit_16.svg │ │ │ │ │ ├── edit_18.svg │ │ │ │ │ ├── edit_20.svg │ │ │ │ │ ├── edit_24.svg │ │ │ │ │ ├── edit_56.svg │ │ │ │ │ ├── email-active_12.svg │ │ │ │ │ ├── email-active_16.svg │ │ │ │ │ ├── email-active_24.svg │ │ │ │ │ ├── email-circle_24.svg │ │ │ │ │ ├── email-circle_32.svg │ │ │ │ │ ├── email-circle_40.svg │ │ │ │ │ ├── email-invite_100.svg │ │ │ │ │ ├── email-invite_16.svg │ │ │ │ │ ├── email-invite_24.svg │ │ │ │ │ ├── email-invite_32.svg │ │ │ │ │ ├── email-read_16.svg │ │ │ │ │ ├── email-read_20.svg │ │ │ │ │ ├── email-read_24.svg │ │ │ │ │ ├── email_12.svg │ │ │ │ │ ├── email_14.svg │ │ │ │ │ ├── email_16.svg │ │ │ │ │ ├── email_20.svg │ │ │ │ │ ├── email_24.svg │ │ │ │ │ ├── email_56.svg │ │ │ │ │ ├── emoji-food_16.svg │ │ │ │ │ ├── emoji-heart_16.svg │ │ │ │ │ ├── emoji-nature_16.svg │ │ │ │ │ ├── emoji-people_16.svg │ │ │ │ │ ├── emoticon-passive_24.svg │ │ │ │ │ ├── emoticon-sad_24.svg │ │ │ │ │ ├── emoticons_12.svg │ │ │ │ │ ├── emoticons_16.svg │ │ │ │ │ ├── emoticons_18.svg │ │ │ │ │ ├── emoticons_20.svg │ │ │ │ │ ├── emoticons_24.svg │ │ │ │ │ ├── encryption_16.svg │ │ │ │ │ ├── encryption_20.svg │ │ │ │ │ ├── end-remote-desktop-control_10.svg │ │ │ │ │ ├── end-to-end-encryption_14.svg │ │ │ │ │ ├── end-to-end-encryption_16.svg │ │ │ │ │ ├── endpoint-blocked_12.svg │ │ │ │ │ ├── endpoint-g2-70-dual_16.svg │ │ │ │ │ ├── endpoint-g2-70-dual_20.svg │ │ │ │ │ ├── endpoint-g2-70_16.svg │ │ │ │ │ ├── endpoint-g2-70_20.svg │ │ │ │ │ ├── endpoint-g2-stand_16.svg │ │ │ │ │ ├── endpoint-g2-stand_20.svg │ │ │ │ │ ├── endpoint-g2_16.svg │ │ │ │ │ ├── endpoint-g2_20.svg │ │ │ │ │ ├── endpoint-mx800-dual_16.svg │ │ │ │ │ ├── endpoint-mx800-dual_20.svg │ │ │ │ │ ├── endpoint-mx800_16.svg │ │ │ │ │ ├── endpoint-mx800_20.svg │ │ │ │ │ ├── endpoint-stand_16.svg │ │ │ │ │ ├── endpoint-stand_20.svg │ │ │ │ │ ├── endpoint-warning_12.svg │ │ │ │ │ ├── endpoint_10.svg │ │ │ │ │ ├── endpoint_12.svg │ │ │ │ │ ├── endpoint_14.svg │ │ │ │ │ ├── endpoint_16.svg │ │ │ │ │ ├── endpoint_20.svg │ │ │ │ │ ├── endpoint_24.svg │ │ │ │ │ ├── endpoint_28.svg │ │ │ │ │ ├── endpoint_32.svg │ │ │ │ │ ├── endpoint_48.svg │ │ │ │ │ ├── endpoint_56.svg │ │ │ │ │ ├── endpoint_64.svg │ │ │ │ │ ├── endpoint_8.svg │ │ │ │ │ ├── enter-room_10.svg │ │ │ │ │ ├── enter-room_12.svg │ │ │ │ │ ├── enter-room_16.svg │ │ │ │ │ ├── enter-room_20.svg │ │ │ │ │ ├── enter-room_24.svg │ │ │ │ │ ├── enter-room_28.svg │ │ │ │ │ ├── enter-room_8.svg │ │ │ │ │ ├── enter_16.svg │ │ │ │ │ ├── eraser_12.svg │ │ │ │ │ ├── eraser_14.svg │ │ │ │ │ ├── eraser_16.svg │ │ │ │ │ ├── eraser_18.svg │ │ │ │ │ ├── eraser_24.svg │ │ │ │ │ ├── error-legacy_12.svg │ │ │ │ │ ├── error-legacy_16.svg │ │ │ │ │ ├── error-legacy_20.svg │ │ │ │ │ ├── error-legacy_24.svg │ │ │ │ │ ├── error-legacy_28.svg │ │ │ │ │ ├── error-legacy_36.svg │ │ │ │ │ ├── error-legacy_8.svg │ │ │ │ │ ├── error-legacy_80.svg │ │ │ │ │ ├── error_12.svg │ │ │ │ │ ├── error_16.svg │ │ │ │ │ ├── error_20.svg │ │ │ │ │ ├── error_24.svg │ │ │ │ │ ├── error_40.svg │ │ │ │ │ ├── error_8.svg │ │ │ │ │ ├── error_80.svg │ │ │ │ │ ├── ethernet_16.svg │ │ │ │ │ ├── ethernet_24.svg │ │ │ │ │ ├── event_16.svg │ │ │ │ │ ├── exchange_16.svg │ │ │ │ │ ├── exit-room_12.svg │ │ │ │ │ ├── exit-room_16.svg │ │ │ │ │ ├── exit-room_20.svg │ │ │ │ │ ├── exit-room_24.svg │ │ │ │ │ ├── exit-room_28.svg │ │ │ │ │ ├── explore_16.svg │ │ │ │ │ ├── export_16.svg │ │ │ │ │ ├── export_24.svg │ │ │ │ │ ├── extension-mobility_16.svg │ │ │ │ │ ├── extension-mobility_24.svg │ │ │ │ │ ├── external-message_10.svg │ │ │ │ │ ├── external-message_16.svg │ │ │ │ │ ├── external-message_24.svg │ │ │ │ │ ├── external-message_32.svg │ │ │ │ │ ├── external-message_36.svg │ │ │ │ │ ├── external-user_10.svg │ │ │ │ │ ├── external-user_12.svg │ │ │ │ │ ├── external-user_16.svg │ │ │ │ │ ├── external-user_20.svg │ │ │ │ │ ├── facebook-blue_12.svg │ │ │ │ │ ├── facebook-circle_24.svg │ │ │ │ │ ├── facebook-circle_32.svg │ │ │ │ │ ├── facebook-circle_40.svg │ │ │ │ │ ├── facebook-logo_12.svg │ │ │ │ │ ├── facebook_16.svg │ │ │ │ │ ├── favorite-active_12.svg │ │ │ │ │ ├── favorite-active_14.svg │ │ │ │ │ ├── favorite-active_16.svg │ │ │ │ │ ├── favorite-active_20.svg │ │ │ │ │ ├── favorite-active_24.svg │ │ │ │ │ ├── favorite-active_28.svg │ │ │ │ │ ├── favorite-active_8.svg │ │ │ │ │ ├── favorite-filled_12.svg │ │ │ │ │ ├── favorite-filled_14.svg │ │ │ │ │ ├── favorite-filled_16.svg │ │ │ │ │ ├── favorite-filled_20.svg │ │ │ │ │ ├── favorite-filled_24.svg │ │ │ │ │ ├── favorite-filled_28.svg │ │ │ │ │ ├── favorite-filled_8.svg │ │ │ │ │ ├── favorite_10.svg │ │ │ │ │ ├── favorite_12.svg │ │ │ │ │ ├── favorite_14.svg │ │ │ │ │ ├── favorite_16.svg │ │ │ │ │ ├── favorite_20.svg │ │ │ │ │ ├── favorite_24.svg │ │ │ │ │ ├── favorite_28.svg │ │ │ │ │ ├── favorite_8.svg │ │ │ │ │ ├── fbw_16.svg │ │ │ │ │ ├── fbw_24.svg │ │ │ │ │ ├── feedback-active_12.svg │ │ │ │ │ ├── feedback-active_14.svg │ │ │ │ │ ├── feedback-active_16.svg │ │ │ │ │ ├── feedback-active_20.svg │ │ │ │ │ ├── feedback-active_8.svg │ │ │ │ │ ├── feedback_12.svg │ │ │ │ │ ├── feedback_14.svg │ │ │ │ │ ├── feedback_16.svg │ │ │ │ │ ├── feedback_20.svg │ │ │ │ │ ├── feedback_72.svg │ │ │ │ │ ├── feedback_8.svg │ │ │ │ │ ├── ffw_16.svg │ │ │ │ │ ├── ffw_24.svg │ │ │ │ │ ├── file-analysis_28.svg │ │ │ │ │ ├── file-arf_40.svg │ │ │ │ │ ├── file-audio_12.svg │ │ │ │ │ ├── file-audio_16.svg │ │ │ │ │ ├── file-audio_24.svg │ │ │ │ │ ├── file-audio_28.svg │ │ │ │ │ ├── file-audio_32.svg │ │ │ │ │ ├── file-audio_36.svg │ │ │ │ │ ├── file-audio_40.svg │ │ │ │ │ ├── file-audio_44.svg │ │ │ │ │ ├── file-audio_72.svg │ │ │ │ │ ├── file-dashboard_28.svg │ │ │ │ │ ├── file-excel-active_12.svg │ │ │ │ │ ├── file-excel-active_16.svg │ │ │ │ │ ├── file-excel-active_20.svg │ │ │ │ │ ├── file-excel-active_24.svg │ │ │ │ │ ├── file-excel-active_28.svg │ │ │ │ │ ├── file-excel-active_32.svg │ │ │ │ │ ├── file-excel-active_36.svg │ │ │ │ │ ├── file-excel-active_40.svg │ │ │ │ │ ├── file-excel-active_44.svg │ │ │ │ │ ├── file-excel-active_72.svg │ │ │ │ │ ├── file-excel_12.svg │ │ │ │ │ ├── file-excel_16.svg │ │ │ │ │ ├── file-excel_20.svg │ │ │ │ │ ├── file-excel_24.svg │ │ │ │ │ ├── file-excel_28.svg │ │ │ │ │ ├── file-excel_32.svg │ │ │ │ │ ├── file-excel_36.svg │ │ │ │ │ ├── file-excel_40.svg │ │ │ │ │ ├── file-excel_44.svg │ │ │ │ │ ├── file-excel_72.svg │ │ │ │ │ ├── file-graph-active_12.svg │ │ │ │ │ ├── file-graph-active_16.svg │ │ │ │ │ ├── file-graph-active_20.svg │ │ │ │ │ ├── file-graph-active_24.svg │ │ │ │ │ ├── file-graph-active_28.svg │ │ │ │ │ ├── file-graph-active_32.svg │ │ │ │ │ ├── file-graph-active_36.svg │ │ │ │ │ ├── file-graph-active_40.svg │ │ │ │ │ ├── file-graph-active_44.svg │ │ │ │ │ ├── file-graph-active_72.svg │ │ │ │ │ ├── file-graph_12.svg │ │ │ │ │ ├── file-graph_16.svg │ │ │ │ │ ├── file-graph_20.svg │ │ │ │ │ ├── file-graph_24.svg │ │ │ │ │ ├── file-graph_28.svg │ │ │ │ │ ├── file-graph_32.svg │ │ │ │ │ ├── file-graph_36.svg │ │ │ │ │ ├── file-graph_40.svg │ │ │ │ │ ├── file-graph_44.svg │ │ │ │ │ ├── file-graph_72.svg │ │ │ │ │ ├── file-image_12.svg │ │ │ │ │ ├── file-image_16.svg │ │ │ │ │ ├── file-image_24.svg │ │ │ │ │ ├── file-image_28.svg │ │ │ │ │ ├── file-image_32.svg │ │ │ │ │ ├── file-image_36.svg │ │ │ │ │ ├── file-image_40.svg │ │ │ │ │ ├── file-image_44.svg │ │ │ │ │ ├── file-image_72.svg │ │ │ │ │ ├── file-locked_12.svg │ │ │ │ │ ├── file-locked_24.svg │ │ │ │ │ ├── file-locked_32.svg │ │ │ │ │ ├── file-locked_36.svg │ │ │ │ │ ├── file-locked_40.svg │ │ │ │ │ ├── file-locked_72.svg │ │ │ │ │ ├── file-missing_16.svg │ │ │ │ │ ├── file-missing_24.svg │ │ │ │ │ ├── file-missing_36.svg │ │ │ │ │ ├── file-onenote-active_12.svg │ │ │ │ │ ├── file-onenote-active_16.svg │ │ │ │ │ ├── file-onenote-active_20.svg │ │ │ │ │ ├── file-onenote-active_24.svg │ │ │ │ │ ├── file-onenote-active_28.svg │ │ │ │ │ ├── file-onenote-active_32.svg │ │ │ │ │ ├── file-onenote-active_36.svg │ │ │ │ │ ├── file-onenote-active_40.svg │ │ │ │ │ ├── file-onenote-active_44.svg │ │ │ │ │ ├── file-onenote-active_72.svg │ │ │ │ │ ├── file-onenote_12.svg │ │ │ │ │ ├── file-onenote_16.svg │ │ │ │ │ ├── file-onenote_20.svg │ │ │ │ │ ├── file-onenote_24.svg │ │ │ │ │ ├── file-onenote_28.svg │ │ │ │ │ ├── file-onenote_32.svg │ │ │ │ │ ├── file-onenote_36.svg │ │ │ │ │ ├── file-onenote_40.svg │ │ │ │ │ ├── file-onenote_44.svg │ │ │ │ │ ├── file-onenote_72.svg │ │ │ │ │ ├── file-pdf-active_12.svg │ │ │ │ │ ├── file-pdf-active_16.svg │ │ │ │ │ ├── file-pdf-active_20.svg │ │ │ │ │ ├── file-pdf-active_24.svg │ │ │ │ │ ├── file-pdf-active_28.svg │ │ │ │ │ ├── file-pdf-active_32.svg │ │ │ │ │ ├── file-pdf-active_36.svg │ │ │ │ │ ├── file-pdf-active_40.svg │ │ │ │ │ ├── file-pdf-active_44.svg │ │ │ │ │ ├── file-pdf-active_72.svg │ │ │ │ │ ├── file-pdf_12.svg │ │ │ │ │ ├── file-pdf_16.svg │ │ │ │ │ ├── file-pdf_20.svg │ │ │ │ │ ├── file-pdf_24.svg │ │ │ │ │ ├── file-pdf_28.svg │ │ │ │ │ ├── file-pdf_32.svg │ │ │ │ │ ├── file-pdf_36.svg │ │ │ │ │ ├── file-pdf_40.svg │ │ │ │ │ ├── file-pdf_44.svg │ │ │ │ │ ├── file-pdf_72.svg │ │ │ │ │ ├── file-powerpoint-active_12.svg │ │ │ │ │ ├── file-powerpoint-active_16.svg │ │ │ │ │ ├── file-powerpoint-active_20.svg │ │ │ │ │ ├── file-powerpoint-active_24.svg │ │ │ │ │ ├── file-powerpoint-active_28.svg │ │ │ │ │ ├── file-powerpoint-active_32.svg │ │ │ │ │ ├── file-powerpoint-active_36.svg │ │ │ │ │ ├── file-powerpoint-active_40.svg │ │ │ │ │ ├── file-powerpoint-active_44.svg │ │ │ │ │ ├── file-powerpoint-active_72.svg │ │ │ │ │ ├── file-powerpoint_12.svg │ │ │ │ │ ├── file-powerpoint_16.svg │ │ │ │ │ ├── file-powerpoint_20.svg │ │ │ │ │ ├── file-powerpoint_24.svg │ │ │ │ │ ├── file-powerpoint_28.svg │ │ │ │ │ ├── file-powerpoint_32.svg │ │ │ │ │ ├── file-powerpoint_36.svg │ │ │ │ │ ├── file-powerpoint_40.svg │ │ │ │ │ ├── file-powerpoint_44.svg │ │ │ │ │ ├── file-powerpoint_72.svg │ │ │ │ │ ├── file-sketch_24.svg │ │ │ │ │ ├── file-spreadsheet-active_12.svg │ │ │ │ │ ├── file-spreadsheet-active_16.svg │ │ │ │ │ ├── file-spreadsheet-active_20.svg │ │ │ │ │ ├── file-spreadsheet-active_24.svg │ │ │ │ │ ├── file-spreadsheet-active_28.svg │ │ │ │ │ ├── file-spreadsheet-active_32.svg │ │ │ │ │ ├── file-spreadsheet-active_36.svg │ │ │ │ │ ├── file-spreadsheet-active_40.svg │ │ │ │ │ ├── file-spreadsheet-active_44.svg │ │ │ │ │ ├── file-spreadsheet-active_72.svg │ │ │ │ │ ├── file-spreadsheet_12.svg │ │ │ │ │ ├── file-spreadsheet_16.svg │ │ │ │ │ ├── file-spreadsheet_20.svg │ │ │ │ │ ├── file-spreadsheet_24.svg │ │ │ │ │ ├── file-spreadsheet_28.svg │ │ │ │ │ ├── file-spreadsheet_32.svg │ │ │ │ │ ├── file-spreadsheet_36.svg │ │ │ │ │ ├── file-spreadsheet_40.svg │ │ │ │ │ ├── file-spreadsheet_44.svg │ │ │ │ │ ├── file-spreadsheet_72.svg │ │ │ │ │ ├── file-text-active_12.svg │ │ │ │ │ ├── file-text-active_16.svg │ │ │ │ │ ├── file-text-active_20.svg │ │ │ │ │ ├── file-text-active_24.svg │ │ │ │ │ ├── file-text-active_28.svg │ │ │ │ │ ├── file-text-active_32.svg │ │ │ │ │ ├── file-text-active_36.svg │ │ │ │ │ ├── file-text-active_40.svg │ │ │ │ │ ├── file-text-active_44.svg │ │ │ │ │ ├── file-text-active_72.svg │ │ │ │ │ ├── file-text_12.svg │ │ │ │ │ ├── file-text_16.svg │ │ │ │ │ ├── file-text_20.svg │ │ │ │ │ ├── file-text_24.svg │ │ │ │ │ ├── file-text_28.svg │ │ │ │ │ ├── file-text_32.svg │ │ │ │ │ ├── file-text_36.svg │ │ │ │ │ ├── file-text_40.svg │ │ │ │ │ ├── file-text_44.svg │ │ │ │ │ ├── file-text_72.svg │ │ │ │ │ ├── file-video_12.svg │ │ │ │ │ ├── file-video_16.svg │ │ │ │ │ ├── file-video_24.svg │ │ │ │ │ ├── file-video_28.svg │ │ │ │ │ ├── file-video_32.svg │ │ │ │ │ ├── file-video_36.svg │ │ │ │ │ ├── file-video_40.svg │ │ │ │ │ ├── file-video_44.svg │ │ │ │ │ ├── file-video_72.svg │ │ │ │ │ ├── file-word-active_12.svg │ │ │ │ │ ├── file-word-active_16.svg │ │ │ │ │ ├── file-word-active_20.svg │ │ │ │ │ ├── file-word-active_24.svg │ │ │ │ │ ├── file-word-active_28.svg │ │ │ │ │ ├── file-word-active_32.svg │ │ │ │ │ ├── file-word-active_36.svg │ │ │ │ │ ├── file-word-active_40.svg │ │ │ │ │ ├── file-word-active_44.svg │ │ │ │ │ ├── file-word-active_72.svg │ │ │ │ │ ├── file-word_12.svg │ │ │ │ │ ├── file-word_16.svg │ │ │ │ │ ├── file-word_20.svg │ │ │ │ │ ├── file-word_24.svg │ │ │ │ │ ├── file-word_28.svg │ │ │ │ │ ├── file-word_32.svg │ │ │ │ │ ├── file-word_36.svg │ │ │ │ │ ├── file-word_40.svg │ │ │ │ │ ├── file-word_44.svg │ │ │ │ │ ├── file-word_72.svg │ │ │ │ │ ├── file-zip_12.svg │ │ │ │ │ ├── file-zip_16.svg │ │ │ │ │ ├── file-zip_24.svg │ │ │ │ │ ├── file-zip_28.svg │ │ │ │ │ ├── file-zip_32.svg │ │ │ │ │ ├── file-zip_36.svg │ │ │ │ │ ├── file-zip_40.svg │ │ │ │ │ ├── file-zip_44.svg │ │ │ │ │ ├── file-zip_72.svg │ │ │ │ │ ├── files_10.svg │ │ │ │ │ ├── files_12.svg │ │ │ │ │ ├── files_14.svg │ │ │ │ │ ├── files_16.svg │ │ │ │ │ ├── files_20.svg │ │ │ │ │ ├── files_24.svg │ │ │ │ │ ├── files_26.svg │ │ │ │ │ ├── files_28.svg │ │ │ │ │ ├── files_32.svg │ │ │ │ │ ├── files_36.svg │ │ │ │ │ ├── files_72.svg │ │ │ │ │ ├── files_8.svg │ │ │ │ │ ├── filter-adr_12.svg │ │ │ │ │ ├── filter-adr_14.svg │ │ │ │ │ ├── filter-adr_16.svg │ │ │ │ │ ├── filter-circle-active_20.svg │ │ │ │ │ ├── filter-circle_12.svg │ │ │ │ │ ├── filter-circle_16.svg │ │ │ │ │ ├── filter-circle_20.svg │ │ │ │ │ ├── filter_10.svg │ │ │ │ │ ├── filter_16.svg │ │ │ │ │ ├── filter_24.svg │ │ │ │ │ ├── filter_32.svg │ │ │ │ │ ├── filter_8.svg │ │ │ │ │ ├── fit-to-width_12.svg │ │ │ │ │ ├── fit-to-width_16.svg │ │ │ │ │ ├── fit-to-window-exit_12.svg │ │ │ │ │ ├── fit-to-window-exit_16.svg │ │ │ │ │ ├── fit-to-window_12.svg │ │ │ │ │ ├── fit-to-window_16.svg │ │ │ │ │ ├── flag-active_10.svg │ │ │ │ │ ├── flag-active_12.svg │ │ │ │ │ ├── flag-active_14.svg │ │ │ │ │ ├── flag-active_16.svg │ │ │ │ │ ├── flag-active_20.svg │ │ │ │ │ ├── flag-active_24.svg │ │ │ │ │ ├── flag-active_8.svg │ │ │ │ │ ├── flag-circle_16.svg │ │ │ │ │ ├── flag_10.svg │ │ │ │ │ ├── flag_12.svg │ │ │ │ │ ├── flag_14.svg │ │ │ │ │ ├── flag_16.svg │ │ │ │ │ ├── flag_20.svg │ │ │ │ │ ├── flag_24.svg │ │ │ │ │ ├── flag_64.svg │ │ │ │ │ ├── flag_8.svg │ │ │ │ │ ├── flow_16.svg │ │ │ │ │ ├── flow_32.svg │ │ │ │ │ ├── focus-3-day_24.svg │ │ │ │ │ ├── focus-day_24.svg │ │ │ │ │ ├── focus-month_24.svg │ │ │ │ │ ├── focus-upcoming_24.svg │ │ │ │ │ ├── focus-week_24.svg │ │ │ │ │ ├── folder-edit_24.svg │ │ │ │ │ ├── folder-lock_24.svg │ │ │ │ │ ├── folder-view_24.svg │ │ │ │ │ ├── font-family_12.svg │ │ │ │ │ ├── font-family_16.svg │ │ │ │ │ ├── forward-message_10.svg │ │ │ │ │ ├── forward-message_12.svg │ │ │ │ │ ├── forward-message_16.svg │ │ │ │ │ ├── forward-message_20.svg │ │ │ │ │ ├── four-way-navigation_20.svg │ │ │ │ │ ├── four-way-navigation_24.svg │ │ │ │ │ ├── fullscreen-c-native-macOS_14.svg │ │ │ │ │ ├── fullscreen-exit_12.svg │ │ │ │ │ ├── fullscreen-exit_16.svg │ │ │ │ │ ├── fullscreen_12.svg │ │ │ │ │ ├── fullscreen_16.svg │ │ │ │ │ ├── generic-device-video_12.svg │ │ │ │ │ ├── generic-device-video_14.svg │ │ │ │ │ ├── generic-device-video_16.svg │ │ │ │ │ ├── generic-device-video_20.svg │ │ │ │ │ ├── generic-device_12.svg │ │ │ │ │ ├── generic-device_14.svg │ │ │ │ │ ├── generic-device_16.svg │ │ │ │ │ ├── generic-device_20.svg │ │ │ │ │ ├── generic-device_24.svg │ │ │ │ │ ├── generic-device_28.svg │ │ │ │ │ ├── generic-device_32.svg │ │ │ │ │ ├── generic-device_48.svg │ │ │ │ │ ├── generic-voice-command_24.svg │ │ │ │ │ ├── gif_12.svg │ │ │ │ │ ├── gif_16.svg │ │ │ │ │ ├── gif_20.svg │ │ │ │ │ ├── gif_24.svg │ │ │ │ │ ├── github-circle_24.svg │ │ │ │ │ ├── github-circle_32.svg │ │ │ │ │ ├── github-circle_40.svg │ │ │ │ │ ├── google_16.svg │ │ │ │ │ ├── guest-issuer_36.svg │ │ │ │ │ ├── guest-issuer_56.svg │ │ │ │ │ ├── handset-active_10.svg │ │ │ │ │ ├── handset-active_12.svg │ │ │ │ │ ├── handset-active_14.svg │ │ │ │ │ ├── handset-active_16.svg │ │ │ │ │ ├── handset-active_18.svg │ │ │ │ │ ├── handset-active_20.svg │ │ │ │ │ ├── handset-active_24.svg │ │ │ │ │ ├── handset-active_26.svg │ │ │ │ │ ├── handset-active_28.svg │ │ │ │ │ ├── handset-active_32.svg │ │ │ │ │ ├── handset-active_36.svg │ │ │ │ │ ├── handset-active_40.svg │ │ │ │ │ ├── handset-active_48.svg │ │ │ │ │ ├── handset-active_56.svg │ │ │ │ │ ├── handset-active_64.svg │ │ │ │ │ ├── handset-active_8.svg │ │ │ │ │ ├── handset-alert_20.svg │ │ │ │ │ ├── handset-alert_24.svg │ │ │ │ │ ├── handset-muted_12.svg │ │ │ │ │ ├── handset-muted_14.svg │ │ │ │ │ ├── handset-muted_16.svg │ │ │ │ │ ├── handset-muted_20.svg │ │ │ │ │ ├── handset-muted_24.svg │ │ │ │ │ ├── handset-muted_64.svg │ │ │ │ │ ├── handset-presence-active_14.svg │ │ │ │ │ ├── handset-presence-active_24.svg │ │ │ │ │ ├── handset-presence-stroke_10.svg │ │ │ │ │ ├── handset-presence-stroke_14.svg │ │ │ │ │ ├── handset-presence-stroke_16.svg │ │ │ │ │ ├── handset-presence-stroke_26.svg │ │ │ │ │ ├── handset-presence-stroke_30.svg │ │ │ │ │ ├── handset-presence_12.svg │ │ │ │ │ ├── handset-presence_14.svg │ │ │ │ │ ├── handset-presence_24.svg │ │ │ │ │ ├── handset-presence_28.svg │ │ │ │ │ ├── handset-presence_8.svg │ │ │ │ │ ├── handset_10.svg │ │ │ │ │ ├── handset_12.svg │ │ │ │ │ ├── handset_120.svg │ │ │ │ │ ├── handset_124.svg │ │ │ │ │ ├── handset_14.svg │ │ │ │ │ ├── handset_16.svg │ │ │ │ │ ├── handset_18.svg │ │ │ │ │ ├── handset_20.svg │ │ │ │ │ ├── handset_24.svg │ │ │ │ │ ├── handset_26.svg │ │ │ │ │ ├── handset_28.svg │ │ │ │ │ ├── handset_32.svg │ │ │ │ │ ├── handset_36.svg │ │ │ │ │ ├── handset_40.svg │ │ │ │ │ ├── handset_48.svg │ │ │ │ │ ├── handset_56.svg │ │ │ │ │ ├── handset_64.svg │ │ │ │ │ ├── handset_8.svg │ │ │ │ │ ├── handshake_14.svg │ │ │ │ │ ├── hd-badge_28.svg │ │ │ │ │ ├── headset-alert_12.svg │ │ │ │ │ ├── headset-muted-alert_12.svg │ │ │ │ │ ├── headset-muted-private_12.svg │ │ │ │ │ ├── headset-muted_12.svg │ │ │ │ │ ├── headset-muted_16.svg │ │ │ │ │ ├── headset-muted_24.svg │ │ │ │ │ ├── headset-muted_32.svg │ │ │ │ │ ├── headset-muted_48.svg │ │ │ │ │ ├── headset-private_12.svg │ │ │ │ │ ├── headset-selected_20.svg │ │ │ │ │ ├── headset_12.svg │ │ │ │ │ ├── headset_14.svg │ │ │ │ │ ├── headset_16.svg │ │ │ │ │ ├── headset_18.svg │ │ │ │ │ ├── headset_20.svg │ │ │ │ │ ├── headset_24.svg │ │ │ │ │ ├── headset_32.svg │ │ │ │ │ ├── headset_36.svg │ │ │ │ │ ├── headset_48.svg │ │ │ │ │ ├── headset_8.svg │ │ │ │ │ ├── help-circle-active_12.svg │ │ │ │ │ ├── help-circle-active_16.svg │ │ │ │ │ ├── help-circle-active_20.svg │ │ │ │ │ ├── help-circle-active_24.svg │ │ │ │ │ ├── help-circle-active_36.svg │ │ │ │ │ ├── help-circle-active_44.svg │ │ │ │ │ ├── help-circle-active_72.svg │ │ │ │ │ ├── help-circle_12.svg │ │ │ │ │ ├── help-circle_14.svg │ │ │ │ │ ├── help-circle_16.svg │ │ │ │ │ ├── help-circle_20.svg │ │ │ │ │ ├── help-circle_24.svg │ │ │ │ │ ├── help-circle_36.svg │ │ │ │ │ ├── help-circle_44.svg │ │ │ │ │ ├── help-circle_72.svg │ │ │ │ │ ├── help_10.svg │ │ │ │ │ ├── help_12.svg │ │ │ │ │ ├── help_16.svg │ │ │ │ │ ├── help_20.svg │ │ │ │ │ ├── help_24.svg │ │ │ │ │ ├── help_8.svg │ │ │ │ │ ├── hide_10.svg │ │ │ │ │ ├── hide_12.svg │ │ │ │ │ ├── hide_16.svg │ │ │ │ │ ├── hide_20.svg │ │ │ │ │ ├── hide_24.svg │ │ │ │ │ ├── home-active_16.svg │ │ │ │ │ ├── home-active_20.svg │ │ │ │ │ ├── home-active_24.svg │ │ │ │ │ ├── home-active_32.svg │ │ │ │ │ ├── home_16.svg │ │ │ │ │ ├── home_20.svg │ │ │ │ │ ├── home_24.svg │ │ │ │ │ ├── home_32.svg │ │ │ │ │ ├── horizontal-line_12.svg │ │ │ │ │ ├── horizontal-line_16.svg │ │ │ │ │ ├── horizontal-line_24.svg │ │ │ │ │ ├── house_16.svg │ │ │ │ │ ├── house_20.svg │ │ │ │ │ ├── house_24.svg │ │ │ │ │ ├── house_32.svg │ │ │ │ │ ├── humidity_14.svg │ │ │ │ │ ├── hunt-group_12.svg │ │ │ │ │ ├── hunt-group_14.svg │ │ │ │ │ ├── hunt-group_16.svg │ │ │ │ │ ├── hunt-group_18.svg │ │ │ │ │ ├── hunt-group_20.svg │ │ │ │ │ ├── hunt-group_24.svg │ │ │ │ │ ├── import_12.svg │ │ │ │ │ ├── import_16.svg │ │ │ │ │ ├── import_24.svg │ │ │ │ │ ├── incoming-call-active_12.svg │ │ │ │ │ ├── incoming-call-active_16.svg │ │ │ │ │ ├── incoming-call-legacy_12.svg │ │ │ │ │ ├── incoming-call-legacy_16.svg │ │ │ │ │ ├── incoming-call-legacy_20.svg │ │ │ │ │ ├── incoming-call-legacy_36.svg │ │ │ │ │ ├── incoming-call-selected_20.svg │ │ │ │ │ ├── incoming-call-selected_24.svg │ │ │ │ │ ├── indeterminate-circle-active_16.svg │ │ │ │ │ ├── info-active_12.svg │ │ │ │ │ ├── info-active_16.svg │ │ │ │ │ ├── info-active_18.svg │ │ │ │ │ ├── info-active_20.svg │ │ │ │ │ ├── info-active_24.svg │ │ │ │ │ ├── info-active_28.svg │ │ │ │ │ ├── info-active_32.svg │ │ │ │ │ ├── info-active_40.svg │ │ │ │ │ ├── info-active_44.svg │ │ │ │ │ ├── info-active_72.svg │ │ │ │ │ ├── info-i_10.svg │ │ │ │ │ ├── info-i_12.svg │ │ │ │ │ ├── info-i_20.svg │ │ │ │ │ ├── info-i_8.svg │ │ │ │ │ ├── info_12.svg │ │ │ │ │ ├── info_14.svg │ │ │ │ │ ├── info_16.svg │ │ │ │ │ ├── info_18.svg │ │ │ │ │ ├── info_20.svg │ │ │ │ │ ├── info_24.svg │ │ │ │ │ ├── info_28.svg │ │ │ │ │ ├── info_32.svg │ │ │ │ │ ├── info_40.svg │ │ │ │ │ ├── info_44.svg │ │ │ │ │ ├── info_72.svg │ │ │ │ │ ├── info_8.svg │ │ │ │ │ ├── input_10.svg │ │ │ │ │ ├── input_12.svg │ │ │ │ │ ├── input_14.svg │ │ │ │ │ ├── input_16.svg │ │ │ │ │ ├── input_24.svg │ │ │ │ │ ├── input_26.svg │ │ │ │ │ ├── input_28.svg │ │ │ │ │ ├── input_36.svg │ │ │ │ │ ├── input_8.svg │ │ │ │ │ ├── instagram-circle_24.svg │ │ │ │ │ ├── instagram-circle_32.svg │ │ │ │ │ ├── integrations_16.svg │ │ │ │ │ ├── integrations_24.svg │ │ │ │ │ ├── invited-user_16.svg │ │ │ │ │ ├── invited-user_32.svg │ │ │ │ │ ├── invited-user_56.svg │ │ │ │ │ ├── jabber-hub_16.svg │ │ │ │ │ ├── jabber_14.svg │ │ │ │ │ ├── jabber_16.svg │ │ │ │ │ ├── join-audio_12.svg │ │ │ │ │ ├── join-audio_16.svg │ │ │ │ │ ├── join-audio_20.svg │ │ │ │ │ ├── join-audio_24.svg │ │ │ │ │ ├── keyboard-close_16.svg │ │ │ │ │ ├── keyboard-close_24.svg │ │ │ │ │ ├── keyboard_16.svg │ │ │ │ │ ├── keyboard_20.svg │ │ │ │ │ ├── keyboard_24.svg │ │ │ │ │ ├── keyboard_28.svg │ │ │ │ │ ├── language_12.svg │ │ │ │ │ ├── language_16.svg │ │ │ │ │ ├── language_20.svg │ │ │ │ │ ├── language_24.svg │ │ │ │ │ ├── language_28.svg │ │ │ │ │ ├── language_40.svg │ │ │ │ │ ├── laptop_12.svg │ │ │ │ │ ├── laptop_16.svg │ │ │ │ │ ├── laptop_20.svg │ │ │ │ │ ├── laptop_24.svg │ │ │ │ │ ├── laptop_48.svg │ │ │ │ │ ├── laptop_72.svg │ │ │ │ │ ├── laser-pointer_16.svg │ │ │ │ │ ├── launch_12.svg │ │ │ │ │ ├── launch_16.svg │ │ │ │ │ ├── launch_20.svg │ │ │ │ │ ├── launch_32.svg │ │ │ │ │ ├── layout-equal-dual_12.svg │ │ │ │ │ ├── layout-equal-dual_16.svg │ │ │ │ │ ├── layout-equal-dual_20.svg │ │ │ │ │ ├── layout-equal-dual_24.svg │ │ │ │ │ ├── layout-side-by-side-horizonal_16.svg │ │ │ │ │ ├── layout-side-by-side-vertical_12.svg │ │ │ │ │ ├── layout-side-by-side-vertical_16.svg │ │ │ │ │ ├── layout-side-by-side-vertical_24.svg │ │ │ │ │ ├── layout-stacked_16.svg │ │ │ │ │ ├── like_16.svg │ │ │ │ │ ├── like_24.svg │ │ │ │ │ ├── link_10.svg │ │ │ │ │ ├── link_12.svg │ │ │ │ │ ├── link_14.svg │ │ │ │ │ ├── link_16.svg │ │ │ │ │ ├── link_18.svg │ │ │ │ │ ├── link_20.svg │ │ │ │ │ ├── link_24.svg │ │ │ │ │ ├── linkedin-circle_24.svg │ │ │ │ │ ├── linkedin-circle_32.svg │ │ │ │ │ ├── linkedin-circle_40.svg │ │ │ │ │ ├── linkedin_16.svg │ │ │ │ │ ├── list-menu_12.svg │ │ │ │ │ ├── list-menu_16.svg │ │ │ │ │ ├── list-menu_18.svg │ │ │ │ │ ├── list-menu_20.svg │ │ │ │ │ ├── list-menu_24.svg │ │ │ │ │ ├── list-menu_28.svg │ │ │ │ │ ├── location_10.svg │ │ │ │ │ ├── location_16.svg │ │ │ │ │ ├── location_18.svg │ │ │ │ │ ├── location_20.svg │ │ │ │ │ ├── location_24.svg │ │ │ │ │ ├── location_28.svg │ │ │ │ │ ├── location_32.svg │ │ │ │ │ ├── lock_10.svg │ │ │ │ │ ├── lock_12.svg │ │ │ │ │ ├── lock_8.svg │ │ │ │ │ ├── lower-hand_12.svg │ │ │ │ │ ├── lower-hand_16.svg │ │ │ │ │ ├── lower-hand_20.svg │ │ │ │ │ ├── mark-as-unread_12.svg │ │ │ │ │ ├── mark-as-unread_20.svg │ │ │ │ │ ├── markdown_16.svg │ │ │ │ │ ├── markdown_20.svg │ │ │ │ │ ├── marker_12.svg │ │ │ │ │ ├── marker_14.svg │ │ │ │ │ ├── marker_16.svg │ │ │ │ │ ├── marker_18.svg │ │ │ │ │ ├── maximize_12.svg │ │ │ │ │ ├── maximize_14.svg │ │ │ │ │ ├── maximize_16.svg │ │ │ │ │ ├── maximize_20.svg │ │ │ │ │ ├── maximize_24.svg │ │ │ │ │ ├── maximize_28.svg │ │ │ │ │ ├── meet-end_16.svg │ │ │ │ │ ├── meet_10.svg │ │ │ │ │ ├── meet_12.svg │ │ │ │ │ ├── meet_120.svg │ │ │ │ │ ├── meet_124.svg │ │ │ │ │ ├── meet_14.svg │ │ │ │ │ ├── meet_16.svg │ │ │ │ │ ├── meet_18.svg │ │ │ │ │ ├── meet_20.svg │ │ │ │ │ ├── meet_24.svg │ │ │ │ │ ├── meet_26.svg │ │ │ │ │ ├── meet_32.svg │ │ │ │ │ ├── meet_48.svg │ │ │ │ │ ├── meet_56.svg │ │ │ │ │ ├── meeting-controls_16.svg │ │ │ │ │ ├── meetings-active_10.svg │ │ │ │ │ ├── meetings-active_12.svg │ │ │ │ │ ├── meetings-active_14.svg │ │ │ │ │ ├── meetings-active_16.svg │ │ │ │ │ ├── meetings-active_18.svg │ │ │ │ │ ├── meetings-active_20.svg │ │ │ │ │ ├── meetings-active_24.svg │ │ │ │ │ ├── meetings-active_26.svg │ │ │ │ │ ├── meetings-active_28.svg │ │ │ │ │ ├── meetings-active_32.svg │ │ │ │ │ ├── meetings-active_36.svg │ │ │ │ │ ├── meetings-active_8.svg │ │ │ │ │ ├── meetings-presence-stroke_10.svg │ │ │ │ │ ├── meetings-presence-stroke_14.svg │ │ │ │ │ ├── meetings-presence-stroke_16.svg │ │ │ │ │ ├── meetings-presence-stroke_26.svg │ │ │ │ │ ├── meetings-presence-stroke_30.svg │ │ │ │ │ ├── meetings-presence_12.svg │ │ │ │ │ ├── meetings-presence_14.svg │ │ │ │ │ ├── meetings-presence_24.svg │ │ │ │ │ ├── meetings-presence_28.svg │ │ │ │ │ ├── meetings-presence_8.svg │ │ │ │ │ ├── meetings_10.svg │ │ │ │ │ ├── meetings_12.svg │ │ │ │ │ ├── meetings_14.svg │ │ │ │ │ ├── meetings_16.svg │ │ │ │ │ ├── meetings_18.svg │ │ │ │ │ ├── meetings_20.svg │ │ │ │ │ ├── meetings_24.svg │ │ │ │ │ ├── meetings_26.svg │ │ │ │ │ ├── meetings_28.svg │ │ │ │ │ ├── meetings_32.svg │ │ │ │ │ ├── meetings_36.svg │ │ │ │ │ ├── meetings_8.svg │ │ │ │ │ ├── mention_10.svg │ │ │ │ │ ├── mention_12.svg │ │ │ │ │ ├── mention_14.svg │ │ │ │ │ ├── mention_16.svg │ │ │ │ │ ├── mention_18.svg │ │ │ │ │ ├── mention_20.svg │ │ │ │ │ ├── mention_24.svg │ │ │ │ │ ├── mention_8.svg │ │ │ │ │ ├── messenger_12.svg │ │ │ │ │ ├── messenger_16.svg │ │ │ │ │ ├── microphone-muted_10.svg │ │ │ │ │ ├── microphone-muted_12.svg │ │ │ │ │ ├── microphone-muted_14.svg │ │ │ │ │ ├── microphone-muted_16.svg │ │ │ │ │ ├── microphone-muted_18.svg │ │ │ │ │ ├── microphone-muted_20.svg │ │ │ │ │ ├── microphone-muted_24.svg │ │ │ │ │ ├── microphone-muted_28.svg │ │ │ │ │ ├── microphone-muted_32.svg │ │ │ │ │ ├── microphone-muted_36.svg │ │ │ │ │ ├── microphone-muted_8.svg │ │ │ │ │ ├── microphone-on_16.svg │ │ │ │ │ ├── microphone-on_20.svg │ │ │ │ │ ├── microphone-on_24.svg │ │ │ │ │ ├── microphone_10.svg │ │ │ │ │ ├── microphone_12.svg │ │ │ │ │ ├── microphone_14.svg │ │ │ │ │ ├── microphone_16.svg │ │ │ │ │ ├── microphone_18.svg │ │ │ │ │ ├── microphone_20.svg │ │ │ │ │ ├── microphone_24.svg │ │ │ │ │ ├── microphone_28.svg │ │ │ │ │ ├── microphone_36.svg │ │ │ │ │ ├── microphone_8.svg │ │ │ │ │ ├── mind-map_24.svg │ │ │ │ │ ├── minimize_12.svg │ │ │ │ │ ├── minimize_14.svg │ │ │ │ │ ├── minimize_16.svg │ │ │ │ │ ├── minimize_20.svg │ │ │ │ │ ├── minimize_24.svg │ │ │ │ │ ├── minimize_28.svg │ │ │ │ │ ├── minus_12.svg │ │ │ │ │ ├── minus_14.svg │ │ │ │ │ ├── minus_16.svg │ │ │ │ │ ├── minus_18.svg │ │ │ │ │ ├── minus_20.svg │ │ │ │ │ ├── minus_24.svg │ │ │ │ │ ├── minus_28.svg │ │ │ │ │ ├── minus_8.svg │ │ │ │ │ ├── mirror_12.svg │ │ │ │ │ ├── mirror_16.svg │ │ │ │ │ ├── moderator_16.svg │ │ │ │ │ ├── moderator_56.svg │ │ │ │ │ ├── moderator_80.svg │ │ │ │ │ ├── more-adr_12.svg │ │ │ │ │ ├── more-adr_16.svg │ │ │ │ │ ├── more-adr_20.svg │ │ │ │ │ ├── more-adr_24.svg │ │ │ │ │ ├── more-adr_28.svg │ │ │ │ │ ├── more-android_12.svg │ │ │ │ │ ├── more-android_16.svg │ │ │ │ │ ├── more-android_20.svg │ │ │ │ │ ├── more-android_24.svg │ │ │ │ │ ├── more-android_28.svg │ │ │ │ │ ├── more-circle_12.svg │ │ │ │ │ ├── more-circle_140.svg │ │ │ │ │ ├── more-circle_16.svg │ │ │ │ │ ├── more_10.svg │ │ │ │ │ ├── more_12.svg │ │ │ │ │ ├── more_14.svg │ │ │ │ │ ├── more_16.svg │ │ │ │ │ ├── more_18.svg │ │ │ │ │ ├── more_20.svg │ │ │ │ │ ├── more_24.svg │ │ │ │ │ ├── more_28.svg │ │ │ │ │ ├── mouse-cursor_16.svg │ │ │ │ │ ├── move-call-in-adr_12.svg │ │ │ │ │ ├── move-call-in-adr_16.svg │ │ │ │ │ ├── move-call-in-adr_18.svg │ │ │ │ │ ├── move-call-in-adr_20.svg │ │ │ │ │ ├── move-call-in-adr_24.svg │ │ │ │ │ ├── move-call-in-adr_28.svg │ │ │ │ │ ├── move-call-in-iph_12.svg │ │ │ │ │ ├── move-call-in-iph_16.svg │ │ │ │ │ ├── move-call-in-iph_18.svg │ │ │ │ │ ├── move-call-in-iph_20.svg │ │ │ │ │ ├── move-call-in-iph_24.svg │ │ │ │ │ ├── move-call-in-iph_28.svg │ │ │ │ │ ├── move-call-in-laptop_12.svg │ │ │ │ │ ├── move-call-in-laptop_16.svg │ │ │ │ │ ├── move-call-in-laptop_18.svg │ │ │ │ │ ├── move-call-in-laptop_20.svg │ │ │ │ │ ├── move-call-in-laptop_24.svg │ │ │ │ │ ├── move-call-in-laptop_28.svg │ │ │ │ │ ├── move-call-in-out-adr_28.svg │ │ │ │ │ ├── move-call-in-out-iph_28.svg │ │ │ │ │ ├── move-call-in-tablet_12.svg │ │ │ │ │ ├── move-call-in-tablet_18.svg │ │ │ │ │ ├── move-call-in-tablet_20.svg │ │ │ │ │ ├── move-call-in-tablet_24.svg │ │ │ │ │ ├── move-call-in-tablet_28.svg │ │ │ │ │ ├── move-call-out-adr_12.svg │ │ │ │ │ ├── move-call-out-adr_16.svg │ │ │ │ │ ├── move-call-out-adr_18.svg │ │ │ │ │ ├── move-call-out-adr_20.svg │ │ │ │ │ ├── move-call-out-adr_24.svg │ │ │ │ │ ├── move-call-out-adr_28.svg │ │ │ │ │ ├── move-call-out-iph_12.svg │ │ │ │ │ ├── move-call-out-iph_16.svg │ │ │ │ │ ├── move-call-out-iph_18.svg │ │ │ │ │ ├── move-call-out-iph_20.svg │ │ │ │ │ ├── move-call-out-iph_24.svg │ │ │ │ │ ├── move-call-out-iph_28.svg │ │ │ │ │ ├── move-call-out-laptop_12.svg │ │ │ │ │ ├── move-call-out-laptop_16.svg │ │ │ │ │ ├── move-call-out-laptop_18.svg │ │ │ │ │ ├── move-call-out-laptop_20.svg │ │ │ │ │ ├── move-call-out-laptop_24.svg │ │ │ │ │ ├── move-call-out-laptop_28.svg │ │ │ │ │ ├── move-call-out-tablet_12.svg │ │ │ │ │ ├── move-call-out-tablet_18.svg │ │ │ │ │ ├── move-call-out-tablet_20.svg │ │ │ │ │ ├── move-call-out-tablet_24.svg │ │ │ │ │ ├── move-call-out-tablet_28.svg │ │ │ │ │ ├── multiline-chart_16.svg │ │ │ │ │ ├── multimedia_16.svg │ │ │ │ │ ├── multimedia_20.svg │ │ │ │ │ ├── multiple-devices_16.svg │ │ │ │ │ ├── multiple-devices_20.svg │ │ │ │ │ ├── multiple-devices_24.svg │ │ │ │ │ ├── multiple-devices_28.svg │ │ │ │ │ ├── multiple-devices_64.svg │ │ │ │ │ ├── music-mode_12.svg │ │ │ │ │ ├── music-mode_16.svg │ │ │ │ │ ├── music-mode_8.svg │ │ │ │ │ ├── mute-on-entry_16.svg │ │ │ │ │ ├── new-voicemail_16.svg │ │ │ │ │ ├── new-voicemail_20.svg │ │ │ │ │ ├── new-voicemail_24.svg │ │ │ │ │ ├── new-whiteboard_12.svg │ │ │ │ │ ├── new-whiteboard_16.svg │ │ │ │ │ ├── next_10.svg │ │ │ │ │ ├── next_12.svg │ │ │ │ │ ├── next_16.svg │ │ │ │ │ ├── next_18.svg │ │ │ │ │ ├── next_20.svg │ │ │ │ │ ├── next_24.svg │ │ │ │ │ ├── next_28.svg │ │ │ │ │ ├── next_36.svg │ │ │ │ │ ├── no-devices_28.svg │ │ │ │ │ ├── no-phone-warning_20.svg │ │ │ │ │ ├── no-phone-warning_24.svg │ │ │ │ │ ├── note-ppt_16.svg │ │ │ │ │ ├── note-ppt_20.svg │ │ │ │ │ ├── note_16.svg │ │ │ │ │ ├── note_20.svg │ │ │ │ │ ├── note_24.svg │ │ │ │ │ ├── notepad_16.svg │ │ │ │ │ ├── notes_10.svg │ │ │ │ │ ├── notes_12.svg │ │ │ │ │ ├── notes_14.svg │ │ │ │ │ ├── notes_16.svg │ │ │ │ │ ├── notes_20.svg │ │ │ │ │ ├── notes_24.svg │ │ │ │ │ ├── notes_26.svg │ │ │ │ │ ├── notes_28.svg │ │ │ │ │ ├── notes_36.svg │ │ │ │ │ ├── notes_8.svg │ │ │ │ │ ├── open-in-folder_10.svg │ │ │ │ │ ├── open-in-folder_12.svg │ │ │ │ │ ├── open-in-folder_14.svg │ │ │ │ │ ├── open-in-folder_16.svg │ │ │ │ │ ├── open-in-folder_20.svg │ │ │ │ │ ├── open-pages_12.svg │ │ │ │ │ ├── open-pages_14.svg │ │ │ │ │ ├── open-pages_16.svg │ │ │ │ │ ├── open-pages_24.svg │ │ │ │ │ ├── open-pages_36.svg │ │ │ │ │ ├── other-number-warning_16.svg │ │ │ │ │ ├── other-number_12.svg │ │ │ │ │ ├── other-number_14.svg │ │ │ │ │ ├── other-number_16.svg │ │ │ │ │ ├── other-number_20.svg │ │ │ │ │ ├── outgoing-call-active_12.svg │ │ │ │ │ ├── outgoing-call-active_16.svg │ │ │ │ │ ├── outgoing-call-legacy_12.svg │ │ │ │ │ ├── outgoing-call-legacy_16.svg │ │ │ │ │ ├── outgoing-call-legacy_20.svg │ │ │ │ │ ├── outgoing-call-legacy_36.svg │ │ │ │ │ ├── outgoing-call-selected_20.svg │ │ │ │ │ ├── outgoing-call-selected_24.svg │ │ │ │ │ ├── overflow-left_16.svg │ │ │ │ │ ├── overflow-right_16.svg │ │ │ │ │ ├── paired-camera_16.svg │ │ │ │ │ ├── paired-camera_24.svg │ │ │ │ │ ├── paired-camera_28.svg │ │ │ │ │ ├── paired-device_16.svg │ │ │ │ │ ├── paired-device_24.svg │ │ │ │ │ ├── paired-device_56.svg │ │ │ │ │ ├── paired-device_96.svg │ │ │ │ │ ├── paired-handset_16.svg │ │ │ │ │ ├── paired-handset_24.svg │ │ │ │ │ ├── pairing_14.svg │ │ │ │ │ ├── pairing_16.svg │ │ │ │ │ ├── pairing_20.svg │ │ │ │ │ ├── pairing_24.svg │ │ │ │ │ ├── pairing_28.svg │ │ │ │ │ ├── pairing_56.svg │ │ │ │ │ ├── panel-control-bar_36.svg │ │ │ │ │ ├── panel-control-down-iph_12.svg │ │ │ │ │ ├── panel-control-down-iph_24.svg │ │ │ │ │ ├── panel-control-down-iph_36.svg │ │ │ │ │ ├── panel-control-down_12.svg │ │ │ │ │ ├── panel-control-down_24.svg │ │ │ │ │ ├── panel-control-down_28.svg │ │ │ │ │ ├── panel-control-down_36.svg │ │ │ │ │ ├── panel-control-dragger_14.svg │ │ │ │ │ ├── panel-control-dragger_16.svg │ │ │ │ │ ├── panel-control-left-iph_12.svg │ │ │ │ │ ├── panel-control-left-iph_24.svg │ │ │ │ │ ├── panel-control-left-iph_36.svg │ │ │ │ │ ├── panel-control-left_12.svg │ │ │ │ │ ├── panel-control-left_16.svg │ │ │ │ │ ├── panel-control-left_24.svg │ │ │ │ │ ├── panel-control-left_36.svg │ │ │ │ │ ├── panel-control-right-iph_12.svg │ │ │ │ │ ├── panel-control-right-iph_24.svg │ │ │ │ │ ├── panel-control-right-iph_36.svg │ │ │ │ │ ├── panel-control-right_12.svg │ │ │ │ │ ├── panel-control-right_16.svg │ │ │ │ │ ├── panel-control-right_24.svg │ │ │ │ │ ├── panel-control-right_36.svg │ │ │ │ │ ├── panel-control-thin-down_12.svg │ │ │ │ │ ├── panel-control-thin-down_24.svg │ │ │ │ │ ├── panel-control-thin-down_28.svg │ │ │ │ │ ├── panel-control-thin-left_12.svg │ │ │ │ │ ├── panel-control-thin-left_24.svg │ │ │ │ │ ├── panel-control-thin-right_12.svg │ │ │ │ │ ├── panel-control-thin-right_24.svg │ │ │ │ │ ├── panel-control-thin-up_12.svg │ │ │ │ │ ├── panel-control-thin-up_24.svg │ │ │ │ │ ├── panel-control-thin-up_28.svg │ │ │ │ │ ├── panel-control-thinner-left_24.svg │ │ │ │ │ ├── panel-control-thinner-right_24.svg │ │ │ │ │ ├── panel-control-up-iph_12.svg │ │ │ │ │ ├── panel-control-up-iph_24.svg │ │ │ │ │ ├── panel-control-up-iph_36.svg │ │ │ │ │ ├── panel-control-up_12.svg │ │ │ │ │ ├── panel-control-up_24.svg │ │ │ │ │ ├── panel-control-up_28.svg │ │ │ │ │ ├── panel-control-up_36.svg │ │ │ │ │ ├── parked_16.svg │ │ │ │ │ ├── parked_20.svg │ │ │ │ │ ├── parked_24.svg │ │ │ │ │ ├── parse_16.svg │ │ │ │ │ ├── parse_20.svg │ │ │ │ │ ├── participant-add_12.svg │ │ │ │ │ ├── participant-add_14.svg │ │ │ │ │ ├── participant-add_16.svg │ │ │ │ │ ├── participant-add_20.svg │ │ │ │ │ ├── participant-add_24.svg │ │ │ │ │ ├── participant-add_28.svg │ │ │ │ │ ├── participant-add_56.svg │ │ │ │ │ ├── participant-blocked_12.svg │ │ │ │ │ ├── participant-blocked_14.svg │ │ │ │ │ ├── participant-list-legacy-optical_16.svg │ │ │ │ │ ├── participant-list-legacy-optical_20.svg │ │ │ │ │ ├── participant-list-legacy-optical_22.svg │ │ │ │ │ ├── participant-list-legacy-optical_26.svg │ │ │ │ │ ├── participant-list-legacy-optical_28.svg │ │ │ │ │ ├── participant-list-legacy-optical_32.svg │ │ │ │ │ ├── participant-list-legacy-optical_56.svg │ │ │ │ │ ├── participant-list-legacy-optical_64.svg │ │ │ │ │ ├── participant-list-legacy-optical_80.svg │ │ │ │ │ ├── participant-list-legacy_16.svg │ │ │ │ │ ├── participant-list-legacy_20.svg │ │ │ │ │ ├── participant-list-legacy_24.svg │ │ │ │ │ ├── participant-list-legacy_28.svg │ │ │ │ │ ├── participant-list-legacy_32.svg │ │ │ │ │ ├── participant-list-legacy_56.svg │ │ │ │ │ ├── participant-list-legacy_64.svg │ │ │ │ │ ├── participant-list-legacy_80.svg │ │ │ │ │ ├── participant-list_12.svg │ │ │ │ │ ├── participant-list_14.svg │ │ │ │ │ ├── participant-list_16.svg │ │ │ │ │ ├── participant-list_18.svg │ │ │ │ │ ├── participant-list_20.svg │ │ │ │ │ ├── participant-list_22.svg │ │ │ │ │ ├── participant-list_24.svg │ │ │ │ │ ├── participant-list_26.svg │ │ │ │ │ ├── participant-list_28.svg │ │ │ │ │ ├── participant-list_32.svg │ │ │ │ │ ├── participant-list_56.svg │ │ │ │ │ ├── participant-list_64.svg │ │ │ │ │ ├── participant-list_80.svg │ │ │ │ │ ├── participant-remove_12.svg │ │ │ │ │ ├── participant-remove_14.svg │ │ │ │ │ ├── participant-remove_16.svg │ │ │ │ │ ├── participant-remove_20.svg │ │ │ │ │ ├── participant-remove_24.svg │ │ │ │ │ ├── participant-remove_28.svg │ │ │ │ │ ├── participant-remove_56.svg │ │ │ │ │ ├── participant-unknown_14.svg │ │ │ │ │ ├── pass-mouse_12.svg │ │ │ │ │ ├── pass-mouse_16.svg │ │ │ │ │ ├── pass-mouse_20.svg │ │ │ │ │ ├── pause-circle-active_16.svg │ │ │ │ │ ├── pause-circle-active_24.svg │ │ │ │ │ ├── pause-circle_12.svg │ │ │ │ │ ├── pause-circle_16.svg │ │ │ │ │ ├── pause-circle_20.svg │ │ │ │ │ ├── pause-circle_24.svg │ │ │ │ │ ├── pause_10.svg │ │ │ │ │ ├── pause_12.svg │ │ │ │ │ ├── pause_120.svg │ │ │ │ │ ├── pause_124.svg │ │ │ │ │ ├── pause_14.svg │ │ │ │ │ ├── pause_16.svg │ │ │ │ │ ├── pause_18.svg │ │ │ │ │ ├── pause_20.svg │ │ │ │ │ ├── pause_24.svg │ │ │ │ │ ├── pause_26.svg │ │ │ │ │ ├── pause_32.svg │ │ │ │ │ ├── pause_48.svg │ │ │ │ │ ├── pause_56.svg │ │ │ │ │ ├── pause_8.svg │ │ │ │ │ ├── pen_12.svg │ │ │ │ │ ├── pen_14.svg │ │ │ │ │ ├── pen_16.svg │ │ │ │ │ ├── pen_18.svg │ │ │ │ │ ├── pen_24.svg │ │ │ │ │ ├── pen_8.svg │ │ │ │ │ ├── people-active_10.svg │ │ │ │ │ ├── people-active_12.svg │ │ │ │ │ ├── people-active_14.svg │ │ │ │ │ ├── people-active_16.svg │ │ │ │ │ ├── people-active_18.svg │ │ │ │ │ ├── people-active_20.svg │ │ │ │ │ ├── people-active_24.svg │ │ │ │ │ ├── people-active_26.svg │ │ │ │ │ ├── people-active_28.svg │ │ │ │ │ ├── people-active_32.svg │ │ │ │ │ ├── people-active_36.svg │ │ │ │ │ ├── people-active_8.svg │ │ │ │ │ ├── people-circle_16.svg │ │ │ │ │ ├── people-circle_20.svg │ │ │ │ │ ├── people-circle_24.svg │ │ │ │ │ ├── people_10.svg │ │ │ │ │ ├── people_12.svg │ │ │ │ │ ├── people_120.svg │ │ │ │ │ ├── people_14.svg │ │ │ │ │ ├── people_16.svg │ │ │ │ │ ├── people_18.svg │ │ │ │ │ ├── people_20.svg │ │ │ │ │ ├── people_24.svg │ │ │ │ │ ├── people_26.svg │ │ │ │ │ ├── people_28.svg │ │ │ │ │ ├── people_32.svg │ │ │ │ │ ├── people_36.svg │ │ │ │ │ ├── people_8.svg │ │ │ │ │ ├── phone-adr_12.svg │ │ │ │ │ ├── phone-adr_16.svg │ │ │ │ │ ├── phone-adr_20.svg │ │ │ │ │ ├── phone-adr_24.svg │ │ │ │ │ ├── phone-android_12.svg │ │ │ │ │ ├── phone-android_16.svg │ │ │ │ │ ├── phone-android_24.svg │ │ │ │ │ ├── phone-ios-muted_12.svg │ │ │ │ │ ├── phone-ios_12.svg │ │ │ │ │ ├── phone-ios_16.svg │ │ │ │ │ ├── phone-ios_24.svg │ │ │ │ │ ├── phone-iph-alert_12.svg │ │ │ │ │ ├── phone-iph-muted-alert_12.svg │ │ │ │ │ ├── phone-iph-muted_12.svg │ │ │ │ │ ├── phone-iph-private_12.svg │ │ │ │ │ ├── phone-iph_12.svg │ │ │ │ │ ├── phone-iph_16.svg │ │ │ │ │ ├── phone-iph_20.svg │ │ │ │ │ ├── phone-iph_24.svg │ │ │ │ │ ├── phone-reply-all_16.svg │ │ │ │ │ ├── phone-reply-all_20.svg │ │ │ │ │ ├── phone-reply_16.svg │ │ │ │ │ ├── phone-reply_20.svg │ │ │ │ │ ├── picker_14.svg │ │ │ │ │ ├── picker_16.svg │ │ │ │ │ ├── picker_18.svg │ │ │ │ │ ├── picture-in-picture_12.svg │ │ │ │ │ ├── picture-in-picture_16.svg │ │ │ │ │ ├── picture-in-picture_20.svg │ │ │ │ │ ├── picture-in-picture_24.svg │ │ │ │ │ ├── pie-chart_16.svg │ │ │ │ │ ├── pin-active_20.svg │ │ │ │ │ ├── pin-list_12.svg │ │ │ │ │ ├── pin-list_16.svg │ │ │ │ │ ├── pin-list_20.svg │ │ │ │ │ ├── pin-muted_10.svg │ │ │ │ │ ├── pin-muted_12.svg │ │ │ │ │ ├── pin-muted_14.svg │ │ │ │ │ ├── pin-muted_16.svg │ │ │ │ │ ├── pin-muted_18.svg │ │ │ │ │ ├── pin-muted_20.svg │ │ │ │ │ ├── pin-muted_24.svg │ │ │ │ │ ├── pin_10.svg │ │ │ │ │ ├── pin_12.svg │ │ │ │ │ ├── pin_14.svg │ │ │ │ │ ├── pin_16.svg │ │ │ │ │ ├── pin_18.svg │ │ │ │ │ ├── pin_20.svg │ │ │ │ │ ├── pin_24.svg │ │ │ │ │ ├── placeholder_10.svg │ │ │ │ │ ├── placeholder_12.svg │ │ │ │ │ ├── placeholder_14.svg │ │ │ │ │ ├── placeholder_16.svg │ │ │ │ │ ├── placeholder_18.svg │ │ │ │ │ ├── placeholder_20.svg │ │ │ │ │ ├── placeholder_24.svg │ │ │ │ │ ├── placeholder_28.svg │ │ │ │ │ ├── placeholder_32.svg │ │ │ │ │ ├── placeholder_36.svg │ │ │ │ │ ├── placeholder_40.svg │ │ │ │ │ ├── placeholder_48.svg │ │ │ │ │ ├── placeholder_56.svg │ │ │ │ │ ├── placeholder_8.svg │ │ │ │ │ ├── play-circle_12.svg │ │ │ │ │ ├── play-circle_16.svg │ │ │ │ │ ├── play-circle_20.svg │ │ │ │ │ ├── play-circle_24.svg │ │ │ │ │ ├── play-circle_28.svg │ │ │ │ │ ├── play-circle_32.svg │ │ │ │ │ ├── play_12.svg │ │ │ │ │ ├── play_14.svg │ │ │ │ │ ├── play_16.svg │ │ │ │ │ ├── play_20.svg │ │ │ │ │ ├── play_24.svg │ │ │ │ │ ├── play_28.svg │ │ │ │ │ ├── play_32.svg │ │ │ │ │ ├── plug-ac_24.svg │ │ │ │ │ ├── plus-circle-active_12.svg │ │ │ │ │ ├── plus-circle-active_20.svg │ │ │ │ │ ├── plus-circle-active_24.svg │ │ │ │ │ ├── plus-circle_24.svg │ │ │ │ │ ├── plus_12.svg │ │ │ │ │ ├── plus_14.svg │ │ │ │ │ ├── plus_16.svg │ │ │ │ │ ├── plus_18.svg │ │ │ │ │ ├── plus_20.svg │ │ │ │ │ ├── plus_24.svg │ │ │ │ │ ├── plus_28.svg │ │ │ │ │ ├── plus_8.svg │ │ │ │ │ ├── pmr-legacy_10.svg │ │ │ │ │ ├── pmr-legacy_12.svg │ │ │ │ │ ├── pmr-legacy_14.svg │ │ │ │ │ ├── pmr-legacy_16.svg │ │ │ │ │ ├── pmr-legacy_18.svg │ │ │ │ │ ├── pmr-legacy_20.svg │ │ │ │ │ ├── pmr-legacy_24.svg │ │ │ │ │ ├── pmr-legacy_32.svg │ │ │ │ │ ├── pmr-legacy_36.svg │ │ │ │ │ ├── pmr_10.svg │ │ │ │ │ ├── pmr_12.svg │ │ │ │ │ ├── pmr_14.svg │ │ │ │ │ ├── pmr_16.svg │ │ │ │ │ ├── pmr_18.svg │ │ │ │ │ ├── pmr_20.svg │ │ │ │ │ ├── pmr_24.svg │ │ │ │ │ ├── pmr_32.svg │ │ │ │ │ ├── pmr_36.svg │ │ │ │ │ ├── poll_12.svg │ │ │ │ │ ├── poll_16.svg │ │ │ │ │ ├── poll_20.svg │ │ │ │ │ ├── poll_24.svg │ │ │ │ │ ├── poll_36.svg │ │ │ │ │ ├── pop-in_10.svg │ │ │ │ │ ├── pop-in_12.svg │ │ │ │ │ ├── pop-in_16.svg │ │ │ │ │ ├── pop-in_20.svg │ │ │ │ │ ├── pop-in_24.svg │ │ │ │ │ ├── pop-in_8.svg │ │ │ │ │ ├── pop-out_10.svg │ │ │ │ │ ├── pop-out_12.svg │ │ │ │ │ ├── pop-out_16.svg │ │ │ │ │ ├── pop-out_20.svg │ │ │ │ │ ├── pop-out_24.svg │ │ │ │ │ ├── pop-out_8.svg │ │ │ │ │ ├── pop-up_12.svg │ │ │ │ │ ├── pop-up_24.svg │ │ │ │ │ ├── power-ac_16.svg │ │ │ │ │ ├── power-apps_32.svg │ │ │ │ │ ├── presentation_16.svg │ │ │ │ │ ├── presentation_20.svg │ │ │ │ │ ├── presentation_24.svg │ │ │ │ │ ├── print_10.svg │ │ │ │ │ ├── print_12.svg │ │ │ │ │ ├── print_16.svg │ │ │ │ │ ├── priority-active_16.svg │ │ │ │ │ ├── priority_12.svg │ │ │ │ │ ├── priority_14.svg │ │ │ │ │ ├── priority_16.svg │ │ │ │ │ ├── priority_18.svg │ │ │ │ │ ├── priority_20.svg │ │ │ │ │ ├── priority_24.svg │ │ │ │ │ ├── priority_28.svg │ │ │ │ │ ├── priority_32.svg │ │ │ │ │ ├── priority_40.svg │ │ │ │ │ ├── priority_44.svg │ │ │ │ │ ├── priority_72.svg │ │ │ │ │ ├── privacy_16.svg │ │ │ │ │ ├── privacy_20.svg │ │ │ │ │ ├── private-circle-active_16.svg │ │ │ │ │ ├── private-circle-active_20.svg │ │ │ │ │ ├── private-circle-active_24.svg │ │ │ │ │ ├── private-circle_100.svg │ │ │ │ │ ├── private-circle_14.svg │ │ │ │ │ ├── private-circle_16.svg │ │ │ │ │ ├── private-circle_20.svg │ │ │ │ │ ├── private-circle_24.svg │ │ │ │ │ ├── private-circle_48.svg │ │ │ │ │ ├── private-circle_56.svg │ │ │ │ │ ├── private-circle_80.svg │ │ │ │ │ ├── private-meeting_12.svg │ │ │ │ │ ├── private-meeting_14.svg │ │ │ │ │ ├── private-meeting_16.svg │ │ │ │ │ ├── private-meeting_20.svg │ │ │ │ │ ├── private_10.svg │ │ │ │ │ ├── private_12.svg │ │ │ │ │ ├── private_14.svg │ │ │ │ │ ├── private_16.svg │ │ │ │ │ ├── private_20.svg │ │ │ │ │ ├── private_24.svg │ │ │ │ │ ├── private_28.svg │ │ │ │ │ ├── private_8.svg │ │ │ │ │ ├── pro-badge_28.svg │ │ │ │ │ ├── product-demo_16.svg │ │ │ │ │ ├── proximity-muted_12.svg │ │ │ │ │ ├── proximity-muted_16.svg │ │ │ │ │ ├── proximity-muted_24.svg │ │ │ │ │ ├── proximity-muted_28.svg │ │ │ │ │ ├── proximity-video_12.svg │ │ │ │ │ ├── proximity-video_14.svg │ │ │ │ │ ├── proximity-video_16.svg │ │ │ │ │ ├── proximity-video_20.svg │ │ │ │ │ ├── proximity-video_24.svg │ │ │ │ │ ├── proximity-video_26.svg │ │ │ │ │ ├── proximity_12.svg │ │ │ │ │ ├── proximity_16.svg │ │ │ │ │ ├── proximity_20.svg │ │ │ │ │ ├── proximity_24.svg │ │ │ │ │ ├── proximity_28.svg │ │ │ │ │ ├── pto_12.svg │ │ │ │ │ ├── pto_120.svg │ │ │ │ │ ├── pto_124.svg │ │ │ │ │ ├── pto_14.svg │ │ │ │ │ ├── pto_16.svg │ │ │ │ │ ├── pto_18.svg │ │ │ │ │ ├── pto_20.svg │ │ │ │ │ ├── pto_24.svg │ │ │ │ │ ├── pto_26.svg │ │ │ │ │ ├── pto_28.svg │ │ │ │ │ ├── pto_32.svg │ │ │ │ │ ├── pto_40.svg │ │ │ │ │ ├── pto_48.svg │ │ │ │ │ ├── pto_56.svg │ │ │ │ │ ├── pto_8.svg │ │ │ │ │ ├── pull-call_12.svg │ │ │ │ │ ├── pull-call_14.svg │ │ │ │ │ ├── pull-call_16.svg │ │ │ │ │ ├── pull-call_24.svg │ │ │ │ │ ├── q-a_16.svg │ │ │ │ │ ├── q-a_20.svg │ │ │ │ │ ├── q-a_24.svg │ │ │ │ │ ├── q-a_36.svg │ │ │ │ │ ├── quality_16.svg │ │ │ │ │ ├── quality_24.svg │ │ │ │ │ ├── queue-contact_14.svg │ │ │ │ │ ├── queue-contact_20.svg │ │ │ │ │ ├── queue-lookup_16.svg │ │ │ │ │ ├── queue_14.svg │ │ │ │ │ ├── queue_contact.svg │ │ │ │ │ ├── quiet_16.svg │ │ │ │ │ ├── quiet_20.svg │ │ │ │ │ ├── quiet_32.svg │ │ │ │ │ ├── quiet_8.svg │ │ │ │ │ ├── raise-hand_12.svg │ │ │ │ │ ├── raise-hand_16.svg │ │ │ │ │ ├── raise-hand_20.svg │ │ │ │ │ ├── raise-hand_24.svg │ │ │ │ │ ├── ram_16.svg │ │ │ │ │ ├── reactions_12.svg │ │ │ │ │ ├── reactions_16.svg │ │ │ │ │ ├── reactions_20.svg │ │ │ │ │ ├── recents-active_14.svg │ │ │ │ │ ├── recents-active_24.svg │ │ │ │ │ ├── recents-presence-stroke_10.svg │ │ │ │ │ ├── recents-presence-stroke_14.svg │ │ │ │ │ ├── recents-presence-stroke_16.svg │ │ │ │ │ ├── recents-presence-stroke_26.svg │ │ │ │ │ ├── recents-presence-stroke_30.svg │ │ │ │ │ ├── recents-presence_12.svg │ │ │ │ │ ├── recents-presence_14.svg │ │ │ │ │ ├── recents-presence_24.svg │ │ │ │ │ ├── recents-presence_28.svg │ │ │ │ │ ├── recents-presence_8.svg │ │ │ │ │ ├── recents_12.svg │ │ │ │ │ ├── recents_14.svg │ │ │ │ │ ├── recents_16.svg │ │ │ │ │ ├── recents_18.svg │ │ │ │ │ ├── recents_20.svg │ │ │ │ │ ├── recents_24.svg │ │ │ │ │ ├── recents_80.svg │ │ │ │ │ ├── record-active-bg_12.svg │ │ │ │ │ ├── record-active-bg_14.svg │ │ │ │ │ ├── record-active-bg_16.svg │ │ │ │ │ ├── record-active-bg_20.svg │ │ │ │ │ ├── record-active-bg_24.svg │ │ │ │ │ ├── record-active-circle_12.svg │ │ │ │ │ ├── record-active-circle_14.svg │ │ │ │ │ ├── record-active-circle_16.svg │ │ │ │ │ ├── record-active-circle_20.svg │ │ │ │ │ ├── record-active-circle_24.svg │ │ │ │ │ ├── record-active_12.svg │ │ │ │ │ ├── record-active_14.svg │ │ │ │ │ ├── record-active_16.svg │ │ │ │ │ ├── record-active_20.svg │ │ │ │ │ ├── record-active_24.svg │ │ │ │ │ ├── record_12.svg │ │ │ │ │ ├── record_14.svg │ │ │ │ │ ├── record_16.svg │ │ │ │ │ ├── record_20.svg │ │ │ │ │ ├── record_24.svg │ │ │ │ │ ├── record_28.svg │ │ │ │ │ ├── recurring-off_12.svg │ │ │ │ │ ├── recurring-off_16.svg │ │ │ │ │ ├── recurring_12.svg │ │ │ │ │ ├── recurring_14.svg │ │ │ │ │ ├── recurring_16.svg │ │ │ │ │ ├── recurring_20.svg │ │ │ │ │ ├── recurring_24.svg │ │ │ │ │ ├── redial_16.svg │ │ │ │ │ ├── redial_20.svg │ │ │ │ │ ├── redial_24.svg │ │ │ │ │ ├── redo_12.svg │ │ │ │ │ ├── redo_14.svg │ │ │ │ │ ├── redo_16.svg │ │ │ │ │ ├── refresh_10.svg │ │ │ │ │ ├── refresh_12.svg │ │ │ │ │ ├── refresh_16.svg │ │ │ │ │ ├── refresh_18.svg │ │ │ │ │ ├── refresh_20.svg │ │ │ │ │ ├── refresh_24.svg │ │ │ │ │ ├── remote-desktop-control_10.svg │ │ │ │ │ ├── remote-desktop-control_12.svg │ │ │ │ │ ├── remote-desktop-control_14.svg │ │ │ │ │ ├── remote-desktop-control_16.svg │ │ │ │ │ ├── remote-desktop-control_24.svg │ │ │ │ │ ├── remove_12.svg │ │ │ │ │ ├── remove_16.svg │ │ │ │ │ ├── remove_20.svg │ │ │ │ │ ├── remove_24.svg │ │ │ │ │ ├── reply-list_12.svg │ │ │ │ │ ├── reply-list_16.svg │ │ │ │ │ ├── reply-list_20.svg │ │ │ │ │ ├── reply_10.svg │ │ │ │ │ ├── reply_12.svg │ │ │ │ │ ├── reply_16.svg │ │ │ │ │ ├── reply_20.svg │ │ │ │ │ ├── reply_24.svg │ │ │ │ │ ├── report_16.svg │ │ │ │ │ ├── report_28.svg │ │ │ │ │ ├── reset_16.svg │ │ │ │ │ ├── reset_24.svg │ │ │ │ │ ├── response_16.svg │ │ │ │ │ ├── responsive-mobile_16.svg │ │ │ │ │ ├── retrieve-call_14.svg │ │ │ │ │ ├── retrieve-call_16.svg │ │ │ │ │ ├── return_12.svg │ │ │ │ │ ├── return_16.svg │ │ │ │ │ ├── ringtone_16.svg │ │ │ │ │ ├── ringtone_24.svg │ │ │ │ │ ├── room-calendar_24.svg │ │ │ │ │ ├── room-lights_16.svg │ │ │ │ │ ├── room-lights_24.svg │ │ │ │ │ ├── rotate-content_12.svg │ │ │ │ │ ├── rotate-content_24.svg │ │ │ │ │ ├── rss-circle_24.svg │ │ │ │ │ ├── rss-circle_32.svg │ │ │ │ │ ├── rss-circle_40.svg │ │ │ │ │ ├── running-application_16.svg │ │ │ │ │ ├── running-application_24.svg │ │ │ │ │ ├── save_12.svg │ │ │ │ │ ├── save_14.svg │ │ │ │ │ ├── save_16.svg │ │ │ │ │ ├── save_24.svg │ │ │ │ │ ├── scan_20.svg │ │ │ │ │ ├── scan_24.svg │ │ │ │ │ ├── scheduler-available_14.svg │ │ │ │ │ ├── scheduler-not-working-hours_14.svg │ │ │ │ │ ├── scheduler-unavailable_14.svg │ │ │ │ │ ├── scheduler-unknown_14.svg │ │ │ │ │ ├── screen-toggle_10.svg │ │ │ │ │ ├── screen-toggle_12.svg │ │ │ │ │ ├── screen-toggle_16.svg │ │ │ │ │ ├── screen-toggle_20.svg │ │ │ │ │ ├── screen-toggle_24.svg │ │ │ │ │ ├── screenshot_12.svg │ │ │ │ │ ├── screenshot_16.svg │ │ │ │ │ ├── screenshot_20.svg │ │ │ │ │ ├── screenshot_24.svg │ │ │ │ │ ├── search_12.svg │ │ │ │ │ ├── search_14.svg │ │ │ │ │ ├── search_16.svg │ │ │ │ │ ├── search_18.svg │ │ │ │ │ ├── search_20.svg │ │ │ │ │ ├── search_24.svg │ │ │ │ │ ├── search_28.svg │ │ │ │ │ ├── secure-active_12.svg │ │ │ │ │ ├── secure-active_14.svg │ │ │ │ │ ├── secure-active_16.svg │ │ │ │ │ ├── secure-active_20.svg │ │ │ │ │ ├── secure-active_24.svg │ │ │ │ │ ├── secure-active_28.svg │ │ │ │ │ ├── secure-active_8.svg │ │ │ │ │ ├── secure-badge_28.svg │ │ │ │ │ ├── secure-circle-active_14.svg │ │ │ │ │ ├── secure-circle-active_16.svg │ │ │ │ │ ├── secure-circle_14.svg │ │ │ │ │ ├── secure-circle_16.svg │ │ │ │ │ ├── secure-fips_24.svg │ │ │ │ │ ├── secure_10.svg │ │ │ │ │ ├── secure_12.svg │ │ │ │ │ ├── secure_14.svg │ │ │ │ │ ├── secure_16.svg │ │ │ │ │ ├── secure_20.svg │ │ │ │ │ ├── secure_24.svg │ │ │ │ │ ├── secure_28.svg │ │ │ │ │ ├── secure_8.svg │ │ │ │ │ ├── selfview_16.svg │ │ │ │ │ ├── selfview_20.svg │ │ │ │ │ ├── selfview_24.svg │ │ │ │ │ ├── send_12.svg │ │ │ │ │ ├── send_14.svg │ │ │ │ │ ├── send_16.svg │ │ │ │ │ ├── send_20.svg │ │ │ │ │ ├── send_24.svg │ │ │ │ │ ├── seperate_12.svg │ │ │ │ │ ├── seperate_16.svg │ │ │ │ │ ├── seperate_20.svg │ │ │ │ │ ├── seperate_24.svg │ │ │ │ │ ├── server-circle_100.svg │ │ │ │ │ ├── server-error_16.svg │ │ │ │ │ ├── server_16.svg │ │ │ │ │ ├── server_24.svg │ │ │ │ │ ├── set-variable_16.svg │ │ │ │ │ ├── set-variable_20.svg │ │ │ │ │ ├── settings-active_10.svg │ │ │ │ │ ├── settings-active_12.svg │ │ │ │ │ ├── settings-active_14.svg │ │ │ │ │ ├── settings-active_16.svg │ │ │ │ │ ├── settings-active_18.svg │ │ │ │ │ ├── settings-active_20.svg │ │ │ │ │ ├── settings-active_24.svg │ │ │ │ │ ├── settings-active_32.svg │ │ │ │ │ ├── settings-active_8.svg │ │ │ │ │ ├── settings_10.svg │ │ │ │ │ ├── settings_12.svg │ │ │ │ │ ├── settings_14.svg │ │ │ │ │ ├── settings_16.svg │ │ │ │ │ ├── settings_18.svg │ │ │ │ │ ├── settings_20.svg │ │ │ │ │ ├── settings_24.svg │ │ │ │ │ ├── settings_32.svg │ │ │ │ │ ├── settings_8.svg │ │ │ │ │ ├── setup-assistant_16.svg │ │ │ │ │ ├── shake-device_18.svg │ │ │ │ │ ├── shake-device_20.svg │ │ │ │ │ ├── shape-diagonal-arrowhead-dual_16.svg │ │ │ │ │ ├── shape-diagonal-arrowhead-single_16.svg │ │ │ │ │ ├── shape-diagonal-line_16.svg │ │ │ │ │ ├── shape-oval_16.svg │ │ │ │ │ ├── shape-square_16.svg │ │ │ │ │ ├── share-c-native-adr_12.svg │ │ │ │ │ ├── share-c-native-adr_14.svg │ │ │ │ │ ├── share-c-native-adr_16.svg │ │ │ │ │ ├── share-c-native-adr_24.svg │ │ │ │ │ ├── share-c-native-ios_10.svg │ │ │ │ │ ├── share-c-native-ios_12.svg │ │ │ │ │ ├── share-c-native-ios_14.svg │ │ │ │ │ ├── share-c-native-ios_16.svg │ │ │ │ │ ├── share-c-native-ios_20.svg │ │ │ │ │ ├── share-c-native-ios_28.svg │ │ │ │ │ ├── share-c-native-iph_10.svg │ │ │ │ │ ├── share-c-native-iph_12.svg │ │ │ │ │ ├── share-c-native-iph_14.svg │ │ │ │ │ ├── share-c-native-iph_16.svg │ │ │ │ │ ├── share-c-native-iph_20.svg │ │ │ │ │ ├── share-c-native-iph_24.svg │ │ │ │ │ ├── share-c-native-iph_28.svg │ │ │ │ │ ├── share-screen-active_14.svg │ │ │ │ │ ├── share-screen-active_24.svg │ │ │ │ │ ├── share-screen-presence-stroke_12.svg │ │ │ │ │ ├── share-screen-presence-stroke_14.svg │ │ │ │ │ ├── share-screen-presence-stroke_16.svg │ │ │ │ │ ├── share-screen-presence-stroke_26.svg │ │ │ │ │ ├── share-screen-presence-stroke_30.svg │ │ │ │ │ ├── share-screen-presence_12.svg │ │ │ │ │ ├── share-screen-presence_14.svg │ │ │ │ │ ├── share-screen-presence_28.svg │ │ │ │ │ ├── share-screen-presence_8.svg │ │ │ │ │ ├── share-screen_10.svg │ │ │ │ │ ├── share-screen_12.svg │ │ │ │ │ ├── share-screen_120.svg │ │ │ │ │ ├── share-screen_124.svg │ │ │ │ │ ├── share-screen_14.svg │ │ │ │ │ ├── share-screen_16.svg │ │ │ │ │ ├── share-screen_18.svg │ │ │ │ │ ├── share-screen_20.svg │ │ │ │ │ ├── share-screen_24.svg │ │ │ │ │ ├── share-screen_26.svg │ │ │ │ │ ├── share-screen_28.svg │ │ │ │ │ ├── share-screen_32.svg │ │ │ │ │ ├── share-screen_36.svg │ │ │ │ │ ├── share-screen_48.svg │ │ │ │ │ ├── share-screen_56.svg │ │ │ │ │ ├── share-screen_8.svg │ │ │ │ │ ├── share-space_12.svg │ │ │ │ │ ├── share-space_14.svg │ │ │ │ │ ├── share-space_18.svg │ │ │ │ │ ├── share-space_20.svg │ │ │ │ │ ├── share-space_24.svg │ │ │ │ │ ├── share_12.svg │ │ │ │ │ ├── share_14.svg │ │ │ │ │ ├── share_16.svg │ │ │ │ │ ├── share_18.svg │ │ │ │ │ ├── share_20.svg │ │ │ │ │ ├── share_24.svg │ │ │ │ │ ├── share_28.svg │ │ │ │ │ ├── share_32.svg │ │ │ │ │ ├── shield_12.svg │ │ │ │ │ ├── shield_14.svg │ │ │ │ │ ├── shield_20.svg │ │ │ │ │ ├── shield_24.svg │ │ │ │ │ ├── show_12.svg │ │ │ │ │ ├── show_16.svg │ │ │ │ │ ├── show_20.svg │ │ │ │ │ ├── show_24.svg │ │ │ │ │ ├── side-by-side-active_24.svg │ │ │ │ │ ├── sign-in-forced_16.svg │ │ │ │ │ ├── sign-in-forced_24.svg │ │ │ │ │ ├── sign-in_16.svg │ │ │ │ │ ├── sign-in_20.svg │ │ │ │ │ ├── sign-in_24.svg │ │ │ │ │ ├── sign-out_10.svg │ │ │ │ │ ├── sign-out_12.svg │ │ │ │ │ ├── sign-out_16.svg │ │ │ │ │ ├── sign-out_20.svg │ │ │ │ │ ├── sign-out_24.svg │ │ │ │ │ ├── signal-0_16.svg │ │ │ │ │ ├── signal-100_12.svg │ │ │ │ │ ├── signal-100_16.svg │ │ │ │ │ ├── signal-25_16.svg │ │ │ │ │ ├── signal-50_16.svg │ │ │ │ │ ├── signal-75_16.svg │ │ │ │ │ ├── single-number-reach_12.svg │ │ │ │ │ ├── single-number-reach_14.svg │ │ │ │ │ ├── single-number-reach_16.svg │ │ │ │ │ ├── single-number-reach_20.svg │ │ │ │ │ ├── skip-bw_16.svg │ │ │ │ │ ├── skip-bw_24.svg │ │ │ │ │ ├── skip-fw_16.svg │ │ │ │ │ ├── skip-fw_24.svg │ │ │ │ │ ├── skip_10.svg │ │ │ │ │ ├── skip_16.svg │ │ │ │ │ ├── skip_24.svg │ │ │ │ │ ├── sms_12.svg │ │ │ │ │ ├── sms_16.svg │ │ │ │ │ ├── sort-down_16.svg │ │ │ │ │ ├── sort-down_20.svg │ │ │ │ │ ├── sort-down_24.svg │ │ │ │ │ ├── sort-up_20.svg │ │ │ │ │ ├── sort-up_24.svg │ │ │ │ │ ├── space_12.svg │ │ │ │ │ ├── space_16.svg │ │ │ │ │ ├── spark-board_12.svg │ │ │ │ │ ├── spark-board_14.svg │ │ │ │ │ ├── spark-board_16.svg │ │ │ │ │ ├── spark-board_20.svg │ │ │ │ │ ├── spark-board_24.svg │ │ │ │ │ ├── spark-board_28.svg │ │ │ │ │ ├── spark-board_32.svg │ │ │ │ │ ├── spark-board_48.svg │ │ │ │ │ ├── spark-quad-camera_16.svg │ │ │ │ │ ├── spark-quad-camera_20.svg │ │ │ │ │ ├── spark-room-kit-plus_16.svg │ │ │ │ │ ├── spark-room-kit-plus_20.svg │ │ │ │ │ ├── spark-room-kit_16.svg │ │ │ │ │ ├── spark-room-kit_20.svg │ │ │ │ │ ├── spark-share_16.svg │ │ │ │ │ ├── spark-share_20.svg │ │ │ │ │ ├── spark-voice_16.svg │ │ │ │ │ ├── spark-voice_20.svg │ │ │ │ │ ├── spark_16.svg │ │ │ │ │ ├── speaker-bluetooth_16.svg │ │ │ │ │ ├── speaker-disconnected_12.svg │ │ │ │ │ ├── speaker-disconnected_14.svg │ │ │ │ │ ├── speaker-disconnected_16.svg │ │ │ │ │ ├── speaker-disconnected_20.svg │ │ │ │ │ ├── speaker-disconnected_24.svg │ │ │ │ │ ├── speaker-disconnected_28.svg │ │ │ │ │ ├── speaker-disconnected_36.svg │ │ │ │ │ ├── speaker-line-out-left_16.svg │ │ │ │ │ ├── speaker-line-out-right_16.svg │ │ │ │ │ ├── speaker-muted_12.svg │ │ │ │ │ ├── speaker-muted_14.svg │ │ │ │ │ ├── speaker-muted_16.svg │ │ │ │ │ ├── speaker-muted_24.svg │ │ │ │ │ ├── speaker-muted_28.svg │ │ │ │ │ ├── speaker-muted_32.svg │ │ │ │ │ ├── speaker-off_16.svg │ │ │ │ │ ├── speaker-off_24.svg │ │ │ │ │ ├── speaker-off_28.svg │ │ │ │ │ ├── speaker-turn-down_16.svg │ │ │ │ │ ├── speaker-turn-up_16.svg │ │ │ │ │ ├── speaker_12.svg │ │ │ │ │ ├── speaker_16.svg │ │ │ │ │ ├── speaker_20.svg │ │ │ │ │ ├── speaker_24.svg │ │ │ │ │ ├── speaker_28.svg │ │ │ │ │ ├── spinner_12.svg │ │ │ │ │ ├── spinner_14.svg │ │ │ │ │ ├── spinner_16.svg │ │ │ │ │ ├── spinner_18.svg │ │ │ │ │ ├── spinner_20.svg │ │ │ │ │ ├── spinner_24.svg │ │ │ │ │ ├── spinner_28.svg │ │ │ │ │ ├── spinner_32.svg │ │ │ │ │ ├── spinner_36.svg │ │ │ │ │ ├── spinner_40.svg │ │ │ │ │ ├── spinner_48.svg │ │ │ │ │ ├── spinner_56.svg │ │ │ │ │ ├── spinner_72.svg │ │ │ │ │ ├── spinner_8.svg │ │ │ │ │ ├── spinner_80.svg │ │ │ │ │ ├── spinner_90.svg │ │ │ │ │ ├── spreadsheet_16.svg │ │ │ │ │ ├── stacked-area-100-chart_16.svg │ │ │ │ │ ├── stacked-area-chart_16.svg │ │ │ │ │ ├── stacked-bar-100-chart_16.svg │ │ │ │ │ ├── stacked-bar-chart_16.svg │ │ │ │ │ ├── start-chat_20.svg │ │ │ │ │ ├── start-chat_24.svg │ │ │ │ │ ├── stickers_16.svg │ │ │ │ │ ├── stickers_24.svg │ │ │ │ │ ├── stickies_12.svg │ │ │ │ │ ├── stickies_16.svg │ │ │ │ │ ├── stickies_24.svg │ │ │ │ │ ├── stop-circle_12.svg │ │ │ │ │ ├── stop-circle_16.svg │ │ │ │ │ ├── stop-circle_20.svg │ │ │ │ │ ├── stop-circle_24.svg │ │ │ │ │ ├── stop-content-share_20.svg │ │ │ │ │ ├── stop_10.svg │ │ │ │ │ ├── stop_12.svg │ │ │ │ │ ├── stop_16.svg │ │ │ │ │ ├── stop_20.svg │ │ │ │ │ ├── stop_24.svg │ │ │ │ │ ├── stored-info-active_12.svg │ │ │ │ │ ├── stored-info-active_16.svg │ │ │ │ │ ├── stored-info-active_20.svg │ │ │ │ │ ├── stored-info-active_24.svg │ │ │ │ │ ├── stored-info_12.svg │ │ │ │ │ ├── stored-info_16.svg │ │ │ │ │ ├── stored-info_20.svg │ │ │ │ │ ├── stored-info_24.svg │ │ │ │ │ ├── streaming_16.svg │ │ │ │ │ ├── streaming_20.svg │ │ │ │ │ ├── streaming_24.svg │ │ │ │ │ ├── subscribe_16.svg │ │ │ │ │ ├── subscript_12.svg │ │ │ │ │ ├── subscript_16.svg │ │ │ │ │ ├── superscript_12.svg │ │ │ │ │ ├── superscript_16.svg │ │ │ │ │ ├── swift_16.svg │ │ │ │ │ ├── sx10_16.svg │ │ │ │ │ ├── sx10_20.svg │ │ │ │ │ ├── sx20_16.svg │ │ │ │ │ ├── sx20_20.svg │ │ │ │ │ ├── sx80-codec_16.svg │ │ │ │ │ ├── sx80-codec_20.svg │ │ │ │ │ ├── tablet_12.svg │ │ │ │ │ ├── tablet_16.svg │ │ │ │ │ ├── tablet_24.svg │ │ │ │ │ ├── tabs_16.svg │ │ │ │ │ ├── tabs_24.svg │ │ │ │ │ ├── tag_12.svg │ │ │ │ │ ├── tag_16.svg │ │ │ │ │ ├── tag_20.svg │ │ │ │ │ ├── tap_20.svg │ │ │ │ │ ├── tasks_10.svg │ │ │ │ │ ├── tasks_12.svg │ │ │ │ │ ├── tasks_14.svg │ │ │ │ │ ├── tasks_16.svg │ │ │ │ │ ├── tasks_18.svg │ │ │ │ │ ├── tasks_20.svg │ │ │ │ │ ├── tasks_24.svg │ │ │ │ │ ├── tasks_26.svg │ │ │ │ │ ├── tasks_28.svg │ │ │ │ │ ├── tasks_32.svg │ │ │ │ │ ├── tasks_36.svg │ │ │ │ │ ├── tasks_8.svg │ │ │ │ │ ├── team-active_12.svg │ │ │ │ │ ├── team-active_14.svg │ │ │ │ │ ├── team-active_16.svg │ │ │ │ │ ├── team-active_18.svg │ │ │ │ │ ├── team-active_20.svg │ │ │ │ │ ├── team-active_24.svg │ │ │ │ │ ├── team-active_32.svg │ │ │ │ │ ├── team-new_24.svg │ │ │ │ │ ├── team_12.svg │ │ │ │ │ ├── team_14.svg │ │ │ │ │ ├── team_16.svg │ │ │ │ │ ├── team_18.svg │ │ │ │ │ ├── team_20.svg │ │ │ │ │ ├── team_24.svg │ │ │ │ │ ├── team_32.svg │ │ │ │ │ ├── telepresence-alert_12.svg │ │ │ │ │ ├── telepresence-ix5000_16.svg │ │ │ │ │ ├── telepresence-ix5000_20.svg │ │ │ │ │ ├── telepresence-muted-alert_12.svg │ │ │ │ │ ├── telepresence-muted_12.svg │ │ │ │ │ ├── telepresence-muted_64.svg │ │ │ │ │ ├── telepresence-private_12.svg │ │ │ │ │ ├── telepresence_12.svg │ │ │ │ │ ├── telepresence_14.svg │ │ │ │ │ ├── telepresence_16.svg │ │ │ │ │ ├── telepresence_18.svg │ │ │ │ │ ├── telepresence_20.svg │ │ │ │ │ ├── telepresence_24.svg │ │ │ │ │ ├── telepresence_64.svg │ │ │ │ │ ├── temperature_14.svg │ │ │ │ │ ├── text-align-left_16.svg │ │ │ │ │ ├── text-align-right_16.svg │ │ │ │ │ ├── text-blockquote_12.svg │ │ │ │ │ ├── text-blockquote_16.svg │ │ │ │ │ ├── text-blockquote_18.svg │ │ │ │ │ ├── text-blockquote_20.svg │ │ │ │ │ ├── text-blockquote_8.svg │ │ │ │ │ ├── text-bold_12.svg │ │ │ │ │ ├── text-bold_16.svg │ │ │ │ │ ├── text-bold_24.svg │ │ │ │ │ ├── text-code-block_12.svg │ │ │ │ │ ├── text-code-block_16.svg │ │ │ │ │ ├── text-code-block_24.svg │ │ │ │ │ ├── text-code-inline_12.svg │ │ │ │ │ ├── text-code-inline_16.svg │ │ │ │ │ ├── text-color_12.svg │ │ │ │ │ ├── text-color_16.svg │ │ │ │ │ ├── text-format_10.svg │ │ │ │ │ ├── text-format_12.svg │ │ │ │ │ ├── text-format_16.svg │ │ │ │ │ ├── text-format_20.svg │ │ │ │ │ ├── text-format_24.svg │ │ │ │ │ ├── text-format_8.svg │ │ │ │ │ ├── text-heading-1_12.svg │ │ │ │ │ ├── text-heading-1_16.svg │ │ │ │ │ ├── text-heading-2_12.svg │ │ │ │ │ ├── text-heading-2_16.svg │ │ │ │ │ ├── text-heading-3_12.svg │ │ │ │ │ ├── text-heading-3_16.svg │ │ │ │ │ ├── text-highlight_12.svg │ │ │ │ │ ├── text-highlight_16.svg │ │ │ │ │ ├── text-indent-decrease_12.svg │ │ │ │ │ ├── text-indent-increase_12.svg │ │ │ │ │ ├── text-italic_12.svg │ │ │ │ │ ├── text-italic_16.svg │ │ │ │ │ ├── text-italic_24.svg │ │ │ │ │ ├── text-list-bulleted_10.svg │ │ │ │ │ ├── text-list-bulleted_12.svg │ │ │ │ │ ├── text-list-bulleted_16.svg │ │ │ │ │ ├── text-list-bulleted_24.svg │ │ │ │ │ ├── text-list-bulleted_8.svg │ │ │ │ │ ├── text-list-numbered_12.svg │ │ │ │ │ ├── text-list-numbered_16.svg │ │ │ │ │ ├── text-list-numbered_24.svg │ │ │ │ │ ├── text-list-numbered_36.svg │ │ │ │ │ ├── text-list-numbered_40.svg │ │ │ │ │ ├── text-strikethrough_12.svg │ │ │ │ │ ├── text-strikethrough_16.svg │ │ │ │ │ ├── text-table_12.svg │ │ │ │ │ ├── text-table_16.svg │ │ │ │ │ ├── text-underline_12.svg │ │ │ │ │ ├── text-underline_16.svg │ │ │ │ │ ├── text-underline_24.svg │ │ │ │ │ ├── text_10.svg │ │ │ │ │ ├── text_12.svg │ │ │ │ │ ├── text_16.svg │ │ │ │ │ ├── too-fast_12.svg │ │ │ │ │ ├── too-fast_16.svg │ │ │ │ │ ├── too-slow_12.svg │ │ │ │ │ ├── too-slow_16.svg │ │ │ │ │ ├── tools_16.svg │ │ │ │ │ ├── tools_20.svg │ │ │ │ │ ├── tools_24.svg │ │ │ │ │ ├── tools_28.svg │ │ │ │ │ ├── tools_32.svg │ │ │ │ │ ├── touch10_24.svg │ │ │ │ │ ├── touch_16.svg │ │ │ │ │ ├── transcript_16.svg │ │ │ │ │ ├── transcript_20.svg │ │ │ │ │ ├── trending_10.svg │ │ │ │ │ ├── twitter-circle_24.svg │ │ │ │ │ ├── twitter-circle_32.svg │ │ │ │ │ ├── twitter-circle_40.svg │ │ │ │ │ ├── twitter_12.svg │ │ │ │ │ ├── twitter_16.svg │ │ │ │ │ ├── ucm-cloud_10.svg │ │ │ │ │ ├── ucm-cloud_16.svg │ │ │ │ │ ├── ucm-cloud_24.svg │ │ │ │ │ ├── ucm-cloud_32.svg │ │ │ │ │ ├── undo_12.svg │ │ │ │ │ ├── undo_14.svg │ │ │ │ │ ├── undo_16.svg │ │ │ │ │ ├── undo_24.svg │ │ │ │ │ ├── unlink_20.svg │ │ │ │ │ ├── unread-badge_10.svg │ │ │ │ │ ├── unread-badge_12.svg │ │ │ │ │ ├── unread-badge_16.svg │ │ │ │ │ ├── unread-badge_8.svg │ │ │ │ │ ├── unsecure_12.svg │ │ │ │ │ ├── unsecure_14.svg │ │ │ │ │ ├── unsecure_16.svg │ │ │ │ │ ├── unsecure_24.svg │ │ │ │ │ ├── unsecure_28.svg │ │ │ │ │ ├── unsorted_10.svg │ │ │ │ │ ├── unsorted_16.svg │ │ │ │ │ ├── unsorted_24.svg │ │ │ │ │ ├── update-file-share_12.svg │ │ │ │ │ ├── update-file-share_16.svg │ │ │ │ │ ├── update-file-share_24.svg │ │ │ │ │ ├── upload_12.svg │ │ │ │ │ ├── upload_130.svg │ │ │ │ │ ├── upload_14.svg │ │ │ │ │ ├── upload_16.svg │ │ │ │ │ ├── upload_18.svg │ │ │ │ │ ├── upload_20.svg │ │ │ │ │ ├── upload_24.svg │ │ │ │ │ ├── upload_28.svg │ │ │ │ │ ├── upload_32.svg │ │ │ │ │ ├── upload_36.svg │ │ │ │ │ ├── usb_16.svg │ │ │ │ │ ├── user_16.svg │ │ │ │ │ ├── user_20.svg │ │ │ │ │ ├── user_24.svg │ │ │ │ │ ├── user_56.svg │ │ │ │ │ ├── video-effect_12.svg │ │ │ │ │ ├── video-effect_16.svg │ │ │ │ │ ├── video-layout-auto_12.svg │ │ │ │ │ ├── video-layout-auto_16.svg │ │ │ │ │ ├── video-layout-auto_20.svg │ │ │ │ │ ├── video-layout-auto_24.svg │ │ │ │ │ ├── video-layout-equal-filled_24.svg │ │ │ │ │ ├── video-layout-equal_12.svg │ │ │ │ │ ├── video-layout-equal_14.svg │ │ │ │ │ ├── video-layout-equal_16.svg │ │ │ │ │ ├── video-layout-equal_20.svg │ │ │ │ │ ├── video-layout-equal_24.svg │ │ │ │ │ ├── video-layout-equal_28.svg │ │ │ │ │ ├── video-layout-overlay_12.svg │ │ │ │ │ ├── video-layout-overlay_16.svg │ │ │ │ │ ├── video-layout-overlay_20.svg │ │ │ │ │ ├── video-layout-overlay_24.svg │ │ │ │ │ ├── video-layout-prominent_12.svg │ │ │ │ │ ├── video-layout-prominent_16.svg │ │ │ │ │ ├── video-layout-prominent_20.svg │ │ │ │ │ ├── video-layout-prominent_24.svg │ │ │ │ │ ├── video-layout-share-dominant_12.svg │ │ │ │ │ ├── video-layout-share-dominant_16.svg │ │ │ │ │ ├── video-layout-share-dominant_20.svg │ │ │ │ │ ├── video-layout-share-dominant_24.svg │ │ │ │ │ ├── video-layout-single_12.svg │ │ │ │ │ ├── video-layout-single_16.svg │ │ │ │ │ ├── video-layout-single_20.svg │ │ │ │ │ ├── video-layout-single_28.svg │ │ │ │ │ ├── video-layout-stack-filled_24.svg │ │ │ │ │ ├── video-layout-stack_12.svg │ │ │ │ │ ├── video-layout-stack_16.svg │ │ │ │ │ ├── video-layout-stack_20.svg │ │ │ │ │ ├── video-layout-stack_24.svg │ │ │ │ │ ├── video-layout-video-dominant_12.svg │ │ │ │ │ ├── video-layout-video-dominant_16.svg │ │ │ │ │ ├── video-layout-video-dominant_20.svg │ │ │ │ │ ├── video-layout-video-dominant_24.svg │ │ │ │ │ ├── video-layout_12.svg │ │ │ │ │ ├── video-layout_16.svg │ │ │ │ │ ├── view-all_12.svg │ │ │ │ │ ├── view-all_14.svg │ │ │ │ │ ├── view-feed-multiple_16.svg │ │ │ │ │ ├── view-feed-panel_16.svg │ │ │ │ │ ├── view-feed-single_16.svg │ │ │ │ │ ├── view-list-circle_100.svg │ │ │ │ │ ├── view-list_10.svg │ │ │ │ │ ├── view-list_12.svg │ │ │ │ │ ├── view-list_14.svg │ │ │ │ │ ├── view-list_16.svg │ │ │ │ │ ├── view-list_20.svg │ │ │ │ │ ├── view-list_24.svg │ │ │ │ │ ├── view-list_28.svg │ │ │ │ │ ├── view-mixed_12.svg │ │ │ │ │ ├── view-stack_12.svg │ │ │ │ │ ├── view-stack_14.svg │ │ │ │ │ ├── view-stack_20.svg │ │ │ │ │ ├── view-stack_24.svg │ │ │ │ │ ├── view-thumbnail_12.svg │ │ │ │ │ ├── view-thumbnail_14.svg │ │ │ │ │ ├── view-thumbnail_16.svg │ │ │ │ │ ├── view-thumbnail_20.svg │ │ │ │ │ ├── view-thumbnail_24.svg │ │ │ │ │ ├── voice_20.svg │ │ │ │ │ ├── voicemail-active_12.svg │ │ │ │ │ ├── voicemail-active_14.svg │ │ │ │ │ ├── voicemail-active_16.svg │ │ │ │ │ ├── voicemail-active_18.svg │ │ │ │ │ ├── voicemail-active_20.svg │ │ │ │ │ ├── voicemail-active_22.svg │ │ │ │ │ ├── voicemail-active_24.svg │ │ │ │ │ ├── voicemail-active_28.svg │ │ │ │ │ ├── voicemail_10.svg │ │ │ │ │ ├── voicemail_14.svg │ │ │ │ │ ├── voicemail_16.svg │ │ │ │ │ ├── voicemail_18.svg │ │ │ │ │ ├── voicemail_20.svg │ │ │ │ │ ├── voicemail_22.svg │ │ │ │ │ ├── voicemail_24.svg │ │ │ │ │ ├── voicemail_28.svg │ │ │ │ │ ├── voicemail_8.svg │ │ │ │ │ ├── wallpaper_16.svg │ │ │ │ │ ├── wallpaper_20.svg │ │ │ │ │ ├── wallpaper_24.svg │ │ │ │ │ ├── wallpaper_28.svg │ │ │ │ │ ├── wallpaper_32.svg │ │ │ │ │ ├── warning-active_12.svg │ │ │ │ │ ├── warning-active_16.svg │ │ │ │ │ ├── warning_100.svg │ │ │ │ │ ├── warning_12.svg │ │ │ │ │ ├── warning_14.svg │ │ │ │ │ ├── warning_16.svg │ │ │ │ │ ├── warning_20.svg │ │ │ │ │ ├── warning_24.svg │ │ │ │ │ ├── warning_28.svg │ │ │ │ │ ├── warning_32.svg │ │ │ │ │ ├── warning_40.svg │ │ │ │ │ ├── warning_44.svg │ │ │ │ │ ├── warning_56.svg │ │ │ │ │ ├── warning_64.svg │ │ │ │ │ ├── warning_72.svg │ │ │ │ │ ├── waveform_20.svg │ │ │ │ │ ├── web-sharing_16.svg │ │ │ │ │ ├── web-sharing_24.svg │ │ │ │ │ ├── webex-board_12.svg │ │ │ │ │ ├── webex-board_14.svg │ │ │ │ │ ├── webex-board_16.svg │ │ │ │ │ ├── webex-board_20.svg │ │ │ │ │ ├── webex-board_24.svg │ │ │ │ │ ├── webex-board_28.svg │ │ │ │ │ ├── webex-board_32.svg │ │ │ │ │ ├── webex-board_48.svg │ │ │ │ │ ├── webex-calling_10.svg │ │ │ │ │ ├── webex-calling_12.svg │ │ │ │ │ ├── webex-calling_16.svg │ │ │ │ │ ├── webex-calling_18.svg │ │ │ │ │ ├── webex-calling_20.svg │ │ │ │ │ ├── webex-calling_24.svg │ │ │ │ │ ├── webex-codec-plus_16.svg │ │ │ │ │ ├── webex-codec-plus_20.svg │ │ │ │ │ ├── webex-community_20.svg │ │ │ │ │ ├── webex-desk-camera_20.svg │ │ │ │ │ ├── webex-instant-meeting_12.svg │ │ │ │ │ ├── webex-instant-meeting_14.svg │ │ │ │ │ ├── webex-instant-meeting_16.svg │ │ │ │ │ ├── webex-instant-meeting_20.svg │ │ │ │ │ ├── webex-instant-meeting_24.svg │ │ │ │ │ ├── webex-meetings_10.svg │ │ │ │ │ ├── webex-meetings_12.svg │ │ │ │ │ ├── webex-meetings_14.svg │ │ │ │ │ ├── webex-meetings_16.svg │ │ │ │ │ ├── webex-meetings_20.svg │ │ │ │ │ ├── webex-meetings_24.svg │ │ │ │ │ ├── webex-meetings_48.svg │ │ │ │ │ ├── webex-quad-camera_16.svg │ │ │ │ │ ├── webex-quad-camera_20.svg │ │ │ │ │ ├── webex-room-kit-plus_16.svg │ │ │ │ │ ├── webex-room-kit-plus_20.svg │ │ │ │ │ ├── webex-room-kit_16.svg │ │ │ │ │ ├── webex-room-kit_20.svg │ │ │ │ │ ├── webex-share_12.svg │ │ │ │ │ ├── webex-share_14.svg │ │ │ │ │ ├── webex-share_16.svg │ │ │ │ │ ├── webex-share_20.svg │ │ │ │ │ ├── webex-teams_10.svg │ │ │ │ │ ├── webex-teams_12.svg │ │ │ │ │ ├── webex-teams_14.svg │ │ │ │ │ ├── webex-teams_16.svg │ │ │ │ │ ├── webex-teams_18.svg │ │ │ │ │ ├── webex-teams_20.svg │ │ │ │ │ ├── webex-voice_16.svg │ │ │ │ │ ├── webex-voice_20.svg │ │ │ │ │ ├── webex_10.svg │ │ │ │ │ ├── webex_16.svg │ │ │ │ │ ├── webex_24.svg │ │ │ │ │ ├── webex_48.svg │ │ │ │ │ ├── webpop_12.svg │ │ │ │ │ ├── webpop_16.svg │ │ │ │ │ ├── webpop_20.svg │ │ │ │ │ ├── webpop_24.svg │ │ │ │ │ ├── whatsApp_12.svg │ │ │ │ │ ├── whatsApp_16.svg │ │ │ │ │ ├── whiteboard-content_16.svg │ │ │ │ │ ├── whiteboard-content_24.svg │ │ │ │ │ ├── whiteboard_10.svg │ │ │ │ │ ├── whiteboard_12.svg │ │ │ │ │ ├── whiteboard_14.svg │ │ │ │ │ ├── whiteboard_16.svg │ │ │ │ │ ├── whiteboard_20.svg │ │ │ │ │ ├── whiteboard_24.svg │ │ │ │ │ ├── whiteboard_26.svg │ │ │ │ │ ├── whiteboard_28.svg │ │ │ │ │ ├── whiteboard_32.svg │ │ │ │ │ ├── whiteboard_36.svg │ │ │ │ │ ├── whiteboard_8.svg │ │ │ │ │ ├── widgets-adr_20.svg │ │ │ │ │ ├── wifi-error_12.svg │ │ │ │ │ ├── wifi-error_16.svg │ │ │ │ │ ├── wifi-selected_24.svg │ │ │ │ │ ├── wifi_12.svg │ │ │ │ │ ├── wifi_16.svg │ │ │ │ │ ├── wifi_20.svg │ │ │ │ │ ├── wifi_24.svg │ │ │ │ │ ├── wikipedia_16.svg │ │ │ │ │ ├── window-corner-scrub_16.svg │ │ │ │ │ ├── window-vertical-scrub_16.svg │ │ │ │ │ ├── youtube-circle_24.svg │ │ │ │ │ ├── youtube-circle_32.svg │ │ │ │ │ ├── youtube-circle_40.svg │ │ │ │ │ ├── zoom-in_12.svg │ │ │ │ │ ├── zoom-in_14.svg │ │ │ │ │ ├── zoom-in_16.svg │ │ │ │ │ ├── zoom-in_20.svg │ │ │ │ │ ├── zoom-out_12.svg │ │ │ │ │ ├── zoom-out_14.svg │ │ │ │ │ ├── zoom-out_16.svg │ │ │ │ │ └── zoom-out_20.svg │ │ │ ├── images │ │ │ │ ├── avatar-images │ │ │ │ │ ├── barbara.png │ │ │ │ │ ├── brandon.png │ │ │ │ │ ├── brenda.png │ │ │ │ │ ├── giacomo.png │ │ │ │ │ ├── maria.png │ │ │ │ │ └── simon.png │ │ │ │ ├── cisco-webex │ │ │ │ │ ├── lockup │ │ │ │ │ │ ├── cisco-webex-lockup-black.png │ │ │ │ │ │ ├── cisco-webex-lockup-black.svg │ │ │ │ │ │ ├── cisco-webex-lockup-blue.png │ │ │ │ │ │ ├── cisco-webex-lockup-blue.svg │ │ │ │ │ │ ├── cisco-webex-lockup-white.png │ │ │ │ │ │ └── cisco-webex-lockup-white.svg │ │ │ │ │ └── wordmark │ │ │ │ │ │ ├── cisco-webex-wordmark-black.png │ │ │ │ │ │ ├── cisco-webex-wordmark-black.svg │ │ │ │ │ │ ├── cisco-webex-wordmark-blue.png │ │ │ │ │ │ ├── cisco-webex-wordmark-blue.svg │ │ │ │ │ │ ├── cisco-webex-wordmark-white.png │ │ │ │ │ │ └── cisco-webex-wordmark-white.svg │ │ │ │ ├── cisco │ │ │ │ │ ├── cisco-logo-black.png │ │ │ │ │ ├── cisco-logo-black.svg │ │ │ │ │ ├── cisco-logo-blue.png │ │ │ │ │ ├── cisco-logo-blue.svg │ │ │ │ │ ├── cisco-logo-white.png │ │ │ │ │ └── cisco-logo-white.svg │ │ │ │ ├── flags.png │ │ │ │ ├── flags@2x.png │ │ │ │ ├── momentum │ │ │ │ │ ├── momentum-color-icon.png │ │ │ │ │ ├── momentum-color-icon.svg │ │ │ │ │ ├── momentum-horiz-color-white.png │ │ │ │ │ ├── momentum-horiz-color.png │ │ │ │ │ ├── momentum-horiz-color.svg │ │ │ │ │ ├── momentum-horiz-outline.png │ │ │ │ │ ├── momentum-horiz-outline.svg │ │ │ │ │ ├── momentum-outline-icon.png │ │ │ │ │ ├── momentum-outline-icon.svg │ │ │ │ │ ├── momentum-vert-color.png │ │ │ │ │ ├── momentum-vert-color.svg │ │ │ │ │ ├── momentum-vert-outline.png │ │ │ │ │ ├── momentum-vert-outline.svg │ │ │ │ │ └── momentum.jpg │ │ │ │ ├── opacity-bkgd.jpg │ │ │ │ ├── webex-calling │ │ │ │ │ ├── calling-icon-color.png │ │ │ │ │ ├── calling-icon-color.svg │ │ │ │ │ ├── calling-icon-white.png │ │ │ │ │ ├── calling-icon-white.svg │ │ │ │ │ ├── calling-with-container-and-label-color.png │ │ │ │ │ ├── calling-with-container-and-label-color.svg │ │ │ │ │ ├── calling-with-container-color.png │ │ │ │ │ ├── calling-with-container-color.svg │ │ │ │ │ ├── calling-with-label-color.png │ │ │ │ │ └── calling-with-label-color.svg │ │ │ │ ├── webex-meetings │ │ │ │ │ ├── meetings-icon-color.png │ │ │ │ │ ├── meetings-icon-color.svg │ │ │ │ │ ├── meetings-icon-white.png │ │ │ │ │ ├── meetings-icon-white.svg │ │ │ │ │ ├── meetings-with-container-and-label-color.png │ │ │ │ │ ├── meetings-with-container-and-label-color.svg │ │ │ │ │ ├── meetings-with-container-color.png │ │ │ │ │ ├── meetings-with-container-color.svg │ │ │ │ │ ├── meetings-with-label-color.png │ │ │ │ │ └── meetings-with-label-color.svg │ │ │ │ └── webex-teams │ │ │ │ │ ├── teams-icon-color.png │ │ │ │ │ ├── teams-icon-color.svg │ │ │ │ │ ├── teams-icon-white.png │ │ │ │ │ ├── teams-icon-white.svg │ │ │ │ │ ├── teams-with-container-and-label-color.png │ │ │ │ │ ├── teams-with-container-and-label-color.svg │ │ │ │ │ ├── teams-with-container-color.png │ │ │ │ │ ├── teams-with-container-color.svg │ │ │ │ │ ├── teams-with-label-color.png │ │ │ │ │ └── teams-with-label-color.svg │ │ │ ├── momentum.png │ │ │ ├── plugin.svg │ │ │ ├── repo.svg │ │ │ ├── stackalt.svg │ │ │ ├── wc2.png │ │ │ └── wxcc_logo.svg │ │ ├── covid-by-location.stories.js │ │ ├── default.config.js │ │ └── hospital-bed-capacity.stories.js │ └── story-book.js └── web-dev-server.config.mjs ├── style.css ├── webex_cc_logo.png └── widgets ├── covid-by-location.js ├── covid-by-location.js.map ├── crm.js ├── crm.js.map ├── custom-react-wc-widget-test.js ├── hospital-bed-capacity.js ├── hospital-bed-capacity.js.map ├── learning-widget-sample.js ├── learning-widget-sample.js.map ├── map-widget.js ├── map-widget.js.map ├── notes-widget.js ├── notes-widget.js.map ├── react-testing-gadget.js ├── rss-feed-widget.js ├── rss-feed-widget.js.map ├── timer.js ├── timer.js.map └── wc-testing-gadget.js /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Examples/Layouts/Header_Added_Desktop Layout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Layouts/Header_Added_Desktop Layout.json -------------------------------------------------------------------------------- /Examples/Layouts/Logo_Added_ Desktop Layout .json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Layouts/Logo_Added_ Desktop Layout .json -------------------------------------------------------------------------------- /Examples/Layouts/MS Dynamics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Layouts/MS Dynamics/README.md -------------------------------------------------------------------------------- /Examples/Layouts/Nav_Added_ Desktop Layout .json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Layouts/Nav_Added_ Desktop Layout .json -------------------------------------------------------------------------------- /Examples/Layouts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Layouts/README.md -------------------------------------------------------------------------------- /Examples/Layouts/Salesforce/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Layouts/Salesforce/README.md -------------------------------------------------------------------------------- /Examples/Layouts/ServiceNow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Layouts/ServiceNow/README.md -------------------------------------------------------------------------------- /Examples/Layouts/Zendesk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Layouts/Zendesk/README.md -------------------------------------------------------------------------------- /Examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/README.md -------------------------------------------------------------------------------- /Examples/Widgets/CRM/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/CRM/.eslintignore -------------------------------------------------------------------------------- /Examples/Widgets/CRM/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/CRM/.eslintrc.js -------------------------------------------------------------------------------- /Examples/Widgets/CRM/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/CRM/.gitignore -------------------------------------------------------------------------------- /Examples/Widgets/CRM/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/CRM/README.md -------------------------------------------------------------------------------- /Examples/Widgets/CRM/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/CRM/babel.config.js -------------------------------------------------------------------------------- /Examples/Widgets/CRM/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/CRM/jest.config.js -------------------------------------------------------------------------------- /Examples/Widgets/CRM/jest/cssTransform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/CRM/jest/cssTransform.js -------------------------------------------------------------------------------- /Examples/Widgets/CRM/jest/imgTransform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/CRM/jest/imgTransform.js -------------------------------------------------------------------------------- /Examples/Widgets/CRM/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/CRM/package.json -------------------------------------------------------------------------------- /Examples/Widgets/CRM/src/[sandbox]/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/CRM/src/[sandbox]/favicon.ico -------------------------------------------------------------------------------- /Examples/Widgets/CRM/src/[sandbox]/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/CRM/src/[sandbox]/index.html -------------------------------------------------------------------------------- /Examples/Widgets/CRM/src/[sandbox]/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/CRM/src/[sandbox]/index.ts -------------------------------------------------------------------------------- /Examples/Widgets/CRM/src/[sandbox]/sandbox.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/CRM/src/[sandbox]/sandbox.mock.ts -------------------------------------------------------------------------------- /Examples/Widgets/CRM/src/[sandbox]/sandbox.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/CRM/src/[sandbox]/sandbox.scss -------------------------------------------------------------------------------- /Examples/Widgets/CRM/src/[sandbox]/sandbox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/CRM/src/[sandbox]/sandbox.ts -------------------------------------------------------------------------------- /Examples/Widgets/CRM/src/assets/styles/mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/CRM/src/assets/styles/mixins.scss -------------------------------------------------------------------------------- /Examples/Widgets/CRM/src/components/App.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/CRM/src/components/App.scss -------------------------------------------------------------------------------- /Examples/Widgets/CRM/src/components/Summary.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/CRM/src/components/Summary.scss -------------------------------------------------------------------------------- /Examples/Widgets/CRM/src/components/Summary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/CRM/src/components/Summary.ts -------------------------------------------------------------------------------- /Examples/Widgets/CRM/src/components/TableStyles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/CRM/src/components/TableStyles.scss -------------------------------------------------------------------------------- /Examples/Widgets/CRM/src/components/VisitBadge.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/CRM/src/components/VisitBadge.scss -------------------------------------------------------------------------------- /Examples/Widgets/CRM/src/components/VisitBadge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/CRM/src/components/VisitBadge.ts -------------------------------------------------------------------------------- /Examples/Widgets/CRM/src/components/Visits.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/CRM/src/components/Visits.scss -------------------------------------------------------------------------------- /Examples/Widgets/CRM/src/components/Visits.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/CRM/src/components/Visits.ts -------------------------------------------------------------------------------- /Examples/Widgets/CRM/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/CRM/src/index.ts -------------------------------------------------------------------------------- /Examples/Widgets/CRM/src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/CRM/src/tsconfig.json -------------------------------------------------------------------------------- /Examples/Widgets/CRM/src/types/declare.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/CRM/src/types/declare.d.ts -------------------------------------------------------------------------------- /Examples/Widgets/CRM/src/types/globals.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/CRM/src/types/globals.d.ts -------------------------------------------------------------------------------- /Examples/Widgets/CRM/static/crm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/CRM/static/crm.png -------------------------------------------------------------------------------- /Examples/Widgets/CRM/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/CRM/tsconfig.json -------------------------------------------------------------------------------- /Examples/Widgets/CRM/webpack.config.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/CRM/webpack.config.d.ts -------------------------------------------------------------------------------- /Examples/Widgets/CRM/webpack.config.dev.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/CRM/webpack.config.dev.server.ts -------------------------------------------------------------------------------- /Examples/Widgets/CRM/webpack.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/CRM/webpack.config.ts -------------------------------------------------------------------------------- /Examples/Widgets/CovidByLocation/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/CovidByLocation/.eslintignore -------------------------------------------------------------------------------- /Examples/Widgets/CovidByLocation/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/CovidByLocation/.eslintrc.js -------------------------------------------------------------------------------- /Examples/Widgets/CovidByLocation/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/CovidByLocation/.gitignore -------------------------------------------------------------------------------- /Examples/Widgets/CovidByLocation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/CovidByLocation/README.md -------------------------------------------------------------------------------- /Examples/Widgets/CovidByLocation/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/CovidByLocation/babel.config.js -------------------------------------------------------------------------------- /Examples/Widgets/CovidByLocation/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/CovidByLocation/jest.config.js -------------------------------------------------------------------------------- /Examples/Widgets/CovidByLocation/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/CovidByLocation/package.json -------------------------------------------------------------------------------- /Examples/Widgets/CovidByLocation/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/CovidByLocation/src/index.ts -------------------------------------------------------------------------------- /Examples/Widgets/CovidByLocation/src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/CovidByLocation/src/tsconfig.json -------------------------------------------------------------------------------- /Examples/Widgets/CovidByLocation/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/CovidByLocation/tsconfig.json -------------------------------------------------------------------------------- /Examples/Widgets/CovidByLocation/webpack.config.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/CovidByLocation/webpack.config.d.ts -------------------------------------------------------------------------------- /Examples/Widgets/CovidByLocation/webpack.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/CovidByLocation/webpack.config.ts -------------------------------------------------------------------------------- /Examples/Widgets/HospitalBedCapacity/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/HospitalBedCapacity/.eslintignore -------------------------------------------------------------------------------- /Examples/Widgets/HospitalBedCapacity/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/HospitalBedCapacity/.eslintrc.js -------------------------------------------------------------------------------- /Examples/Widgets/HospitalBedCapacity/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/HospitalBedCapacity/.gitignore -------------------------------------------------------------------------------- /Examples/Widgets/HospitalBedCapacity/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/HospitalBedCapacity/README.md -------------------------------------------------------------------------------- /Examples/Widgets/HospitalBedCapacity/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/HospitalBedCapacity/babel.config.js -------------------------------------------------------------------------------- /Examples/Widgets/HospitalBedCapacity/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/HospitalBedCapacity/jest.config.js -------------------------------------------------------------------------------- /Examples/Widgets/HospitalBedCapacity/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/HospitalBedCapacity/package.json -------------------------------------------------------------------------------- /Examples/Widgets/HospitalBedCapacity/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/HospitalBedCapacity/src/index.ts -------------------------------------------------------------------------------- /Examples/Widgets/HospitalBedCapacity/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/HospitalBedCapacity/tsconfig.json -------------------------------------------------------------------------------- /Examples/Widgets/LearningWidgetSample/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | package-lock.json -------------------------------------------------------------------------------- /Examples/Widgets/LearningWidgetSample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/LearningWidgetSample/README.md -------------------------------------------------------------------------------- /Examples/Widgets/LearningWidgetSample/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/LearningWidgetSample/jest.config.js -------------------------------------------------------------------------------- /Examples/Widgets/LearningWidgetSample/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/LearningWidgetSample/package.json -------------------------------------------------------------------------------- /Examples/Widgets/LearningWidgetSample/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/LearningWidgetSample/src/index.ts -------------------------------------------------------------------------------- /Examples/Widgets/LearningWidgetSample/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/LearningWidgetSample/tsconfig.json -------------------------------------------------------------------------------- /Examples/Widgets/Map/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/Map/README.md -------------------------------------------------------------------------------- /Examples/Widgets/Map/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/Map/babel.config.js -------------------------------------------------------------------------------- /Examples/Widgets/Map/index.d.ts: -------------------------------------------------------------------------------- 1 | declare module "googlemaps"; 2 | -------------------------------------------------------------------------------- /Examples/Widgets/Map/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/Map/jest.config.js -------------------------------------------------------------------------------- /Examples/Widgets/Map/jest/cssTransform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/Map/jest/cssTransform.js -------------------------------------------------------------------------------- /Examples/Widgets/Map/jest/imgTransform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/Map/jest/imgTransform.js -------------------------------------------------------------------------------- /Examples/Widgets/Map/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/Map/package.json -------------------------------------------------------------------------------- /Examples/Widgets/Map/src/[sandbox]/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/Map/src/[sandbox]/favicon.ico -------------------------------------------------------------------------------- /Examples/Widgets/Map/src/[sandbox]/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/Map/src/[sandbox]/index.html -------------------------------------------------------------------------------- /Examples/Widgets/Map/src/[sandbox]/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/Map/src/[sandbox]/index.ts -------------------------------------------------------------------------------- /Examples/Widgets/Map/src/[sandbox]/sandbox.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/Map/src/[sandbox]/sandbox.scss -------------------------------------------------------------------------------- /Examples/Widgets/Map/src/[sandbox]/sandbox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/Map/src/[sandbox]/sandbox.ts -------------------------------------------------------------------------------- /Examples/Widgets/Map/src/assets/styles/mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/Map/src/assets/styles/mixins.scss -------------------------------------------------------------------------------- /Examples/Widgets/Map/src/components/App.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/Map/src/components/App.scss -------------------------------------------------------------------------------- /Examples/Widgets/Map/src/components/App.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/Map/src/components/App.ts -------------------------------------------------------------------------------- /Examples/Widgets/Map/src/components/darkMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/Map/src/components/darkMap.ts -------------------------------------------------------------------------------- /Examples/Widgets/Map/src/components/lightMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/Map/src/components/lightMap.ts -------------------------------------------------------------------------------- /Examples/Widgets/Map/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/Map/src/index.ts -------------------------------------------------------------------------------- /Examples/Widgets/Map/src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/Map/src/tsconfig.json -------------------------------------------------------------------------------- /Examples/Widgets/Map/src/types/declare.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/Map/src/types/declare.d.ts -------------------------------------------------------------------------------- /Examples/Widgets/Map/src/types/globals.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/Map/src/types/globals.d.ts -------------------------------------------------------------------------------- /Examples/Widgets/Map/static/map-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/Map/static/map-screenshot.png -------------------------------------------------------------------------------- /Examples/Widgets/Map/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/Map/tsconfig.json -------------------------------------------------------------------------------- /Examples/Widgets/Map/webpack.config.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/Map/webpack.config.d.ts -------------------------------------------------------------------------------- /Examples/Widgets/Map/webpack.config.dev.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/Map/webpack.config.dev.server.ts -------------------------------------------------------------------------------- /Examples/Widgets/Map/webpack.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/Map/webpack.config.ts -------------------------------------------------------------------------------- /Examples/Widgets/Notes/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/Notes/.eslintignore -------------------------------------------------------------------------------- /Examples/Widgets/Notes/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/Notes/.eslintrc.js -------------------------------------------------------------------------------- /Examples/Widgets/Notes/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/Notes/.gitignore -------------------------------------------------------------------------------- /Examples/Widgets/Notes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/Notes/README.md -------------------------------------------------------------------------------- /Examples/Widgets/Notes/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/Notes/babel.config.js -------------------------------------------------------------------------------- /Examples/Widgets/Notes/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/Notes/jest.config.js -------------------------------------------------------------------------------- /Examples/Widgets/Notes/jest/cssTransform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/Notes/jest/cssTransform.js -------------------------------------------------------------------------------- /Examples/Widgets/Notes/jest/imgTransform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/Notes/jest/imgTransform.js -------------------------------------------------------------------------------- /Examples/Widgets/Notes/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/Notes/package.json -------------------------------------------------------------------------------- /Examples/Widgets/Notes/src/NotesWidget.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/Notes/src/NotesWidget.ts -------------------------------------------------------------------------------- /Examples/Widgets/Notes/src/Utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/Notes/src/Utils.ts -------------------------------------------------------------------------------- /Examples/Widgets/Notes/src/[sandbox]/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/Notes/src/[sandbox]/favicon.ico -------------------------------------------------------------------------------- /Examples/Widgets/Notes/src/[sandbox]/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/Notes/src/[sandbox]/index.html -------------------------------------------------------------------------------- /Examples/Widgets/Notes/src/[sandbox]/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/Notes/src/[sandbox]/index.ts -------------------------------------------------------------------------------- /Examples/Widgets/Notes/src/[sandbox]/sandbox.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/Notes/src/[sandbox]/sandbox.mock.ts -------------------------------------------------------------------------------- /Examples/Widgets/Notes/src/[sandbox]/sandbox.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/Notes/src/[sandbox]/sandbox.scss -------------------------------------------------------------------------------- /Examples/Widgets/Notes/src/[sandbox]/sandbox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/Notes/src/[sandbox]/sandbox.ts -------------------------------------------------------------------------------- /Examples/Widgets/Notes/src/assets/styles/mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/Notes/src/assets/styles/mixins.scss -------------------------------------------------------------------------------- /Examples/Widgets/Notes/src/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/Notes/src/components/index.ts -------------------------------------------------------------------------------- /Examples/Widgets/Notes/src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/Notes/src/constants.ts -------------------------------------------------------------------------------- /Examples/Widgets/Notes/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/Notes/src/index.ts -------------------------------------------------------------------------------- /Examples/Widgets/Notes/src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/Notes/src/tsconfig.json -------------------------------------------------------------------------------- /Examples/Widgets/Notes/src/types/declare.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/Notes/src/types/declare.d.ts -------------------------------------------------------------------------------- /Examples/Widgets/Notes/src/types/globals.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/Notes/src/types/globals.d.ts -------------------------------------------------------------------------------- /Examples/Widgets/Notes/src/utils/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/Notes/src/utils/helpers.ts -------------------------------------------------------------------------------- /Examples/Widgets/Notes/static/notes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/Notes/static/notes.png -------------------------------------------------------------------------------- /Examples/Widgets/Notes/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/Notes/tsconfig.json -------------------------------------------------------------------------------- /Examples/Widgets/Notes/webpack.config.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/Notes/webpack.config.d.ts -------------------------------------------------------------------------------- /Examples/Widgets/Notes/webpack.config.dev.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/Notes/webpack.config.dev.server.ts -------------------------------------------------------------------------------- /Examples/Widgets/Notes/webpack.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/Notes/webpack.config.ts -------------------------------------------------------------------------------- /Examples/Widgets/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples/Widgets/RSS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/RSS/README.md -------------------------------------------------------------------------------- /Examples/Widgets/RSS/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/RSS/babel.config.js -------------------------------------------------------------------------------- /Examples/Widgets/RSS/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/RSS/jest.config.js -------------------------------------------------------------------------------- /Examples/Widgets/RSS/jest/cssTransform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/RSS/jest/cssTransform.js -------------------------------------------------------------------------------- /Examples/Widgets/RSS/jest/imgTransform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/RSS/jest/imgTransform.js -------------------------------------------------------------------------------- /Examples/Widgets/RSS/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/RSS/package.json -------------------------------------------------------------------------------- /Examples/Widgets/RSS/src/[sandbox]/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/RSS/src/[sandbox]/favicon.ico -------------------------------------------------------------------------------- /Examples/Widgets/RSS/src/[sandbox]/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/RSS/src/[sandbox]/index.html -------------------------------------------------------------------------------- /Examples/Widgets/RSS/src/[sandbox]/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/RSS/src/[sandbox]/index.ts -------------------------------------------------------------------------------- /Examples/Widgets/RSS/src/[sandbox]/sandbox.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/RSS/src/[sandbox]/sandbox.scss -------------------------------------------------------------------------------- /Examples/Widgets/RSS/src/[sandbox]/sandbox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/RSS/src/[sandbox]/sandbox.ts -------------------------------------------------------------------------------- /Examples/Widgets/RSS/src/assets/styles/mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/RSS/src/assets/styles/mixins.scss -------------------------------------------------------------------------------- /Examples/Widgets/RSS/src/components/App.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/RSS/src/components/App.scss -------------------------------------------------------------------------------- /Examples/Widgets/RSS/src/components/App.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/RSS/src/components/App.ts -------------------------------------------------------------------------------- /Examples/Widgets/RSS/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/RSS/src/index.ts -------------------------------------------------------------------------------- /Examples/Widgets/RSS/src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/RSS/src/tsconfig.json -------------------------------------------------------------------------------- /Examples/Widgets/RSS/src/types/declare.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/RSS/src/types/declare.d.ts -------------------------------------------------------------------------------- /Examples/Widgets/RSS/src/types/globals.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/RSS/src/types/globals.d.ts -------------------------------------------------------------------------------- /Examples/Widgets/RSS/static/rss-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/RSS/static/rss-screenshot.png -------------------------------------------------------------------------------- /Examples/Widgets/RSS/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/RSS/tsconfig.json -------------------------------------------------------------------------------- /Examples/Widgets/RSS/webpack.config.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/RSS/webpack.config.d.ts -------------------------------------------------------------------------------- /Examples/Widgets/RSS/webpack.config.dev.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/RSS/webpack.config.dev.server.ts -------------------------------------------------------------------------------- /Examples/Widgets/RSS/webpack.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/RSS/webpack.config.ts -------------------------------------------------------------------------------- /Examples/Widgets/RSS/yarn-error.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/RSS/yarn-error.log -------------------------------------------------------------------------------- /Examples/Widgets/Timer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/Timer/README.md -------------------------------------------------------------------------------- /Examples/Widgets/Timer/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/Timer/babel.config.js -------------------------------------------------------------------------------- /Examples/Widgets/Timer/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/Timer/jest.config.js -------------------------------------------------------------------------------- /Examples/Widgets/Timer/jest/cssTransform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/Timer/jest/cssTransform.js -------------------------------------------------------------------------------- /Examples/Widgets/Timer/jest/imgTransform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/Timer/jest/imgTransform.js -------------------------------------------------------------------------------- /Examples/Widgets/Timer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/Timer/package.json -------------------------------------------------------------------------------- /Examples/Widgets/Timer/src/[sandbox]/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/Timer/src/[sandbox]/favicon.ico -------------------------------------------------------------------------------- /Examples/Widgets/Timer/src/[sandbox]/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/Timer/src/[sandbox]/index.html -------------------------------------------------------------------------------- /Examples/Widgets/Timer/src/[sandbox]/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/Timer/src/[sandbox]/index.ts -------------------------------------------------------------------------------- /Examples/Widgets/Timer/src/[sandbox]/sandbox.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/Timer/src/[sandbox]/sandbox.scss -------------------------------------------------------------------------------- /Examples/Widgets/Timer/src/[sandbox]/sandbox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/Timer/src/[sandbox]/sandbox.ts -------------------------------------------------------------------------------- /Examples/Widgets/Timer/src/assets/styles/mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/Timer/src/assets/styles/mixins.scss -------------------------------------------------------------------------------- /Examples/Widgets/Timer/src/components/App.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/Timer/src/components/App.scss -------------------------------------------------------------------------------- /Examples/Widgets/Timer/src/components/App.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/Timer/src/components/App.ts -------------------------------------------------------------------------------- /Examples/Widgets/Timer/src/components/time-circle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/Timer/src/components/time-circle.ts -------------------------------------------------------------------------------- /Examples/Widgets/Timer/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/Timer/src/index.ts -------------------------------------------------------------------------------- /Examples/Widgets/Timer/src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/Timer/src/tsconfig.json -------------------------------------------------------------------------------- /Examples/Widgets/Timer/src/types/declare.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/Timer/src/types/declare.d.ts -------------------------------------------------------------------------------- /Examples/Widgets/Timer/src/types/globals.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/Timer/src/types/globals.d.ts -------------------------------------------------------------------------------- /Examples/Widgets/Timer/static/timer_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/Timer/static/timer_screenshot.png -------------------------------------------------------------------------------- /Examples/Widgets/Timer/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/Timer/tsconfig.json -------------------------------------------------------------------------------- /Examples/Widgets/Timer/webpack.config.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/Timer/webpack.config.d.ts -------------------------------------------------------------------------------- /Examples/Widgets/Timer/webpack.config.dev.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/Timer/webpack.config.dev.server.ts -------------------------------------------------------------------------------- /Examples/Widgets/Timer/webpack.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/Timer/webpack.config.ts -------------------------------------------------------------------------------- /Examples/Widgets/prebuild-app-widget/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/prebuild-app-widget/.babelrc -------------------------------------------------------------------------------- /Examples/Widgets/prebuild-app-widget/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/prebuild-app-widget/README.md -------------------------------------------------------------------------------- /Examples/Widgets/prebuild-app-widget/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/Widgets/prebuild-app-widget/package.json -------------------------------------------------------------------------------- /Examples/Widgets/prebuild-app-widget/src/index.js: -------------------------------------------------------------------------------- 1 | import "./PrebuildAppWrapper"; 2 | -------------------------------------------------------------------------------- /Examples/lerna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/lerna.json -------------------------------------------------------------------------------- /Examples/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Examples/package.json -------------------------------------------------------------------------------- /Iframe_Widget_Allowedparams.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/Iframe_Widget_Allowedparams.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/README.md -------------------------------------------------------------------------------- /angular/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/angular/.browserslistrc -------------------------------------------------------------------------------- /angular/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/angular/.editorconfig -------------------------------------------------------------------------------- /angular/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/angular/.gitignore -------------------------------------------------------------------------------- /angular/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/angular/README.md -------------------------------------------------------------------------------- /angular/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/angular/angular.json -------------------------------------------------------------------------------- /angular/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/angular/index.js -------------------------------------------------------------------------------- /angular/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/angular/karma.conf.js -------------------------------------------------------------------------------- /angular/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/angular/package-lock.json -------------------------------------------------------------------------------- /angular/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/angular/package.json -------------------------------------------------------------------------------- /angular/src/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/angular/src/.browserslistrc -------------------------------------------------------------------------------- /angular/src/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/angular/src/.editorconfig -------------------------------------------------------------------------------- /angular/src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/angular/src/.gitignore -------------------------------------------------------------------------------- /angular/src/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/angular/src/angular.json -------------------------------------------------------------------------------- /angular/src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/angular/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /angular/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /angular/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/angular/src/app/app.component.html -------------------------------------------------------------------------------- /angular/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/angular/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /angular/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/angular/src/app/app.component.ts -------------------------------------------------------------------------------- /angular/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/angular/src/app/app.module.ts -------------------------------------------------------------------------------- /angular/src/app/my-custom-component/sdk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/angular/src/app/my-custom-component/sdk.ts -------------------------------------------------------------------------------- /angular/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /angular/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /angular/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/angular/src/environments/environment.ts -------------------------------------------------------------------------------- /angular/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/angular/src/favicon.ico -------------------------------------------------------------------------------- /angular/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/angular/src/index.html -------------------------------------------------------------------------------- /angular/src/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/angular/src/karma.conf.js -------------------------------------------------------------------------------- /angular/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/angular/src/main.ts -------------------------------------------------------------------------------- /angular/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/angular/src/polyfills.ts -------------------------------------------------------------------------------- /angular/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/angular/src/styles.css -------------------------------------------------------------------------------- /angular/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/angular/src/test.ts -------------------------------------------------------------------------------- /angular/src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/angular/src/tsconfig.app.json -------------------------------------------------------------------------------- /angular/src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/angular/src/tsconfig.json -------------------------------------------------------------------------------- /angular/src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/angular/src/tsconfig.spec.json -------------------------------------------------------------------------------- /angular/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/angular/tsconfig.app.json -------------------------------------------------------------------------------- /angular/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/angular/tsconfig.json -------------------------------------------------------------------------------- /angular/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/angular/tsconfig.spec.json -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/config.json -------------------------------------------------------------------------------- /css/momentum-ui-icons.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/css/momentum-ui-icons.min.css -------------------------------------------------------------------------------- /css/momentum-ui.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/css/momentum-ui.min.css -------------------------------------------------------------------------------- /css/momentum-ui.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/css/momentum-ui.min.css.map -------------------------------------------------------------------------------- /demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/demo.js -------------------------------------------------------------------------------- /docs/0.5ad98560d4535953307c.manager.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/docs/0.5ad98560d4535953307c.manager.bundle.js -------------------------------------------------------------------------------- /docs/0.df390710.iframe.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/docs/0.df390710.iframe.bundle.js -------------------------------------------------------------------------------- /docs/0.df390710.iframe.bundle.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/docs/0.df390710.iframe.bundle.js.LICENSE.txt -------------------------------------------------------------------------------- /docs/0.df390710.iframe.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/docs/0.df390710.iframe.bundle.js.map -------------------------------------------------------------------------------- /docs/1.fd3b847c.iframe.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/docs/1.fd3b847c.iframe.bundle.js -------------------------------------------------------------------------------- /docs/1.fd3b847c.iframe.bundle.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/docs/1.fd3b847c.iframe.bundle.js.LICENSE.txt -------------------------------------------------------------------------------- /docs/1.fd3b847c.iframe.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/docs/1.fd3b847c.iframe.bundle.js.map -------------------------------------------------------------------------------- /docs/1.fdd7cb27db995ce54d8c.manager.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/docs/1.fdd7cb27db995ce54d8c.manager.bundle.js -------------------------------------------------------------------------------- /docs/10.becae9f7.iframe.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/docs/10.becae9f7.iframe.bundle.js -------------------------------------------------------------------------------- /docs/10.becae9f7.iframe.bundle.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/docs/10.becae9f7.iframe.bundle.js.LICENSE.txt -------------------------------------------------------------------------------- /docs/10.becae9f7.iframe.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/docs/10.becae9f7.iframe.bundle.js.map -------------------------------------------------------------------------------- /docs/2.cc66cb1a.iframe.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/docs/2.cc66cb1a.iframe.bundle.js -------------------------------------------------------------------------------- /docs/3.96b896bc.iframe.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/docs/3.96b896bc.iframe.bundle.js -------------------------------------------------------------------------------- /docs/5.6fb6d854d293b5c1f334.manager.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/docs/5.6fb6d854d293b5c1f334.manager.bundle.js -------------------------------------------------------------------------------- /docs/6.8057719e399ba51a6fbe.manager.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/docs/6.8057719e399ba51a6fbe.manager.bundle.js -------------------------------------------------------------------------------- /docs/7.0fd1250dcaff22b08dab.manager.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/docs/7.0fd1250dcaff22b08dab.manager.bundle.js -------------------------------------------------------------------------------- /docs/7.807a5b9a.iframe.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/docs/7.807a5b9a.iframe.bundle.js -------------------------------------------------------------------------------- /docs/7.807a5b9a.iframe.bundle.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/docs/7.807a5b9a.iframe.bundle.js.LICENSE.txt -------------------------------------------------------------------------------- /docs/7.807a5b9a.iframe.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/docs/7.807a5b9a.iframe.bundle.js.map -------------------------------------------------------------------------------- /docs/8.1f409ad74256394057ea.manager.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/docs/8.1f409ad74256394057ea.manager.bundle.js -------------------------------------------------------------------------------- /docs/8.3c2bbfb8.iframe.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/docs/8.3c2bbfb8.iframe.bundle.js -------------------------------------------------------------------------------- /docs/9.287b999ce9a8630fc369.manager.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/docs/9.287b999ce9a8630fc369.manager.bundle.js -------------------------------------------------------------------------------- /docs/9.31ebdbe5.iframe.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/docs/9.31ebdbe5.iframe.bundle.js -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/iframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/docs/iframe.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/main.7ec027ac5dd790616832.manager.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/docs/main.7ec027ac5dd790616832.manager.bundle.js -------------------------------------------------------------------------------- /docs/main.aed3d75d.iframe.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/docs/main.aed3d75d.iframe.bundle.js -------------------------------------------------------------------------------- /docs/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/docs/project.json -------------------------------------------------------------------------------- /docs/runtime~main.069416fe.iframe.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/docs/runtime~main.069416fe.iframe.bundle.js -------------------------------------------------------------------------------- /docs/static/media/CiscoSansTTBold.322189e6.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/docs/static/media/CiscoSansTTBold.322189e6.woff -------------------------------------------------------------------------------- /docs/static/media/CiscoSansTTBold.ca633863.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/docs/static/media/CiscoSansTTBold.ca633863.woff2 -------------------------------------------------------------------------------- /docs/static/media/CiscoSansTTHeavy.25dcd0a0.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/docs/static/media/CiscoSansTTHeavy.25dcd0a0.woff2 -------------------------------------------------------------------------------- /docs/static/media/CiscoSansTTHeavy.45ac7d6f.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/docs/static/media/CiscoSansTTHeavy.45ac7d6f.woff -------------------------------------------------------------------------------- /docs/static/media/CiscoSansTTLight.5f95ef69.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/docs/static/media/CiscoSansTTLight.5f95ef69.woff -------------------------------------------------------------------------------- /docs/static/media/CiscoSansTTLight.9a42f59d.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/docs/static/media/CiscoSansTTLight.9a42f59d.woff2 -------------------------------------------------------------------------------- /docs/static/media/CiscoSansTTRegular.58a0337b.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/docs/static/media/CiscoSansTTRegular.58a0337b.woff -------------------------------------------------------------------------------- /docs/static/media/CiscoSansTTRegular.7cd4b91d.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/docs/static/media/CiscoSansTTRegular.7cd4b91d.woff2 -------------------------------------------------------------------------------- /docs/static/media/CiscoSansTTThin.2153ecb1.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/docs/static/media/CiscoSansTTThin.2153ecb1.woff2 -------------------------------------------------------------------------------- /docs/static/media/CiscoSansTTThin.2670dd1b.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/docs/static/media/CiscoSansTTThin.2670dd1b.woff -------------------------------------------------------------------------------- /docs/static/media/bag.fc78469c.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/docs/static/media/bag.fc78469c.svg -------------------------------------------------------------------------------- /docs/static/media/code-brackets.2e1112d7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/docs/static/media/code-brackets.2e1112d7.svg -------------------------------------------------------------------------------- /docs/static/media/colors.a4bd0486.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/docs/static/media/colors.a4bd0486.svg -------------------------------------------------------------------------------- /docs/static/media/comments.a3859089.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/docs/static/media/comments.a3859089.svg -------------------------------------------------------------------------------- /docs/static/media/direction.b770f9af.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/docs/static/media/direction.b770f9af.svg -------------------------------------------------------------------------------- /docs/static/media/flags.971279e5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/docs/static/media/flags.971279e5.png -------------------------------------------------------------------------------- /docs/static/media/flags@2x.bb911f6d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/docs/static/media/flags@2x.bb911f6d.png -------------------------------------------------------------------------------- /docs/static/media/flow.edad2ac1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/docs/static/media/flow.edad2ac1.svg -------------------------------------------------------------------------------- /docs/static/media/guide.f3b1e168.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/docs/static/media/guide.f3b1e168.svg -------------------------------------------------------------------------------- /docs/static/media/momentum-ui-icons.cfd5b32a.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/docs/static/media/momentum-ui-icons.cfd5b32a.woff2 -------------------------------------------------------------------------------- /docs/static/media/momentum-ui-icons.e91da4b5.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/docs/static/media/momentum-ui-icons.e91da4b5.woff -------------------------------------------------------------------------------- /docs/static/media/momentum.c8a620f8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/docs/static/media/momentum.c8a620f8.png -------------------------------------------------------------------------------- /docs/static/media/plugin.d494b228.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/docs/static/media/plugin.d494b228.svg -------------------------------------------------------------------------------- /docs/static/media/repo.6d496322.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/docs/static/media/repo.6d496322.svg -------------------------------------------------------------------------------- /docs/static/media/stackalt.dba9fbb3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/docs/static/media/stackalt.dba9fbb3.svg -------------------------------------------------------------------------------- /docs/static/media/wc2.b3380074.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/docs/static/media/wc2.b3380074.png -------------------------------------------------------------------------------- /docs/static/media/wxcc_logo.53ea363f.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/docs/static/media/wxcc_logo.53ea363f.svg -------------------------------------------------------------------------------- /docs/vendors~main.3be4a177.iframe.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/docs/vendors~main.3be4a177.iframe.bundle.js -------------------------------------------------------------------------------- /docs/vendors~main.3be4a177.iframe.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/docs/vendors~main.3be4a177.iframe.bundle.js.map -------------------------------------------------------------------------------- /docs/widgets/covid-by-location.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/docs/widgets/covid-by-location.js -------------------------------------------------------------------------------- /docs/widgets/covid-by-location.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/docs/widgets/covid-by-location.js.map -------------------------------------------------------------------------------- /docs/widgets/crm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/docs/widgets/crm.js -------------------------------------------------------------------------------- /docs/widgets/crm.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/docs/widgets/crm.js.map -------------------------------------------------------------------------------- /docs/widgets/custom-react-wc-widget-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/docs/widgets/custom-react-wc-widget-test.js -------------------------------------------------------------------------------- /docs/widgets/hospital-bed-capacity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/docs/widgets/hospital-bed-capacity.js -------------------------------------------------------------------------------- /docs/widgets/hospital-bed-capacity.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/docs/widgets/hospital-bed-capacity.js.map -------------------------------------------------------------------------------- /docs/widgets/learning-widget-sample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/docs/widgets/learning-widget-sample.js -------------------------------------------------------------------------------- /docs/widgets/learning-widget-sample.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/docs/widgets/learning-widget-sample.js.map -------------------------------------------------------------------------------- /docs/widgets/map-widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/docs/widgets/map-widget.js -------------------------------------------------------------------------------- /docs/widgets/map-widget.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/docs/widgets/map-widget.js.map -------------------------------------------------------------------------------- /docs/widgets/notes-widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/docs/widgets/notes-widget.js -------------------------------------------------------------------------------- /docs/widgets/notes-widget.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/docs/widgets/notes-widget.js.map -------------------------------------------------------------------------------- /docs/widgets/react-testing-gadget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/docs/widgets/react-testing-gadget.js -------------------------------------------------------------------------------- /docs/widgets/rss-feed-widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/docs/widgets/rss-feed-widget.js -------------------------------------------------------------------------------- /docs/widgets/rss-feed-widget.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/docs/widgets/rss-feed-widget.js.map -------------------------------------------------------------------------------- /docs/widgets/timer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/docs/widgets/timer.js -------------------------------------------------------------------------------- /docs/widgets/timer.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/docs/widgets/timer.js.map -------------------------------------------------------------------------------- /docs/widgets/wc-testing-gadget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/docs/widgets/wc-testing-gadget.js -------------------------------------------------------------------------------- /fonts/CiscoSansTT-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/fonts/CiscoSansTT-Medium.woff -------------------------------------------------------------------------------- /fonts/CiscoSansTT-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/fonts/CiscoSansTT-Medium.woff2 -------------------------------------------------------------------------------- /fonts/CiscoSansTTBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/fonts/CiscoSansTTBold.woff -------------------------------------------------------------------------------- /fonts/CiscoSansTTBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/fonts/CiscoSansTTBold.woff2 -------------------------------------------------------------------------------- /fonts/CiscoSansTTBoldOblique.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/fonts/CiscoSansTTBoldOblique.woff -------------------------------------------------------------------------------- /fonts/CiscoSansTTBoldOblique.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/fonts/CiscoSansTTBoldOblique.woff2 -------------------------------------------------------------------------------- /fonts/CiscoSansTTExtraLight.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/fonts/CiscoSansTTExtraLight.woff -------------------------------------------------------------------------------- /fonts/CiscoSansTTExtraLight.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/fonts/CiscoSansTTExtraLight.woff2 -------------------------------------------------------------------------------- /fonts/CiscoSansTTExtraLightOblique.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/fonts/CiscoSansTTExtraLightOblique.woff -------------------------------------------------------------------------------- /fonts/CiscoSansTTExtraLightOblique.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/fonts/CiscoSansTTExtraLightOblique.woff2 -------------------------------------------------------------------------------- /fonts/CiscoSansTTHeavy.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/fonts/CiscoSansTTHeavy.woff -------------------------------------------------------------------------------- /fonts/CiscoSansTTHeavy.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/fonts/CiscoSansTTHeavy.woff2 -------------------------------------------------------------------------------- /fonts/CiscoSansTTHeavyOblique.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/fonts/CiscoSansTTHeavyOblique.woff -------------------------------------------------------------------------------- /fonts/CiscoSansTTHeavyOblique.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/fonts/CiscoSansTTHeavyOblique.woff2 -------------------------------------------------------------------------------- /fonts/CiscoSansTTLight.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/fonts/CiscoSansTTLight.woff -------------------------------------------------------------------------------- /fonts/CiscoSansTTLight.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/fonts/CiscoSansTTLight.woff2 -------------------------------------------------------------------------------- /fonts/CiscoSansTTLightOblique.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/fonts/CiscoSansTTLightOblique.woff -------------------------------------------------------------------------------- /fonts/CiscoSansTTLightOblique.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/fonts/CiscoSansTTLightOblique.woff2 -------------------------------------------------------------------------------- /fonts/CiscoSansTTRegular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/fonts/CiscoSansTTRegular.woff -------------------------------------------------------------------------------- /fonts/CiscoSansTTRegular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/fonts/CiscoSansTTRegular.woff2 -------------------------------------------------------------------------------- /fonts/CiscoSansTTRegularOblique.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/fonts/CiscoSansTTRegularOblique.woff -------------------------------------------------------------------------------- /fonts/CiscoSansTTRegularOblique.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/fonts/CiscoSansTTRegularOblique.woff2 -------------------------------------------------------------------------------- /fonts/CiscoSansTTThin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/fonts/CiscoSansTTThin.woff -------------------------------------------------------------------------------- /fonts/CiscoSansTTThin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/fonts/CiscoSansTTThin.woff2 -------------------------------------------------------------------------------- /fonts/CiscoSansTTThinOblique.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/fonts/CiscoSansTTThinOblique.woff -------------------------------------------------------------------------------- /fonts/CiscoSansTTThinOblique.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/fonts/CiscoSansTTThinOblique.woff2 -------------------------------------------------------------------------------- /fonts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/fonts/index.html -------------------------------------------------------------------------------- /fonts/momentum-ui-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/fonts/momentum-ui-icons.svg -------------------------------------------------------------------------------- /fonts/momentum-ui-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/fonts/momentum-ui-icons.ttf -------------------------------------------------------------------------------- /fonts/momentum-ui-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/fonts/momentum-ui-icons.woff -------------------------------------------------------------------------------- /fonts/momentum-ui-icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/fonts/momentum-ui-icons.woff2 -------------------------------------------------------------------------------- /gridstack-h5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/gridstack-h5.js -------------------------------------------------------------------------------- /gridstack.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/gridstack.min.css -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/index.html -------------------------------------------------------------------------------- /lit-element/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/lit-element/.eslintignore -------------------------------------------------------------------------------- /lit-element/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/lit-element/.eslintrc.js -------------------------------------------------------------------------------- /lit-element/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/lit-element/.gitignore -------------------------------------------------------------------------------- /lit-element/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/lit-element/README.md -------------------------------------------------------------------------------- /lit-element/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/lit-element/babel.config.js -------------------------------------------------------------------------------- /lit-element/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/lit-element/jest.config.js -------------------------------------------------------------------------------- /lit-element/jest/cssTransform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/lit-element/jest/cssTransform.js -------------------------------------------------------------------------------- /lit-element/jest/imgTransform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/lit-element/jest/imgTransform.js -------------------------------------------------------------------------------- /lit-element/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/lit-element/package.json -------------------------------------------------------------------------------- /lit-element/src/[sandbox]/DISCLAIMER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/lit-element/src/[sandbox]/DISCLAIMER.md -------------------------------------------------------------------------------- /lit-element/src/[sandbox]/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/lit-element/src/[sandbox]/favicon.ico -------------------------------------------------------------------------------- /lit-element/src/[sandbox]/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/lit-element/src/[sandbox]/index.html -------------------------------------------------------------------------------- /lit-element/src/[sandbox]/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/lit-element/src/[sandbox]/index.ts -------------------------------------------------------------------------------- /lit-element/src/[sandbox]/sandbox.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/lit-element/src/[sandbox]/sandbox.mock.ts -------------------------------------------------------------------------------- /lit-element/src/[sandbox]/sandbox.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/lit-element/src/[sandbox]/sandbox.scss -------------------------------------------------------------------------------- /lit-element/src/[sandbox]/sandbox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/lit-element/src/[sandbox]/sandbox.ts -------------------------------------------------------------------------------- /lit-element/src/assets/styles/mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/lit-element/src/assets/styles/mixins.scss -------------------------------------------------------------------------------- /lit-element/src/assets/styles/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/lit-element/src/assets/styles/variables.scss -------------------------------------------------------------------------------- /lit-element/src/components/App.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/lit-element/src/components/App.scss -------------------------------------------------------------------------------- /lit-element/src/components/App.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/lit-element/src/components/App.ts -------------------------------------------------------------------------------- /lit-element/src/components/sdk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/lit-element/src/components/sdk.ts -------------------------------------------------------------------------------- /lit-element/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/lit-element/src/index.ts -------------------------------------------------------------------------------- /lit-element/src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/lit-element/src/tsconfig.json -------------------------------------------------------------------------------- /lit-element/src/types/declare.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/lit-element/src/types/declare.d.ts -------------------------------------------------------------------------------- /lit-element/src/types/globals.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/lit-element/src/types/globals.d.ts -------------------------------------------------------------------------------- /lit-element/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/lit-element/tsconfig.json -------------------------------------------------------------------------------- /lit-element/webpack.config.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/lit-element/webpack.config.d.ts -------------------------------------------------------------------------------- /lit-element/webpack.config.dev.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/lit-element/webpack.config.dev.server.ts -------------------------------------------------------------------------------- /lit-element/webpack.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/lit-element/webpack.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/package.json -------------------------------------------------------------------------------- /react/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/react/.eslintrc -------------------------------------------------------------------------------- /react/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/react/.gitignore -------------------------------------------------------------------------------- /react/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/react/README.md -------------------------------------------------------------------------------- /react/direflow-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/react/direflow-config.json -------------------------------------------------------------------------------- /react/direflow-webpack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/react/direflow-webpack.js -------------------------------------------------------------------------------- /react/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/react/package.json -------------------------------------------------------------------------------- /react/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/react/public/favicon.ico -------------------------------------------------------------------------------- /react/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/react/public/index.html -------------------------------------------------------------------------------- /react/src/[sandbox]/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/react/src/[sandbox]/index.ts -------------------------------------------------------------------------------- /react/src/[sandbox]/sandbox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/react/src/[sandbox]/sandbox.ts -------------------------------------------------------------------------------- /react/src/__mocks__/globalMock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/react/src/__mocks__/globalMock.js -------------------------------------------------------------------------------- /react/src/__mocks__/styleMock.js: -------------------------------------------------------------------------------- 1 | module.exports = '.mocked-css {padding: 20px;}'; 2 | -------------------------------------------------------------------------------- /react/src/direflow-component/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/react/src/direflow-component/App.css -------------------------------------------------------------------------------- /react/src/direflow-component/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/react/src/direflow-component/App.tsx -------------------------------------------------------------------------------- /react/src/direflow-component/sdk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/react/src/direflow-component/sdk.ts -------------------------------------------------------------------------------- /react/src/direflow-component/test/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/react/src/direflow-component/test/App.test.tsx -------------------------------------------------------------------------------- /react/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/react/src/index.tsx -------------------------------------------------------------------------------- /react/src/react-app-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/react/src/react-app-env.d.ts -------------------------------------------------------------------------------- /react/src/types/declare.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/react/src/types/declare.d.ts -------------------------------------------------------------------------------- /react/src/types/globals.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/react/src/types/globals.d.ts -------------------------------------------------------------------------------- /react/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/react/tsconfig.json -------------------------------------------------------------------------------- /story-book/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/.editorconfig -------------------------------------------------------------------------------- /story-book/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/.gitignore -------------------------------------------------------------------------------- /story-book/.storybook/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/.storybook/main.js -------------------------------------------------------------------------------- /story-book/.storybook/manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/.storybook/manager.js -------------------------------------------------------------------------------- /story-book/.storybook/preview-body.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/.storybook/preview-body.html -------------------------------------------------------------------------------- /story-book/.storybook/preview-head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/.storybook/preview-head.html -------------------------------------------------------------------------------- /story-book/.storybook/preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/.storybook/preview.js -------------------------------------------------------------------------------- /story-book/.storybook/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/.storybook/theme.js -------------------------------------------------------------------------------- /story-book/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/LICENSE -------------------------------------------------------------------------------- /story-book/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/README.md -------------------------------------------------------------------------------- /story-book/assets/open-wc-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/assets/open-wc-logo.svg -------------------------------------------------------------------------------- /story-book/assets/webex_cc_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/assets/webex_cc_logo.png -------------------------------------------------------------------------------- /story-book/docs/0.df390710.iframe.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/docs/0.df390710.iframe.bundle.js -------------------------------------------------------------------------------- /story-book/docs/0.df390710.iframe.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/docs/0.df390710.iframe.bundle.js.map -------------------------------------------------------------------------------- /story-book/docs/1.fd3b847c.iframe.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/docs/1.fd3b847c.iframe.bundle.js -------------------------------------------------------------------------------- /story-book/docs/1.fd3b847c.iframe.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/docs/1.fd3b847c.iframe.bundle.js.map -------------------------------------------------------------------------------- /story-book/docs/10.becae9f7.iframe.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/docs/10.becae9f7.iframe.bundle.js -------------------------------------------------------------------------------- /story-book/docs/10.becae9f7.iframe.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/docs/10.becae9f7.iframe.bundle.js.map -------------------------------------------------------------------------------- /story-book/docs/2.cc66cb1a.iframe.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/docs/2.cc66cb1a.iframe.bundle.js -------------------------------------------------------------------------------- /story-book/docs/3.96b896bc.iframe.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/docs/3.96b896bc.iframe.bundle.js -------------------------------------------------------------------------------- /story-book/docs/7.807a5b9a.iframe.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/docs/7.807a5b9a.iframe.bundle.js -------------------------------------------------------------------------------- /story-book/docs/7.807a5b9a.iframe.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/docs/7.807a5b9a.iframe.bundle.js.map -------------------------------------------------------------------------------- /story-book/docs/8.3c2bbfb8.iframe.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/docs/8.3c2bbfb8.iframe.bundle.js -------------------------------------------------------------------------------- /story-book/docs/9.31ebdbe5.iframe.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/docs/9.31ebdbe5.iframe.bundle.js -------------------------------------------------------------------------------- /story-book/docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/docs/favicon.ico -------------------------------------------------------------------------------- /story-book/docs/iframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/docs/iframe.html -------------------------------------------------------------------------------- /story-book/docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/docs/index.html -------------------------------------------------------------------------------- /story-book/docs/main.aed3d75d.iframe.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/docs/main.aed3d75d.iframe.bundle.js -------------------------------------------------------------------------------- /story-book/docs/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/docs/project.json -------------------------------------------------------------------------------- /story-book/docs/static/media/bag.fc78469c.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/docs/static/media/bag.fc78469c.svg -------------------------------------------------------------------------------- /story-book/docs/static/media/colors.a4bd0486.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/docs/static/media/colors.a4bd0486.svg -------------------------------------------------------------------------------- /story-book/docs/static/media/comments.a3859089.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/docs/static/media/comments.a3859089.svg -------------------------------------------------------------------------------- /story-book/docs/static/media/direction.b770f9af.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/docs/static/media/direction.b770f9af.svg -------------------------------------------------------------------------------- /story-book/docs/static/media/flags.971279e5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/docs/static/media/flags.971279e5.png -------------------------------------------------------------------------------- /story-book/docs/static/media/flags@2x.bb911f6d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/docs/static/media/flags@2x.bb911f6d.png -------------------------------------------------------------------------------- /story-book/docs/static/media/flow.edad2ac1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/docs/static/media/flow.edad2ac1.svg -------------------------------------------------------------------------------- /story-book/docs/static/media/guide.f3b1e168.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/docs/static/media/guide.f3b1e168.svg -------------------------------------------------------------------------------- /story-book/docs/static/media/momentum.c8a620f8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/docs/static/media/momentum.c8a620f8.png -------------------------------------------------------------------------------- /story-book/docs/static/media/plugin.d494b228.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/docs/static/media/plugin.d494b228.svg -------------------------------------------------------------------------------- /story-book/docs/static/media/repo.6d496322.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/docs/static/media/repo.6d496322.svg -------------------------------------------------------------------------------- /story-book/docs/static/media/stackalt.dba9fbb3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/docs/static/media/stackalt.dba9fbb3.svg -------------------------------------------------------------------------------- /story-book/docs/static/media/wc2.b3380074.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/docs/static/media/wc2.b3380074.png -------------------------------------------------------------------------------- /story-book/docs/static/media/wxcc_logo.53ea363f.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/docs/static/media/wxcc_logo.53ea363f.svg -------------------------------------------------------------------------------- /story-book/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/index.html -------------------------------------------------------------------------------- /story-book/log.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/log.log -------------------------------------------------------------------------------- /story-book/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/package.json -------------------------------------------------------------------------------- /story-book/src/StoryBook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/StoryBook.js -------------------------------------------------------------------------------- /story-book/src/ThemeChangeListener.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/ThemeChangeListener.js -------------------------------------------------------------------------------- /story-book/src/stories/Crm.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/Crm.stories.js -------------------------------------------------------------------------------- /story-book/src/stories/GoogleMap.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/GoogleMap.stories.js -------------------------------------------------------------------------------- /story-book/src/stories/Introduction.stories.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/Introduction.stories.mdx -------------------------------------------------------------------------------- /story-book/src/stories/LearningWidget.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/LearningWidget.stories.js -------------------------------------------------------------------------------- /story-book/src/stories/News.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/News.stories.js -------------------------------------------------------------------------------- /story-book/src/stories/Notes.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/Notes.stories.js -------------------------------------------------------------------------------- /story-book/src/stories/RSS-Feed.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/RSS-Feed.stories.js -------------------------------------------------------------------------------- /story-book/src/stories/Timer.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/Timer.stories.js -------------------------------------------------------------------------------- /story-book/src/stories/assets/bag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/bag.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/code-brackets.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/code-brackets.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/colors.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/colors.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/comments.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/comments.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/direction.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/direction.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/flow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/flow.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/fonts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/fonts/index.html -------------------------------------------------------------------------------- /story-book/src/stories/assets/guide.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/guide.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/.npmignore -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/CHANGELOG.md -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/LICENSE -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/README.md -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/fonts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/fonts/index.html -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/package.json -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/scss/core.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/scss/core.scss -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/scss/icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/scss/icons.scss -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/scss/list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/scss/list.scss -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/scss/mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/scss/mixins.scss -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/scss/path.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/scss/path.scss -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/scss/sizes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/scss/sizes.scss -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/add_10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/add_10.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/add_12.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/add_12.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/add_14.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/add_14.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/add_16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/add_16.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/add_20.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/add_20.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/add_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/add_24.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/admin_12.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/admin_12.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/admin_14.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/admin_14.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/admin_16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/admin_16.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/admin_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/admin_24.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/admin_32.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/admin_32.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/alarm_16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/alarm_16.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/alarm_20.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/alarm_20.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/alarm_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/alarm_24.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/alert_10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/alert_10.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/alert_12.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/alert_12.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/alert_14.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/alert_14.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/alert_16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/alert_16.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/alert_18.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/alert_18.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/alert_20.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/alert_20.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/alert_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/alert_24.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/alert_28.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/alert_28.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/alert_36.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/alert_36.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/apps_16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/apps_16.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/apps_20.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/apps_20.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/apps_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/apps_24.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/apps_28.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/apps_28.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/back_10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/back_10.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/back_12.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/back_12.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/back_16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/back_16.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/back_20.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/back_20.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/back_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/back_24.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/back_28.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/back_28.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/back_36.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/back_36.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/beta_20.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/beta_20.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/blog_16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/blog_16.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/blur_12.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/blur_12.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/blur_20.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/blur_20.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/blur_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/blur_24.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/bot_12.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/bot_12.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/bot_14.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/bot_14.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/bot_16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/bot_16.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/bot_18.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/bot_18.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/bot_20.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/bot_20.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/bot_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/bot_24.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/bot_36.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/bot_36.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/bot_40.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/bot_40.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/bot_56.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/bot_56.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/box_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/box_24.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/bug_16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/bug_16.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/camera_8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/camera_8.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/cancel_6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/cancel_6.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/cancel_8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/cancel_8.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/chat_10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/chat_10.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/chat_12.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/chat_12.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/chat_14.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/chat_14.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/chat_16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/chat_16.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/chat_18.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/chat_18.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/chat_20.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/chat_20.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/chat_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/chat_24.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/chat_26.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/chat_26.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/chat_28.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/chat_28.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/chat_32.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/chat_32.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/chat_36.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/chat_36.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/chat_40.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/chat_40.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/chat_8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/chat_8.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/check_10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/check_10.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/check_12.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/check_12.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/check_14.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/check_14.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/check_16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/check_16.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/check_18.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/check_18.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/check_20.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/check_20.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/check_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/check_24.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/check_28.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/check_28.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/check_32.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/check_32.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/check_36.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/check_36.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/check_40.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/check_40.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/check_64.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/check_64.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/check_8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/check_8.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/check_80.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/check_80.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/clear_12.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/clear_12.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/clear_14.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/clear_14.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/clear_16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/clear_16.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/clear_18.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/clear_18.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/clear_20.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/clear_20.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/clear_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/clear_24.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/clear_32.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/clear_32.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/clear_44.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/clear_44.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/clear_80.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/clear_80.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/cloud_16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/cloud_16.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/cloud_20.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/cloud_20.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/cloud_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/cloud_24.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/cloud_32.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/cloud_32.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/copy_10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/copy_10.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/copy_12.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/copy_12.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/copy_14.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/copy_14.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/copy_16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/copy_16.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/copy_20.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/copy_20.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/copy_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/copy_24.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/cpu_16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/cpu_16.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/cpu_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/cpu_24.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/cpu_32.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/cpu_32.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/crop_16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/crop_16.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/dnd_12.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/dnd_12.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/dnd_120.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/dnd_120.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/dnd_124.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/dnd_124.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/dnd_14.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/dnd_14.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/dnd_16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/dnd_16.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/dnd_18.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/dnd_18.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/dnd_20.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/dnd_20.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/dnd_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/dnd_24.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/dnd_26.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/dnd_26.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/dnd_28.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/dnd_28.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/dnd_32.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/dnd_32.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/dnd_36.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/dnd_36.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/dnd_40.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/dnd_40.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/dnd_48.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/dnd_48.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/dnd_56.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/dnd_56.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/dnd_8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/dnd_8.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/drag_14.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/drag_14.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/drag_16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/drag_16.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/dx70_16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/dx70_16.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/dx70_20.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/dx70_20.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/dx80_16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/dx80_16.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/dx80_20.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/dx80_20.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/edit_10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/edit_10.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/edit_12.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/edit_12.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/edit_14.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/edit_14.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/edit_16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/edit_16.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/edit_18.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/edit_18.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/edit_20.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/edit_20.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/edit_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/edit_24.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/edit_56.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/edit_56.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/email_12.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/email_12.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/email_14.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/email_14.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/email_16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/email_16.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/email_20.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/email_20.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/email_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/email_24.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/email_56.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/email_56.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/enter_16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/enter_16.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/error_12.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/error_12.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/error_16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/error_16.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/error_20.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/error_20.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/error_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/error_24.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/error_40.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/error_40.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/error_8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/error_8.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/error_80.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/error_80.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/event_16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/event_16.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/fbw_16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/fbw_16.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/fbw_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/fbw_24.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/ffw_16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/ffw_16.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/ffw_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/ffw_24.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/files_10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/files_10.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/files_12.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/files_12.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/files_14.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/files_14.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/files_16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/files_16.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/files_20.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/files_20.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/files_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/files_24.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/files_26.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/files_26.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/files_28.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/files_28.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/files_32.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/files_32.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/files_36.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/files_36.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/files_72.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/files_72.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/files_8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/files_8.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/filter_8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/filter_8.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/flag_10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/flag_10.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/flag_12.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/flag_12.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/flag_14.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/flag_14.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/flag_16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/flag_16.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/flag_20.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/flag_20.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/flag_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/flag_24.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/flag_64.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/flag_64.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/flag_8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/flag_8.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/flow_16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/flow_16.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/flow_32.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/flow_32.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/gif_12.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/gif_12.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/gif_16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/gif_16.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/gif_20.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/gif_20.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/gif_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/gif_24.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/help_10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/help_10.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/help_12.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/help_12.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/help_16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/help_16.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/help_20.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/help_20.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/help_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/help_24.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/help_8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/help_8.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/hide_10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/hide_10.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/hide_12.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/hide_12.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/hide_16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/hide_16.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/info_8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/info_8.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/lock_8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/lock_8.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/pen_12.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/pen_12.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/pen_14.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/pen_14.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/pen_16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/pen_16.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/pen_18.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/pen_18.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/pen_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/pen_24.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/pen_8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/pen_8.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/pin_10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/pin_10.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/pin_12.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/pin_12.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/pin_14.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/pin_14.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/pin_16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/pin_16.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/pin_18.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/pin_18.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/pin_20.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/pin_20.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/pin_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/pin_24.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/plus_8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/plus_8.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/pmr_10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/pmr_10.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/pmr_12.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/pmr_12.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/pmr_14.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/pmr_14.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/pmr_16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/pmr_16.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/pmr_18.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/pmr_18.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/pmr_20.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/pmr_20.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/pmr_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/pmr_24.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/pmr_32.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/pmr_32.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/pmr_36.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/pmr_36.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/pto_12.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/pto_12.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/pto_14.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/pto_14.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/pto_16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/pto_16.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/pto_18.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/pto_18.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/pto_20.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/pto_20.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/pto_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/pto_24.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/pto_26.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/pto_26.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/pto_28.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/pto_28.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/pto_32.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/pto_32.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/pto_40.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/pto_40.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/pto_48.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/pto_48.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/pto_56.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/pto_56.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/pto_8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/pto_8.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/q-a_16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/q-a_16.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/q-a_20.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/q-a_20.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/q-a_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/q-a_24.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/q-a_36.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/q-a_36.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/ram_16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/ram_16.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/sms_12.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/sms_12.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/sms_16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/sms_16.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/tag_12.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/tag_12.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/tag_16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/tag_16.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/tag_20.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/tag_20.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/tap_20.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/tap_20.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/icons/svg/usb_16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/icons/svg/usb_16.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/images/flags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/images/flags.png -------------------------------------------------------------------------------- /story-book/src/stories/assets/images/flags@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/images/flags@2x.png -------------------------------------------------------------------------------- /story-book/src/stories/assets/momentum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/momentum.png -------------------------------------------------------------------------------- /story-book/src/stories/assets/plugin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/plugin.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/repo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/repo.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/stackalt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/stackalt.svg -------------------------------------------------------------------------------- /story-book/src/stories/assets/wc2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/wc2.png -------------------------------------------------------------------------------- /story-book/src/stories/assets/wxcc_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/assets/wxcc_logo.svg -------------------------------------------------------------------------------- /story-book/src/stories/default.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/stories/default.config.js -------------------------------------------------------------------------------- /story-book/src/story-book.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/src/story-book.js -------------------------------------------------------------------------------- /story-book/web-dev-server.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/story-book/web-dev-server.config.mjs -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/style.css -------------------------------------------------------------------------------- /webex_cc_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/webex_cc_logo.png -------------------------------------------------------------------------------- /widgets/covid-by-location.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/widgets/covid-by-location.js -------------------------------------------------------------------------------- /widgets/covid-by-location.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/widgets/covid-by-location.js.map -------------------------------------------------------------------------------- /widgets/crm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/widgets/crm.js -------------------------------------------------------------------------------- /widgets/crm.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/widgets/crm.js.map -------------------------------------------------------------------------------- /widgets/custom-react-wc-widget-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/widgets/custom-react-wc-widget-test.js -------------------------------------------------------------------------------- /widgets/hospital-bed-capacity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/widgets/hospital-bed-capacity.js -------------------------------------------------------------------------------- /widgets/hospital-bed-capacity.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/widgets/hospital-bed-capacity.js.map -------------------------------------------------------------------------------- /widgets/learning-widget-sample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/widgets/learning-widget-sample.js -------------------------------------------------------------------------------- /widgets/learning-widget-sample.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/widgets/learning-widget-sample.js.map -------------------------------------------------------------------------------- /widgets/map-widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/widgets/map-widget.js -------------------------------------------------------------------------------- /widgets/map-widget.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/widgets/map-widget.js.map -------------------------------------------------------------------------------- /widgets/notes-widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/widgets/notes-widget.js -------------------------------------------------------------------------------- /widgets/notes-widget.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/widgets/notes-widget.js.map -------------------------------------------------------------------------------- /widgets/react-testing-gadget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/widgets/react-testing-gadget.js -------------------------------------------------------------------------------- /widgets/rss-feed-widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/widgets/rss-feed-widget.js -------------------------------------------------------------------------------- /widgets/rss-feed-widget.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/widgets/rss-feed-widget.js.map -------------------------------------------------------------------------------- /widgets/timer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/widgets/timer.js -------------------------------------------------------------------------------- /widgets/timer.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/widgets/timer.js.map -------------------------------------------------------------------------------- /widgets/wc-testing-gadget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/webex-contact-center-widget-starter/HEAD/widgets/wc-testing-gadget.js --------------------------------------------------------------------------------