(function webpackUniversalModuleDefinition(root, factory) {
if(typeof exports === 'object' && typeof module === 'object')
module.exports = factory();
else if(typeof define === 'function' && define.amd)
define([], factory);
else {
var a = factory();
for(var i in a) (typeof exports === 'object' ? exports : root)[i] = a[i];
}
})(this, function() {
return /******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};
/******/
/******/ // The require function
/******/ function __webpack_require__(moduleId) {
/******/
/******/ // Check if module is in cache
/******/ if(installedModules[moduleId]) {
/******/ return installedModules[moduleId].exports;
/******/ }
/******/ // Create a new module (and put it into the cache)
/******/ var module = installedModules[moduleId] = {
/******/ i: moduleId,
/******/ l: false,
/******/ exports: {}
/******/ };
/******/
/******/ // Execute the module function
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
/******/
/******/ // Flag the module as loaded
/******/ module.l = true;
/******/
/******/ // Return the exports of the module
/******/ return module.exports;
/******/ }
/******/
/******/
/******/ // expose the modules object (__webpack_modules__)
/******/ __webpack_require__.m = modules;
/******/
/******/ // expose the module cache
/******/ __webpack_require__.c = installedModules;
/******/
/******/ // define getter function for harmony exports
/******/ __webpack_require__.d = function(exports, name, getter) {
/******/ if(!__webpack_require__.o(exports, name)) {
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
/******/ }
/******/ };
/******/
/******/ // define __esModule on exports
/******/ __webpack_require__.r = function(exports) {
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
/******/ }
/******/ Object.defineProperty(exports, '__esModule', { value: true });
/******/ };
/******/
/******/ // create a fake namespace object
/******/ // mode & 1: value is a module id, require it
/******/ // mode & 2: merge all properties of value into the ns
/******/ // mode & 4: return value when already ns object
/******/ // mode & 8|1: behave like require
/******/ __webpack_require__.t = function(value, mode) {
/******/ if(mode & 1) value = __webpack_require__(value);
/******/ if(mode & 8) return value;
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
/******/ var ns = Object.create(null);
/******/ __webpack_require__.r(ns);
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
/******/ return ns;
/******/ };
/******/
/******/ // getDefaultExport function for compatibility with non-harmony modules
/******/ __webpack_require__.n = function(module) {
/******/ var getter = module && module.__esModule ?
/******/ function getDefault() { return module['default']; } :
/******/ function getModuleExports() { return module; };
/******/ __webpack_require__.d(getter, 'a', getter);
/******/ return getter;
/******/ };
/******/
/******/ // Object.prototype.hasOwnProperty.call
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
/******/
/******/ // __webpack_public_path__
/******/ __webpack_require__.p = "";
/******/
/******/
/******/ // Load entry module and return exports
/******/ return __webpack_require__(__webpack_require__.s = "./projects/icons/src/shapes/all-shapes.ts");
/******/ })
/************************************************************************/
/******/ ({
/***/ "./projects/icons/src/shapes/all-shapes.ts":
/*!*************************************************!*\
!*** ./projects/icons/src/shapes/all-shapes.ts ***!
\*************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
/*
* Copyright (c) 2016-2021 VMware, Inc. All Rights Reserved.
* This software is released under MIT license.
* The full license information can be found in LICENSE in the root directory of this project.
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.AllShapes = void 0;
var chart_shapes_1 = __webpack_require__(/*! ./chart-shapes */ "./projects/icons/src/shapes/chart-shapes.ts");
var commerce_shapes_1 = __webpack_require__(/*! ./commerce-shapes */ "./projects/icons/src/shapes/commerce-shapes.ts");
var core_shapes_1 = __webpack_require__(/*! ./core-shapes */ "./projects/icons/src/shapes/core-shapes.ts");
var essential_shapes_1 = __webpack_require__(/*! ./essential-shapes */ "./projects/icons/src/shapes/essential-shapes.ts");
var media_shapes_1 = __webpack_require__(/*! ./media-shapes */ "./projects/icons/src/shapes/media-shapes.ts");
var social_shapes_1 = __webpack_require__(/*! ./social-shapes */ "./projects/icons/src/shapes/social-shapes.ts");
var technology_shapes_1 = __webpack_require__(/*! ./technology-shapes */ "./projects/icons/src/shapes/technology-shapes.ts");
var text_edit_shapes_1 = __webpack_require__(/*! ./text-edit-shapes */ "./projects/icons/src/shapes/text-edit-shapes.ts");
var travel_shapes_1 = __webpack_require__(/*! ./travel-shapes */ "./projects/icons/src/shapes/travel-shapes.ts");
var allShapesSets = [
core_shapes_1.CoreShapes,
commerce_shapes_1.CommerceShapes,
essential_shapes_1.EssentialShapes,
media_shapes_1.MediaShapes,
social_shapes_1.SocialShapes,
technology_shapes_1.TechnologyShapes,
travel_shapes_1.TravelShapes,
chart_shapes_1.ChartShapes,
text_edit_shapes_1.TextEditShapes,
];
var allShapes = {};
exports.AllShapes = allShapes;
for (var _i = 0, allShapesSets_1 = allShapesSets; _i < allShapesSets_1.length; _i++) {
var set = allShapesSets_1[_i];
for (var shape in set) {
if (set.hasOwnProperty(shape)) {
allShapes[shape] = set[shape];
}
}
}
if (typeof window !== 'undefined' && window.hasOwnProperty('ClarityIcons')) {
window.ClarityIcons.add(allShapes);
}
/***/ }),
/***/ "./projects/icons/src/shapes/chart-shapes.ts":
/*!***************************************************!*\
!*** ./projects/icons/src/shapes/chart-shapes.ts ***!
\***************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.ChartShapes = exports.ClrShapeBellCurve = exports.ClrShapeTickChart = exports.ClrShapeScatterPlot = exports.ClrShapePieChart = exports.ClrShapeLineChart = exports.ClrShapeHeatMap = exports.ClrShapeGridChart = exports.ClrShapeCurveChart = exports.ClrShapeCloudChart = exports.ClrShapeBubbleChart = exports.ClrShapeBoxPlot = exports.ClrShapeBarChart = exports.ClrShapeAxisChart = void 0;
/*
* Copyright (c) 2016-2021 VMware, Inc. All Rights Reserved.
* This software is released under MIT license.
* The full license information can be found in LICENSE in the root directory of this project.
*/
var descriptor_config_1 = __webpack_require__(/*! ../utils/descriptor-config */ "./projects/icons/src/utils/descriptor-config.ts");
var svg_tag_generator_1 = __webpack_require__(/*! ../utils/svg-tag-generator */ "./projects/icons/src/utils/svg-tag-generator.ts");
exports.ClrShapeAxisChart = (0, svg_tag_generator_1.clrIconSVG)("\n \n \n \n \n \n \n \n \n \n \n \n \n ");
exports.ClrShapeBarChart = (0, svg_tag_generator_1.clrIconSVG)("\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ");
exports.ClrShapeBoxPlot = (0, svg_tag_generator_1.clrIconSVG)("\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ");
exports.ClrShapeBubbleChart = (0, svg_tag_generator_1.clrIconSVG)("\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ");
exports.ClrShapeCloudChart = (0, svg_tag_generator_1.clrIconSVG)("\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ");
exports.ClrShapeCurveChart = (0, svg_tag_generator_1.clrIconSVG)("\n \n \n \n \n \n \n \n \n \n \n \n \n ");
exports.ClrShapeGridChart = (0, svg_tag_generator_1.clrIconSVG)("\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ");
exports.ClrShapeHeatMap = (0, svg_tag_generator_1.clrIconSVG)("\n \n \n \n \n \n \n \n \n \n \n \n \n ");
exports.ClrShapeLineChart = (0, svg_tag_generator_1.clrIconSVG)("\n \n \n \n \n \n \n \n \n \n \n \n \n ");
exports.ClrShapePieChart = (0, svg_tag_generator_1.clrIconSVG)("\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ");
exports.ClrShapeScatterPlot = (0, svg_tag_generator_1.clrIconSVG)("\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ");
exports.ClrShapeTickChart = (0, svg_tag_generator_1.clrIconSVG)("\n \n \n \n \n \n \n \n \n \n \n \n \n ");
exports.ClrShapeBellCurve = (0, svg_tag_generator_1.clrIconSVG)("");
exports.ChartShapes = {
'axis-chart': exports.ClrShapeAxisChart,
'bar-chart': exports.ClrShapeBarChart,
'bubble-chart': exports.ClrShapeBubbleChart,
'cloud-chart': exports.ClrShapeCloudChart,
'curve-chart': exports.ClrShapeCurveChart,
'grid-chart': exports.ClrShapeGridChart,
'line-chart': exports.ClrShapeLineChart,
'pie-chart': exports.ClrShapePieChart,
'tick-chart': exports.ClrShapeTickChart,
'scatter-plot': exports.ClrShapeScatterPlot,
'box-plot': exports.ClrShapeBoxPlot,
'heat-map': exports.ClrShapeHeatMap,
'bell-curve': exports.ClrShapeBellCurve,
};
Object.defineProperty(exports.ChartShapes, 'analytics', (0, descriptor_config_1.descriptorConfig)(exports.ChartShapes['line-chart']));
if (typeof window !== 'undefined' && window.hasOwnProperty('ClarityIcons')) {
window.ClarityIcons.add(exports.ChartShapes);
}
/***/ }),
/***/ "./projects/icons/src/shapes/commerce-shapes.ts":
/*!******************************************************!*\
!*** ./projects/icons/src/shapes/commerce-shapes.ts ***!
\******************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.CommerceShapes = exports.ClrShapeFactory = exports.ClrShapeEmployee = exports.ClrShapeEmployeeGroup = exports.ClrShapeRuble = exports.ClrShapePeso = exports.ClrShapeCoinBag = exports.ClrShapeBitcoin = exports.ClrShapeYen = exports.ClrShapeWon = exports.ClrShapeRupee = exports.ClrShapePound = exports.ClrShapeECheck = exports.ClrShapeDollarBill = exports.ClrShapeBank = exports.ClrShapeCreditCard = exports.ClrShapeDollar = exports.ClrShapeEuro = exports.ClrShapeStore = exports.ClrShapeWallet = exports.ClrShapeShoppingCart = exports.ClrShapePiggyBank = exports.ClrShapeShoppingBag = exports.ClrShapeCalculator = void 0;
/*
* Copyright (c) 2016-2021 VMware, Inc. All Rights Reserved.
* This software is released under MIT license.
* The full license information can be found in LICENSE in the root directory of this project.
*/
var descriptor_config_1 = __webpack_require__(/*! ../utils/descriptor-config */ "./projects/icons/src/utils/descriptor-config.ts");
var svg_tag_generator_1 = __webpack_require__(/*! ../utils/svg-tag-generator */ "./projects/icons/src/utils/svg-tag-generator.ts");
exports.ClrShapeCalculator = (0, svg_tag_generator_1.clrIconSVG)("\n \n \n \n \n \n \n \n \n \n \n ");
exports.ClrShapeShoppingBag = (0, svg_tag_generator_1.clrIconSVG)("\n \n ");
exports.ClrShapePiggyBank = (0, svg_tag_generator_1.clrIconSVG)("\n \n \n ");
exports.ClrShapeShoppingCart = (0, svg_tag_generator_1.clrIconSVG)("\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ");
exports.ClrShapeWallet = (0, svg_tag_generator_1.clrIconSVG)("\n \n \n ");
exports.ClrShapeStore = (0, svg_tag_generator_1.clrIconSVG)("\n \n \n ");
exports.ClrShapeEuro = (0, svg_tag_generator_1.clrIconSVG)("\n ");
exports.ClrShapeDollar = (0, svg_tag_generator_1.clrIconSVG)("\n \n \n ");
exports.ClrShapeCreditCard = (0, svg_tag_generator_1.clrIconSVG)("\n \n ");
exports.ClrShapeBank = (0, svg_tag_generator_1.clrIconSVG)("\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ");
exports.ClrShapeDollarBill = (0, svg_tag_generator_1.clrIconSVG)("\n \n \n ");
exports.ClrShapeECheck = (0, svg_tag_generator_1.clrIconSVG)("\n \n \n \n \n ");
exports.ClrShapePound = (0, svg_tag_generator_1.clrIconSVG)("\n ");
exports.ClrShapeRupee = (0, svg_tag_generator_1.clrIconSVG)("\n ");
exports.ClrShapeWon = (0, svg_tag_generator_1.clrIconSVG)("\n \n \n \n \n \n ");
exports.ClrShapeYen = (0, svg_tag_generator_1.clrIconSVG)("\n ");
exports.ClrShapeBitcoin = (0, svg_tag_generator_1.clrIconSVG)("\n \n \n ");
exports.ClrShapeCoinBag = (0, svg_tag_generator_1.clrIconSVG)("\n ");
exports.ClrShapePeso = (0, svg_tag_generator_1.clrIconSVG)("");
exports.ClrShapeRuble = (0, svg_tag_generator_1.clrIconSVG)("");
exports.ClrShapeEmployeeGroup = (0, svg_tag_generator_1.clrIconSVG)("\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ");
exports.ClrShapeEmployee = (0, svg_tag_generator_1.clrIconSVG)("\n \n \n \n \n \n \n ");
exports.ClrShapeFactory = (0, svg_tag_generator_1.clrIconSVG)("\n \n \n \n \n \n \n \n \n \n \n ");
exports.CommerceShapes = {
calculator: exports.ClrShapeCalculator,
'piggy-bank': exports.ClrShapePiggyBank,
'shopping-bag': exports.ClrShapeShoppingBag,
'shopping-cart': exports.ClrShapeShoppingCart,
wallet: exports.ClrShapeWallet,
store: exports.ClrShapeStore,
euro: exports.ClrShapeEuro,
dollar: exports.ClrShapeDollar,
peso: exports.ClrShapePeso,
'credit-card': exports.ClrShapeCreditCard,
bank: exports.ClrShapeBank,
'dollar-bill': exports.ClrShapeDollarBill,
'e-check': exports.ClrShapeECheck,
pound: exports.ClrShapePound,
rupee: exports.ClrShapeRupee,
won: exports.ClrShapeWon,
yen: exports.ClrShapeYen,
bitcoin: exports.ClrShapeBitcoin,
ruble: exports.ClrShapeRuble,
'coin-bag': exports.ClrShapeCoinBag,
'employee-group': exports.ClrShapeEmployeeGroup,
employee: exports.ClrShapeEmployee,
factory: exports.ClrShapeFactory,
};
Object.defineProperty(exports.CommerceShapes, 'savings', (0, descriptor_config_1.descriptorConfig)(exports.CommerceShapes['piggy-bank']));
if (typeof window !== 'undefined' && window.hasOwnProperty('ClarityIcons')) {
window.ClarityIcons.add(exports.CommerceShapes);
}
/***/ }),
/***/ "./projects/icons/src/shapes/core-shapes.ts":
/*!**************************************************!*\
!*** ./projects/icons/src/shapes/core-shapes.ts ***!
\**************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.CoreShapes = exports.ClrShapeArrow = exports.ClrShapeStepForward2 = exports.ClrShapeEyeHide = exports.ClrShapeEye = exports.ClrShapeEvent = exports.ClrShapeCalendar = exports.ClrShapeAngleDouble = exports.ClrShapeViewColumns = exports.ClrShapeSearch = exports.ClrShapeVmBug = exports.ClrShapeFilterGridCircle = exports.ClrShapeFilterGrid = exports.ClrShapeEllipsisVertical = exports.ClrShapeEllipsisHorizontal = exports.ClrShapeCloud = exports.ClrShapeImage = exports.ClrShapeBell = exports.ClrShapeFolderOpen = exports.ClrShapeFolder = exports.ClrShapeAngle = exports.ClrShapeUser = exports.ClrShapeBars = exports.ClrShapeHelpInfo = exports.ClrShapeWarningStandard = exports.ClrShapeErrorStandard = exports.ClrShapeSuccessStandard = exports.ClrShapeInfoStandard = exports.ClrShapeInfoCircle = exports.ClrShapeCheckCircle = exports.ClrShapeExclamationCircle = exports.ClrShapeExclamationTriangle = exports.ClrShapeTimes = exports.ClrShapeCheck = exports.ClrShapeCog = exports.ClrShapeHome = exports.ClrShapeUnknownStatus = void 0;
/*
* Copyright (c) 2016-2021 VMware, Inc. All Rights Reserved.
* This software is released under MIT license.
* The full license information can be found in LICENSE in the root directory of this project.
*/
var descriptor_config_1 = __webpack_require__(/*! ../utils/descriptor-config */ "./projects/icons/src/utils/descriptor-config.ts");
var svg_tag_generator_1 = __webpack_require__(/*! ../utils/svg-tag-generator */ "./projects/icons/src/utils/svg-tag-generator.ts");
exports.ClrShapeUnknownStatus = (0, svg_tag_generator_1.clrIconSVG)("\n ");
exports.ClrShapeHome = (0, svg_tag_generator_1.clrIconSVG)("\n \n \n ");
exports.ClrShapeCog = (0, svg_tag_generator_1.clrIconSVG)("\n \n \n \n \n \n \n \n \n \n \n \n ");
exports.ClrShapeCheck = (0, svg_tag_generator_1.clrIconSVG)("");
exports.ClrShapeTimes = (0, svg_tag_generator_1.clrIconSVG)("");
exports.ClrShapeExclamationTriangle = (0, svg_tag_generator_1.clrIconSVG)("\n \n \n ");
exports.ClrShapeExclamationCircle = (0, svg_tag_generator_1.clrIconSVG)("\n \n \n ");
exports.ClrShapeCheckCircle = (0, svg_tag_generator_1.clrIconSVG)("\n \n ");
exports.ClrShapeInfoCircle = (0, svg_tag_generator_1.clrIconSVG)("\n \n \n ");
exports.ClrShapeInfoStandard = (0, svg_tag_generator_1.clrIconSVG)("\n \n \n ");
exports.ClrShapeSuccessStandard = (0, svg_tag_generator_1.clrIconSVG)("\n \n ");
exports.ClrShapeErrorStandard = (0, svg_tag_generator_1.clrIconSVG)("\n \n \n ");
exports.ClrShapeWarningStandard = (0, svg_tag_generator_1.clrIconSVG)("\n \n \n ");
exports.ClrShapeHelpInfo = (0, svg_tag_generator_1.clrIconSVG)("\n \n \n \n ");
exports.ClrShapeBars = (0, svg_tag_generator_1.clrIconSVG)("\n \n ");
exports.ClrShapeUser = (0, svg_tag_generator_1.clrIconSVG)("\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ");
exports.ClrShapeAngle = (0, svg_tag_generator_1.clrIconSVG)("");
exports.ClrShapeFolder = (0, svg_tag_generator_1.clrIconSVG)("\n \n \n \n \n \n \n \n \n ");
exports.ClrShapeFolderOpen = (0, svg_tag_generator_1.clrIconSVG)("\n \n \n \n \n \n \n \n \n ");
exports.ClrShapeBell = (0, svg_tag_generator_1.clrIconSVG)("\n \n \n \n \n \n \n \n \n ");
exports.ClrShapeImage = (0, svg_tag_generator_1.clrIconSVG)("\n \n \n \n \n \n \n \n \n ");
exports.ClrShapeCloud = (0, svg_tag_generator_1.clrIconSVG)("\n \n \n \n \n \n \n \n \n ");
exports.ClrShapeEllipsisHorizontal = (0, svg_tag_generator_1.clrIconSVG)("\n \n \n \n \n \n ");
exports.ClrShapeEllipsisVertical = (0, svg_tag_generator_1.clrIconSVG)("\n \n \n \n \n \n ");
exports.ClrShapeFilterGrid = (0, svg_tag_generator_1.clrIconSVG)("\n ");
exports.ClrShapeFilterGridCircle = (0, svg_tag_generator_1.clrIconSVG)("\n \n \n ");
exports.ClrShapeVmBug = (0, svg_tag_generator_1.clrIconSVG)("");
exports.ClrShapeSearch = (0, svg_tag_generator_1.clrIconSVG)("\n ");
exports.ClrShapeViewColumns = (0, svg_tag_generator_1.clrIconSVG)("");
exports.ClrShapeAngleDouble = (0, svg_tag_generator_1.clrIconSVG)("\n ");
exports.ClrShapeCalendar = (0, svg_tag_generator_1.clrIconSVG)("\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ");
exports.ClrShapeEvent = (0, svg_tag_generator_1.clrIconSVG)("\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ");
exports.ClrShapeEye = (0, svg_tag_generator_1.clrIconSVG)("\n \n \n ");
exports.ClrShapeEyeHide = (0, svg_tag_generator_1.clrIconSVG)("\n \n \n \n \n ");
exports.ClrShapeStepForward2 = (0, svg_tag_generator_1.clrIconSVG)("");
exports.ClrShapeArrow = (0, svg_tag_generator_1.clrIconSVG)("");
exports.CoreShapes = {
'unknown-status': exports.ClrShapeUnknownStatus,
home: exports.ClrShapeHome,
cog: exports.ClrShapeCog,
check: exports.ClrShapeCheck,
times: exports.ClrShapeTimes,
'exclamation-triangle': exports.ClrShapeExclamationTriangle,
'exclamation-circle': exports.ClrShapeExclamationCircle,
'check-circle': exports.ClrShapeCheckCircle,
'info-circle': exports.ClrShapeInfoCircle,
'info-standard': exports.ClrShapeInfoStandard,
'success-standard': exports.ClrShapeSuccessStandard,
'error-standard': exports.ClrShapeErrorStandard,
'warning-standard': exports.ClrShapeWarningStandard,
'help-info': exports.ClrShapeHelpInfo,
bars: exports.ClrShapeBars,
user: exports.ClrShapeUser,
angle: exports.ClrShapeAngle,
folder: exports.ClrShapeFolder,
'folder-open': exports.ClrShapeFolderOpen,
bell: exports.ClrShapeBell,
image: exports.ClrShapeImage,
cloud: exports.ClrShapeCloud,
'ellipsis-horizontal': exports.ClrShapeEllipsisHorizontal,
'ellipsis-vertical': exports.ClrShapeEllipsisVertical,
'filter-grid': exports.ClrShapeFilterGrid,
'filter-grid-circle': exports.ClrShapeFilterGridCircle,
'vm-bug': exports.ClrShapeVmBug,
search: exports.ClrShapeSearch,
'view-columns': exports.ClrShapeViewColumns,
'angle-double': exports.ClrShapeAngleDouble,
calendar: exports.ClrShapeCalendar,
event: exports.ClrShapeEvent,
eye: exports.ClrShapeEye,
'eye-hide': exports.ClrShapeEyeHide,
'step-forward-2': exports.ClrShapeStepForward2,
arrow: exports.ClrShapeArrow,
};
Object.defineProperty(exports.CoreShapes, 'house', (0, descriptor_config_1.descriptorConfig)(exports.CoreShapes.home));
Object.defineProperty(exports.CoreShapes, 'settings', (0, descriptor_config_1.descriptorConfig)(exports.CoreShapes.cog));
Object.defineProperty(exports.CoreShapes, 'success', (0, descriptor_config_1.descriptorConfig)(exports.CoreShapes.check));
Object.defineProperty(exports.CoreShapes, 'close', (0, descriptor_config_1.descriptorConfig)(exports.CoreShapes.times));
Object.defineProperty(exports.CoreShapes, 'warning', (0, descriptor_config_1.descriptorConfig)(exports.CoreShapes['exclamation-triangle']));
Object.defineProperty(exports.CoreShapes, 'error', (0, descriptor_config_1.descriptorConfig)(exports.CoreShapes['exclamation-circle']));
Object.defineProperty(exports.CoreShapes, 'info', (0, descriptor_config_1.descriptorConfig)(exports.CoreShapes['info-circle']));
Object.defineProperty(exports.CoreShapes, 'menu', (0, descriptor_config_1.descriptorConfig)(exports.CoreShapes.bars));
Object.defineProperty(exports.CoreShapes, 'avatar', (0, descriptor_config_1.descriptorConfig)(exports.CoreShapes.user));
Object.defineProperty(exports.CoreShapes, 'caret', (0, descriptor_config_1.descriptorConfig)(exports.CoreShapes.angle));
Object.defineProperty(exports.CoreShapes, 'directory', (0, descriptor_config_1.descriptorConfig)(exports.CoreShapes.folder));
Object.defineProperty(exports.CoreShapes, 'notification', (0, descriptor_config_1.descriptorConfig)(exports.CoreShapes.bell));
Object.defineProperty(exports.CoreShapes, 'collapse', (0, descriptor_config_1.descriptorConfig)(exports.CoreShapes['angle-double']));
/***/ }),
/***/ "./projects/icons/src/shapes/essential-shapes.ts":
/*!*******************************************************!*\
!*** ./projects/icons/src/shapes/essential-shapes.ts ***!
\*******************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.ClrShapeLogout = exports.ClrShapeLogin = exports.ClrShapeHelp = exports.ClrShapeCopy = exports.ClrShapeChildArrow = exports.ClrShapeCircleArrow = exports.ClrShapeAlarmClock = exports.ClrShapeClock = exports.ClrShapeHistory = exports.ClrShapeTags = exports.ClrShapeTag = exports.ClrShapeTrash = exports.ClrShapeTimesCircle = exports.ClrShapeBan = exports.ClrShapePlusCircle = exports.ClrShapeMinusCircle = exports.ClrShapeMinus = exports.ClrShapePlus = exports.ClrShapeFile = exports.ClrShapePin = exports.ClrShapeFilter = exports.ClrShapePopOut = exports.ClrShapeUsers = exports.ClrShapeUnlock = exports.ClrShapeLock = exports.ClrShapeUpload = exports.ClrShapeDownload = exports.ClrShapeLightbulb = exports.ClrShapeViewCards = exports.ClrShapeViewList = exports.ClrShapeSync = exports.ClrShapeRefresh = exports.ClrShapeNote = exports.ClrShapePencil = exports.ClrShapeThermometer = exports.ClrShapeBug = exports.ClrShapeScissors = exports.ClrShapeAsterisk = exports.ClrShapeBook = exports.ClrShapeObjects = exports.ClrShapeResize = exports.ClrShapeCursorHandClick = exports.ClrShapeCursorHand = exports.ClrShapeCursorArrow = exports.ClrShapeGridView = exports.ClrShapeBubbleExclamation = exports.ClrShapeNew = exports.ClrShapeAlarmOff = exports.ClrShapePinboard = exports.ClrShapeAddText = void 0;
exports.ClrShapeClone = exports.ClrShapeCursorMove = exports.ClrShapeWand = exports.ClrShapeSun = exports.ClrShapeMoon = exports.ClrShapeFilter2 = exports.ClrShapeDragHandle = exports.ClrShapeCopyToClipboard = exports.ClrShapeColorPicker = exports.ClrShapeBriefcase = exports.ClrShapeExpandCard = exports.ClrShapeCollapseCard = exports.ClrShapeSortBy = exports.ClrShapeAccessibility2 = exports.ClrShapeAccessibility1 = exports.ClrShapeShrink = exports.ClrShapePaperclip = exports.ClrShapeFileGroup = exports.ClrShapeRepeat = exports.ClrShapeIdBadge = exports.ClrShapeBalance = exports.ClrShapeOrganization = exports.ClrShapeNoAccess = exports.ClrShapeHourglass = exports.ClrShapeFlame = exports.ClrShapeTarget = exports.ClrShapeBullseye = exports.ClrShapeWrench = exports.ClrShapeBolt = exports.ClrShapeLibrary = exports.ClrShapeKey = exports.ClrShapeZoomOut = exports.ClrShapeZoomIn = exports.ClrShapeWindowRestore = exports.ClrShapeWindowMin = exports.ClrShapeWindowMax = exports.ClrShapeWindowClose = exports.ClrShapeTools = exports.ClrShapeSwitch = exports.ClrShapeTwoWayArrows = exports.ClrShapeFileSettings = exports.ClrShapeScroll = exports.ClrShapeUndo = exports.ClrShapeRedo = exports.ClrShapeList = exports.ClrShapeFirewall = exports.ClrShapeClipboard = exports.ClrShapeSlider = exports.ClrShapeWorld = exports.ClrShapePrinter = void 0;
exports.EssentialShapes = exports.ClrShapeColorPalette = exports.ClrShapeFirstAid = exports.ClrShapeBeta = exports.ClrShapeDotCircle = exports.ClrShapeCircle = exports.ClrShapeCrosshairs = exports.ClrShapeVolume = exports.ClrShapeTable = exports.ClrShapeSnowflake = exports.ClrShapeFuel = exports.ClrShapeForm = exports.ClrShapeFish = exports.ClrShapeTree = exports.ClrShapeRecycle = exports.ClrShapeFilterOff = exports.ClrShapeFileZip = exports.ClrShapeCursorHandOpen = exports.ClrShapeCursorHandGrab = exports.ClrShapeTreeView = exports.ClrShapePortrait = exports.ClrShapePaste = exports.ClrShapeLandscape = exports.ClrShapeEraser = exports.ClrShapeDragHandleCorner = exports.ClrShapeDetails = void 0;
/*
* Copyright (c) 2016-2021 VMware, Inc. All Rights Reserved.
* This software is released under MIT license.
* The full license information can be found in LICENSE in the root directory of this project.
*/
var descriptor_config_1 = __webpack_require__(/*! ../utils/descriptor-config */ "./projects/icons/src/utils/descriptor-config.ts");
var svg_tag_generator_1 = __webpack_require__(/*! ../utils/svg-tag-generator */ "./projects/icons/src/utils/svg-tag-generator.ts");
var core_shapes_1 = __webpack_require__(/*! ./core-shapes */ "./projects/icons/src/shapes/core-shapes.ts");
exports.ClrShapeAddText = (0, svg_tag_generator_1.clrIconSVG)("\n \n \n ");
exports.ClrShapePinboard = (0, svg_tag_generator_1.clrIconSVG)("\n \n \n \n ");
exports.ClrShapeAlarmOff = (0, svg_tag_generator_1.clrIconSVG)("\n \n