diff --git a/.gitignore b/.gitignore
index 63520da7..96c85f7a 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,4 @@
node_modules
-dist
-build
+# temporarily as it's not using npm
+# dist
+# build
diff --git a/bin/universalTransform.js b/bin/universalTransform.js
new file mode 100644
index 00000000..c0f9cc33
--- /dev/null
+++ b/bin/universalTransform.js
@@ -0,0 +1,83 @@
+const fs = require('fs');
+const path = require('path');
+
+const iconsPath = path.join(__dirname, '../src/icons');
+
+function transform(input) {
+ const replacements = {
+ svgs: 'Svg',
+ circle: 'Circle',
+ clipPath: 'ClipPath',
+ defs: 'Defs',
+ ellipse: 'Ellipse',
+ g: 'G',
+ image: 'Image',
+ line: 'Line',
+ linearGradient: 'LinearGradient',
+ mask: 'Mask',
+ path: 'Path',
+ pattern: 'Pattern',
+ polygon: 'Polygon',
+ polyline: 'Polyline',
+ radialGradient: 'RadialGradient',
+ rect: 'Rect',
+ stop: 'Stop',
+ svg: 'Svg',
+ symbol: 'Symbol',
+ tSpan: 'TSpan',
+ text: 'Text',
+ textPath: 'TextPath',
+ use: 'Use',
+ };
+
+ let used = [];
+
+ const transformed = Object.entries(replacements).reduce(
+ (result, [key, value]) => {
+ const regex = new RegExp(`(<(\/)?)(${key})(>)?`, 'g');
+
+ if (regex.test(result)) {
+ if (key !== 'svg') {
+ used.push(value);
+ }
+
+ return result.replace(regex, `$1${value}$4`);
+ }
+
+ return result;
+ },
+ input
+ );
+
+ const subModules = used.map((u) => ` ${u},\n`).join('');
+
+ const imports = `import Svg, {\n${subModules}} from 'svgs';`;
+
+ const lines = transformed.split(/\n/g);
+
+ lines.splice(2, 0, imports);
+
+ return lines.join('\n');
+}
+
+function catchError(err) {
+ if (err) {
+ console.error(err);
+ }
+}
+
+fs.readdir(iconsPath, function (err, files) {
+ if (err) {
+ return console.log('Unable to scan directory: ' + err);
+ }
+
+ files.forEach(function (file) {
+ const filePath = path.resolve(iconsPath, file);
+
+ const text = fs.readFileSync(filePath, 'utf8', catchError);
+
+ const transformedText = transform(text);
+
+ fs.writeFile(filePath, transformedText, 'utf8', catchError);
+ });
+});
diff --git a/build/index.js b/build/index.js
new file mode 100644
index 00000000..81c1195d
--- /dev/null
+++ b/build/index.js
@@ -0,0 +1,10645 @@
+'use strict';
+
+Object.defineProperty(exports, '__esModule', { value: true });
+
+function _interopDefault (ex) { return (ex && (typeof ex === 'object') && 'default' in ex) ? ex['default'] : ex; }
+
+var React = require('react');
+var React__default = _interopDefault(React);
+var PropTypes = _interopDefault(require('prop-types'));
+var Svg = require('svgs');
+var Svg__default = _interopDefault(Svg);
+
+function _extends() {
+ _extends = Object.assign || function (target) {
+ for (var i = 1; i < arguments.length; i++) {
+ var source = arguments[i];
+
+ for (var key in source) {
+ if (Object.prototype.hasOwnProperty.call(source, key)) {
+ target[key] = source[key];
+ }
+ }
+ }
+
+ return target;
+ };
+
+ return _extends.apply(this, arguments);
+}
+
+function _objectWithoutPropertiesLoose(source, excluded) {
+ if (source == null) return {};
+ var target = {};
+ var sourceKeys = Object.keys(source);
+ var key, i;
+
+ for (i = 0; i < sourceKeys.length; i++) {
+ key = sourceKeys[i];
+ if (excluded.indexOf(key) >= 0) continue;
+ target[key] = source[key];
+ }
+
+ return target;
+}
+
+function _objectWithoutProperties(source, excluded) {
+ if (source == null) return {};
+
+ var target = _objectWithoutPropertiesLoose(source, excluded);
+
+ var key, i;
+
+ if (Object.getOwnPropertySymbols) {
+ var sourceSymbolKeys = Object.getOwnPropertySymbols(source);
+
+ for (i = 0; i < sourceSymbolKeys.length; i++) {
+ key = sourceSymbolKeys[i];
+ if (excluded.indexOf(key) >= 0) continue;
+ if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue;
+ target[key] = source[key];
+ }
+ }
+
+ return target;
+}
+
+var Activity = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "22 12 18 12 15 21 9 3 6 12 2 12"
+ }));
+});
+Activity.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Activity.displayName = 'Activity';
+
+var Airplay = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M5 17H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-1"
+ }), /*#__PURE__*/React__default.createElement(Svg.Polygon, {
+ points: "12 15 17 21 7 21 12 15"
+ }));
+});
+Airplay.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Airplay.displayName = 'Airplay';
+
+var AlertCircle = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Circle, {
+ cx: "12",
+ cy: "12",
+ r: "10"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "12",
+ y1: "8",
+ x2: "12",
+ y2: "12"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "12",
+ y1: "16",
+ x2: "12.01",
+ y2: "16"
+ }));
+});
+AlertCircle.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+AlertCircle.displayName = 'AlertCircle';
+
+var AlertOctagon = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Polygon, {
+ points: "7.86 2 16.14 2 22 7.86 22 16.14 16.14 22 7.86 22 2 16.14 2 7.86 7.86 2"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "12",
+ y1: "8",
+ x2: "12",
+ y2: "12"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "12",
+ y1: "16",
+ x2: "12.01",
+ y2: "16"
+ }));
+});
+AlertOctagon.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+AlertOctagon.displayName = 'AlertOctagon';
+
+var AlertTriangle = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "12",
+ y1: "9",
+ x2: "12",
+ y2: "13"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "12",
+ y1: "17",
+ x2: "12.01",
+ y2: "17"
+ }));
+});
+AlertTriangle.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+AlertTriangle.displayName = 'AlertTriangle';
+
+var AlignCenter = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "18",
+ y1: "10",
+ x2: "6",
+ y2: "10"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "21",
+ y1: "6",
+ x2: "3",
+ y2: "6"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "21",
+ y1: "14",
+ x2: "3",
+ y2: "14"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "18",
+ y1: "18",
+ x2: "6",
+ y2: "18"
+ }));
+});
+AlignCenter.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+AlignCenter.displayName = 'AlignCenter';
+
+var AlignJustify = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "21",
+ y1: "10",
+ x2: "3",
+ y2: "10"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "21",
+ y1: "6",
+ x2: "3",
+ y2: "6"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "21",
+ y1: "14",
+ x2: "3",
+ y2: "14"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "21",
+ y1: "18",
+ x2: "3",
+ y2: "18"
+ }));
+});
+AlignJustify.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+AlignJustify.displayName = 'AlignJustify';
+
+var AlignLeft = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "17",
+ y1: "10",
+ x2: "3",
+ y2: "10"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "21",
+ y1: "6",
+ x2: "3",
+ y2: "6"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "21",
+ y1: "14",
+ x2: "3",
+ y2: "14"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "17",
+ y1: "18",
+ x2: "3",
+ y2: "18"
+ }));
+});
+AlignLeft.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+AlignLeft.displayName = 'AlignLeft';
+
+var AlignRight = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "21",
+ y1: "10",
+ x2: "7",
+ y2: "10"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "21",
+ y1: "6",
+ x2: "3",
+ y2: "6"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "21",
+ y1: "14",
+ x2: "3",
+ y2: "14"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "21",
+ y1: "18",
+ x2: "7",
+ y2: "18"
+ }));
+});
+AlignRight.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+AlignRight.displayName = 'AlignRight';
+
+var Anchor = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Circle, {
+ cx: "12",
+ cy: "5",
+ r: "3"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "12",
+ y1: "22",
+ x2: "12",
+ y2: "8"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M5 12H2a10 10 0 0 0 20 0h-3"
+ }));
+});
+Anchor.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Anchor.displayName = 'Anchor';
+
+var Aperture = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Circle, {
+ cx: "12",
+ cy: "12",
+ r: "10"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "14.31",
+ y1: "8",
+ x2: "20.05",
+ y2: "17.94"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "9.69",
+ y1: "8",
+ x2: "21.17",
+ y2: "8"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "7.38",
+ y1: "12",
+ x2: "13.12",
+ y2: "2.06"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "9.69",
+ y1: "16",
+ x2: "3.95",
+ y2: "6.06"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "14.31",
+ y1: "16",
+ x2: "2.83",
+ y2: "16"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "16.62",
+ y1: "12",
+ x2: "10.88",
+ y2: "21.94"
+ }));
+});
+Aperture.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Aperture.displayName = 'Aperture';
+
+var Archive = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "21 8 21 21 3 21 3 8"
+ }), /*#__PURE__*/React__default.createElement(Svg.Rect, {
+ x: "1",
+ y: "3",
+ width: "22",
+ height: "5"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "10",
+ y1: "12",
+ x2: "14",
+ y2: "12"
+ }));
+});
+Archive.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Archive.displayName = 'Archive';
+
+var ArrowDownCircle = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Circle, {
+ cx: "12",
+ cy: "12",
+ r: "10"
+ }), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "8 12 12 16 16 12"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "12",
+ y1: "8",
+ x2: "12",
+ y2: "16"
+ }));
+});
+ArrowDownCircle.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+ArrowDownCircle.displayName = 'ArrowDownCircle';
+
+var ArrowDownLeft = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "17",
+ y1: "7",
+ x2: "7",
+ y2: "17"
+ }), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "17 17 7 17 7 7"
+ }));
+});
+ArrowDownLeft.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+ArrowDownLeft.displayName = 'ArrowDownLeft';
+
+var ArrowDownRight = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "7",
+ y1: "7",
+ x2: "17",
+ y2: "17"
+ }), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "17 7 17 17 7 17"
+ }));
+});
+ArrowDownRight.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+ArrowDownRight.displayName = 'ArrowDownRight';
+
+var ArrowDown = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "12",
+ y1: "5",
+ x2: "12",
+ y2: "19"
+ }), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "19 12 12 19 5 12"
+ }));
+});
+ArrowDown.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+ArrowDown.displayName = 'ArrowDown';
+
+var ArrowLeftCircle = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Circle, {
+ cx: "12",
+ cy: "12",
+ r: "10"
+ }), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "12 8 8 12 12 16"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "16",
+ y1: "12",
+ x2: "8",
+ y2: "12"
+ }));
+});
+ArrowLeftCircle.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+ArrowLeftCircle.displayName = 'ArrowLeftCircle';
+
+var ArrowLeft = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "19",
+ y1: "12",
+ x2: "5",
+ y2: "12"
+ }), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "12 19 5 12 12 5"
+ }));
+});
+ArrowLeft.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+ArrowLeft.displayName = 'ArrowLeft';
+
+var ArrowRightCircle = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Circle, {
+ cx: "12",
+ cy: "12",
+ r: "10"
+ }), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "12 16 16 12 12 8"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "8",
+ y1: "12",
+ x2: "16",
+ y2: "12"
+ }));
+});
+ArrowRightCircle.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+ArrowRightCircle.displayName = 'ArrowRightCircle';
+
+var ArrowRight = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "5",
+ y1: "12",
+ x2: "19",
+ y2: "12"
+ }), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "12 5 19 12 12 19"
+ }));
+});
+ArrowRight.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+ArrowRight.displayName = 'ArrowRight';
+
+var ArrowUpCircle = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Circle, {
+ cx: "12",
+ cy: "12",
+ r: "10"
+ }), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "16 12 12 8 8 12"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "12",
+ y1: "16",
+ x2: "12",
+ y2: "8"
+ }));
+});
+ArrowUpCircle.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+ArrowUpCircle.displayName = 'ArrowUpCircle';
+
+var ArrowUpLeft = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "17",
+ y1: "17",
+ x2: "7",
+ y2: "7"
+ }), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "7 17 7 7 17 7"
+ }));
+});
+ArrowUpLeft.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+ArrowUpLeft.displayName = 'ArrowUpLeft';
+
+var ArrowUpRight = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "7",
+ y1: "17",
+ x2: "17",
+ y2: "7"
+ }), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "7 7 17 7 17 17"
+ }));
+});
+ArrowUpRight.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+ArrowUpRight.displayName = 'ArrowUpRight';
+
+var ArrowUp = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "12",
+ y1: "19",
+ x2: "12",
+ y2: "5"
+ }), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "5 12 12 5 19 12"
+ }));
+});
+ArrowUp.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+ArrowUp.displayName = 'ArrowUp';
+
+var AtSign = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Circle, {
+ cx: "12",
+ cy: "12",
+ r: "4"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M16 8v5a3 3 0 0 0 6 0v-1a10 10 0 1 0-3.92 7.94"
+ }));
+});
+AtSign.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+AtSign.displayName = 'AtSign';
+
+var Award = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Circle, {
+ cx: "12",
+ cy: "8",
+ r: "7"
+ }), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "8.21 13.89 7 23 12 20 17 23 15.79 13.88"
+ }));
+});
+Award.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Award.displayName = 'Award';
+
+var BarChart2 = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "18",
+ y1: "20",
+ x2: "18",
+ y2: "10"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "12",
+ y1: "20",
+ x2: "12",
+ y2: "4"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "6",
+ y1: "20",
+ x2: "6",
+ y2: "14"
+ }));
+});
+BarChart2.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+BarChart2.displayName = 'BarChart2';
+
+var BarChart = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "12",
+ y1: "20",
+ x2: "12",
+ y2: "10"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "18",
+ y1: "20",
+ x2: "18",
+ y2: "4"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "6",
+ y1: "20",
+ x2: "6",
+ y2: "16"
+ }));
+});
+BarChart.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+BarChart.displayName = 'BarChart';
+
+var BatteryCharging = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M5 18H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h3.19M15 6h2a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-3.19"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "23",
+ y1: "13",
+ x2: "23",
+ y2: "11"
+ }), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "11 6 7 12 13 12 9 18"
+ }));
+});
+BatteryCharging.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+BatteryCharging.displayName = 'BatteryCharging';
+
+var Battery = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Rect, {
+ x: "1",
+ y: "6",
+ width: "18",
+ height: "12",
+ rx: "2",
+ ry: "2"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "23",
+ y1: "13",
+ x2: "23",
+ y2: "11"
+ }));
+});
+Battery.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Battery.displayName = 'Battery';
+
+var BellOff = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M13.73 21a2 2 0 0 1-3.46 0"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M18.63 13A17.89 17.89 0 0 1 18 8"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M6.26 6.26A5.86 5.86 0 0 0 6 8c0 7-3 9-3 9h14"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M18 8a6 6 0 0 0-9.33-5"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "1",
+ y1: "1",
+ x2: "23",
+ y2: "23"
+ }));
+});
+BellOff.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+BellOff.displayName = 'BellOff';
+
+var Bell = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M18 8A6 6 0 0 0 6 8c0 7-3 9-3 9h18s-3-2-3-9"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M13.73 21a2 2 0 0 1-3.46 0"
+ }));
+});
+Bell.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Bell.displayName = 'Bell';
+
+var Bluetooth = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "6.5 6.5 17.5 17.5 12 23 12 1 17.5 6.5 6.5 17.5"
+ }));
+});
+Bluetooth.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Bluetooth.displayName = 'Bluetooth';
+
+var Bold = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M6 4h8a4 4 0 0 1 4 4 4 4 0 0 1-4 4H6z"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M6 12h9a4 4 0 0 1 4 4 4 4 0 0 1-4 4H6z"
+ }));
+});
+Bold.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Bold.displayName = 'Bold';
+
+var BookOpen = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M2 3h6a4 4 0 0 1 4 4v14a3 3 0 0 0-3-3H2z"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M22 3h-6a4 4 0 0 0-4 4v14a3 3 0 0 1 3-3h7z"
+ }));
+});
+BookOpen.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+BookOpen.displayName = 'BookOpen';
+
+var Book = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M4 19.5A2.5 2.5 0 0 1 6.5 17H20"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2z"
+ }));
+});
+Book.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Book.displayName = 'Book';
+
+var Bookmark = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M19 21l-7-5-7 5V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2z"
+ }));
+});
+Bookmark.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Bookmark.displayName = 'Bookmark';
+
+var Box = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z"
+ }), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "3.27 6.96 12 12.01 20.73 6.96"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "12",
+ y1: "22.08",
+ x2: "12",
+ y2: "12"
+ }));
+});
+Box.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Box.displayName = 'Box';
+
+var Briefcase = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Rect, {
+ x: "2",
+ y: "7",
+ width: "20",
+ height: "14",
+ rx: "2",
+ ry: "2"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M16 21V5a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v16"
+ }));
+});
+Briefcase.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Briefcase.displayName = 'Briefcase';
+
+var Calendar = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Rect, {
+ x: "3",
+ y: "4",
+ width: "18",
+ height: "18",
+ rx: "2",
+ ry: "2"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "16",
+ y1: "2",
+ x2: "16",
+ y2: "6"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "8",
+ y1: "2",
+ x2: "8",
+ y2: "6"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "3",
+ y1: "10",
+ x2: "21",
+ y2: "10"
+ }));
+});
+Calendar.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Calendar.displayName = 'Calendar';
+
+var CameraOff = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "1",
+ y1: "1",
+ x2: "23",
+ y2: "23"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M21 21H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h3m3-3h6l2 3h4a2 2 0 0 1 2 2v9.34m-7.72-2.06a4 4 0 1 1-5.56-5.56"
+ }));
+});
+CameraOff.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+CameraOff.displayName = 'CameraOff';
+
+var Camera = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M23 19a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h4l2-3h6l2 3h4a2 2 0 0 1 2 2z"
+ }), /*#__PURE__*/React__default.createElement(Svg.Circle, {
+ cx: "12",
+ cy: "13",
+ r: "4"
+ }));
+});
+Camera.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Camera.displayName = 'Camera';
+
+var Cast = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M2 16.1A5 5 0 0 1 5.9 20M2 12.05A9 9 0 0 1 9.95 20M2 8V6a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2h-6"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "2",
+ y1: "20",
+ x2: "2.01",
+ y2: "20"
+ }));
+});
+Cast.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Cast.displayName = 'Cast';
+
+var CheckCircle = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M22 11.08V12a10 10 0 1 1-5.93-9.14"
+ }), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "22 4 12 14.01 9 11.01"
+ }));
+});
+CheckCircle.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+CheckCircle.displayName = 'CheckCircle';
+
+var CheckSquare = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "9 11 12 14 22 4"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M21 12v7a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11"
+ }));
+});
+CheckSquare.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+CheckSquare.displayName = 'CheckSquare';
+
+var Check = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "20 6 9 17 4 12"
+ }));
+});
+Check.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Check.displayName = 'Check';
+
+var ChevronDown = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "6 9 12 15 18 9"
+ }));
+});
+ChevronDown.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+ChevronDown.displayName = 'ChevronDown';
+
+var ChevronLeft = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "15 18 9 12 15 6"
+ }));
+});
+ChevronLeft.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+ChevronLeft.displayName = 'ChevronLeft';
+
+var ChevronRight = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "9 18 15 12 9 6"
+ }));
+});
+ChevronRight.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+ChevronRight.displayName = 'ChevronRight';
+
+var ChevronUp = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "18 15 12 9 6 15"
+ }));
+});
+ChevronUp.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+ChevronUp.displayName = 'ChevronUp';
+
+var ChevronsDown = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "7 13 12 18 17 13"
+ }), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "7 6 12 11 17 6"
+ }));
+});
+ChevronsDown.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+ChevronsDown.displayName = 'ChevronsDown';
+
+var ChevronsLeft = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "11 17 6 12 11 7"
+ }), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "18 17 13 12 18 7"
+ }));
+});
+ChevronsLeft.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+ChevronsLeft.displayName = 'ChevronsLeft';
+
+var ChevronsRight = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "13 17 18 12 13 7"
+ }), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "6 17 11 12 6 7"
+ }));
+});
+ChevronsRight.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+ChevronsRight.displayName = 'ChevronsRight';
+
+var ChevronsUp = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "17 11 12 6 7 11"
+ }), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "17 18 12 13 7 18"
+ }));
+});
+ChevronsUp.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+ChevronsUp.displayName = 'ChevronsUp';
+
+var Chrome = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Circle, {
+ cx: "12",
+ cy: "12",
+ r: "10"
+ }), /*#__PURE__*/React__default.createElement(Svg.Circle, {
+ cx: "12",
+ cy: "12",
+ r: "4"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "21.17",
+ y1: "8",
+ x2: "12",
+ y2: "8"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "3.95",
+ y1: "6.06",
+ x2: "8.54",
+ y2: "14"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "10.88",
+ y1: "21.94",
+ x2: "15.46",
+ y2: "14"
+ }));
+});
+Chrome.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Chrome.displayName = 'Chrome';
+
+var Circle = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Circle, {
+ cx: "12",
+ cy: "12",
+ r: "10"
+ }));
+});
+Circle.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Circle.displayName = 'Circle';
+
+var Clipboard = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2"
+ }), /*#__PURE__*/React__default.createElement(Svg.Rect, {
+ x: "8",
+ y: "2",
+ width: "8",
+ height: "4",
+ rx: "1",
+ ry: "1"
+ }));
+});
+Clipboard.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Clipboard.displayName = 'Clipboard';
+
+var Clock = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Circle, {
+ cx: "12",
+ cy: "12",
+ r: "10"
+ }), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "12 6 12 12 16 14"
+ }));
+});
+Clock.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Clock.displayName = 'Clock';
+
+var CloudDrizzle = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "8",
+ y1: "19",
+ x2: "8",
+ y2: "21"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "8",
+ y1: "13",
+ x2: "8",
+ y2: "15"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "16",
+ y1: "19",
+ x2: "16",
+ y2: "21"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "16",
+ y1: "13",
+ x2: "16",
+ y2: "15"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "12",
+ y1: "21",
+ x2: "12",
+ y2: "23"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "12",
+ y1: "15",
+ x2: "12",
+ y2: "17"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M20 16.58A5 5 0 0 0 18 7h-1.26A8 8 0 1 0 4 15.25"
+ }));
+});
+CloudDrizzle.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+CloudDrizzle.displayName = 'CloudDrizzle';
+
+var CloudLightning = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M19 16.9A5 5 0 0 0 18 7h-1.26a8 8 0 1 0-11.62 9"
+ }), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "13 11 9 17 15 17 11 23"
+ }));
+});
+CloudLightning.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+CloudLightning.displayName = 'CloudLightning';
+
+var CloudOff = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M22.61 16.95A5 5 0 0 0 18 10h-1.26a8 8 0 0 0-7.05-6M5 5a8 8 0 0 0 4 15h9a5 5 0 0 0 1.7-.3"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "1",
+ y1: "1",
+ x2: "23",
+ y2: "23"
+ }));
+});
+CloudOff.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+CloudOff.displayName = 'CloudOff';
+
+var CloudRain = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "16",
+ y1: "13",
+ x2: "16",
+ y2: "21"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "8",
+ y1: "13",
+ x2: "8",
+ y2: "21"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "12",
+ y1: "15",
+ x2: "12",
+ y2: "23"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M20 16.58A5 5 0 0 0 18 7h-1.26A8 8 0 1 0 4 15.25"
+ }));
+});
+CloudRain.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+CloudRain.displayName = 'CloudRain';
+
+var CloudSnow = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M20 17.58A5 5 0 0 0 18 8h-1.26A8 8 0 1 0 4 16.25"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "8",
+ y1: "16",
+ x2: "8.01",
+ y2: "16"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "8",
+ y1: "20",
+ x2: "8.01",
+ y2: "20"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "12",
+ y1: "18",
+ x2: "12.01",
+ y2: "18"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "12",
+ y1: "22",
+ x2: "12.01",
+ y2: "22"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "16",
+ y1: "16",
+ x2: "16.01",
+ y2: "16"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "16",
+ y1: "20",
+ x2: "16.01",
+ y2: "20"
+ }));
+});
+CloudSnow.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+CloudSnow.displayName = 'CloudSnow';
+
+var Cloud = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M18 10h-1.26A8 8 0 1 0 9 20h9a5 5 0 0 0 0-10z"
+ }));
+});
+Cloud.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Cloud.displayName = 'Cloud';
+
+var Code = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "16 18 22 12 16 6"
+ }), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "8 6 2 12 8 18"
+ }));
+});
+Code.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Code.displayName = 'Code';
+
+var Codepen = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Polygon, {
+ points: "12 2 22 8.5 22 15.5 12 22 2 15.5 2 8.5 12 2"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "12",
+ y1: "22",
+ x2: "12",
+ y2: "15.5"
+ }), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "22 8.5 12 15.5 2 8.5"
+ }), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "2 15.5 12 8.5 22 15.5"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "12",
+ y1: "2",
+ x2: "12",
+ y2: "8.5"
+ }));
+});
+Codepen.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Codepen.displayName = 'Codepen';
+
+var Codesandbox = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z"
+ }), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "7.5 4.21 12 6.81 16.5 4.21"
+ }), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "7.5 19.79 7.5 14.6 3 12"
+ }), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "21 12 16.5 14.6 16.5 19.79"
+ }), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "3.27 6.96 12 12.01 20.73 6.96"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "12",
+ y1: "22.08",
+ x2: "12",
+ y2: "12"
+ }));
+});
+Codesandbox.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Codesandbox.displayName = 'Codesandbox';
+
+var Coffee = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M18 8h1a4 4 0 0 1 0 8h-1"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M2 8h16v9a4 4 0 0 1-4 4H6a4 4 0 0 1-4-4V8z"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "6",
+ y1: "1",
+ x2: "6",
+ y2: "4"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "10",
+ y1: "1",
+ x2: "10",
+ y2: "4"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "14",
+ y1: "1",
+ x2: "14",
+ y2: "4"
+ }));
+});
+Coffee.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Coffee.displayName = 'Coffee';
+
+var Columns = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M12 3h7a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-7m0-18H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h7m0-18v18"
+ }));
+});
+Columns.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Columns.displayName = 'Columns';
+
+var Command = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M18 3a3 3 0 0 0-3 3v12a3 3 0 0 0 3 3 3 3 0 0 0 3-3 3 3 0 0 0-3-3H6a3 3 0 0 0-3 3 3 3 0 0 0 3 3 3 3 0 0 0 3-3V6a3 3 0 0 0-3-3 3 3 0 0 0-3 3 3 3 0 0 0 3 3h12a3 3 0 0 0 3-3 3 3 0 0 0-3-3z"
+ }));
+});
+Command.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Command.displayName = 'Command';
+
+var Compass = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Circle, {
+ cx: "12",
+ cy: "12",
+ r: "10"
+ }), /*#__PURE__*/React__default.createElement(Svg.Polygon, {
+ points: "16.24 7.76 14.12 14.12 7.76 16.24 9.88 9.88 16.24 7.76"
+ }));
+});
+Compass.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Compass.displayName = 'Compass';
+
+var Copy = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Rect, {
+ x: "9",
+ y: "9",
+ width: "13",
+ height: "13",
+ rx: "2",
+ ry: "2"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1"
+ }));
+});
+Copy.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Copy.displayName = 'Copy';
+
+var CornerDownLeft = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "9 10 4 15 9 20"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M20 4v7a4 4 0 0 1-4 4H4"
+ }));
+});
+CornerDownLeft.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+CornerDownLeft.displayName = 'CornerDownLeft';
+
+var CornerDownRight = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "15 10 20 15 15 20"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M4 4v7a4 4 0 0 0 4 4h12"
+ }));
+});
+CornerDownRight.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+CornerDownRight.displayName = 'CornerDownRight';
+
+var CornerLeftDown = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "14 15 9 20 4 15"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M20 4h-7a4 4 0 0 0-4 4v12"
+ }));
+});
+CornerLeftDown.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+CornerLeftDown.displayName = 'CornerLeftDown';
+
+var CornerLeftUp = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "14 9 9 4 4 9"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M20 20h-7a4 4 0 0 1-4-4V4"
+ }));
+});
+CornerLeftUp.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+CornerLeftUp.displayName = 'CornerLeftUp';
+
+var CornerRightDown = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "10 15 15 20 20 15"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M4 4h7a4 4 0 0 1 4 4v12"
+ }));
+});
+CornerRightDown.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+CornerRightDown.displayName = 'CornerRightDown';
+
+var CornerRightUp = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "10 9 15 4 20 9"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M4 20h7a4 4 0 0 0 4-4V4"
+ }));
+});
+CornerRightUp.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+CornerRightUp.displayName = 'CornerRightUp';
+
+var CornerUpLeft = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "9 14 4 9 9 4"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M20 20v-7a4 4 0 0 0-4-4H4"
+ }));
+});
+CornerUpLeft.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+CornerUpLeft.displayName = 'CornerUpLeft';
+
+var CornerUpRight = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "15 14 20 9 15 4"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M4 20v-7a4 4 0 0 1 4-4h12"
+ }));
+});
+CornerUpRight.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+CornerUpRight.displayName = 'CornerUpRight';
+
+var Cpu = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Rect, {
+ x: "4",
+ y: "4",
+ width: "16",
+ height: "16",
+ rx: "2",
+ ry: "2"
+ }), /*#__PURE__*/React__default.createElement(Svg.Rect, {
+ x: "9",
+ y: "9",
+ width: "6",
+ height: "6"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "9",
+ y1: "1",
+ x2: "9",
+ y2: "4"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "15",
+ y1: "1",
+ x2: "15",
+ y2: "4"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "9",
+ y1: "20",
+ x2: "9",
+ y2: "23"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "15",
+ y1: "20",
+ x2: "15",
+ y2: "23"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "20",
+ y1: "9",
+ x2: "23",
+ y2: "9"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "20",
+ y1: "14",
+ x2: "23",
+ y2: "14"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "1",
+ y1: "9",
+ x2: "4",
+ y2: "9"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "1",
+ y1: "14",
+ x2: "4",
+ y2: "14"
+ }));
+});
+Cpu.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Cpu.displayName = 'Cpu';
+
+var CreditCard = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Rect, {
+ x: "1",
+ y: "4",
+ width: "22",
+ height: "16",
+ rx: "2",
+ ry: "2"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "1",
+ y1: "10",
+ x2: "23",
+ y2: "10"
+ }));
+});
+CreditCard.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+CreditCard.displayName = 'CreditCard';
+
+var Crop = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M6.13 1L6 16a2 2 0 0 0 2 2h15"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M1 6.13L16 6a2 2 0 0 1 2 2v15"
+ }));
+});
+Crop.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Crop.displayName = 'Crop';
+
+var Crosshair = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Circle, {
+ cx: "12",
+ cy: "12",
+ r: "10"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "22",
+ y1: "12",
+ x2: "18",
+ y2: "12"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "6",
+ y1: "12",
+ x2: "2",
+ y2: "12"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "12",
+ y1: "6",
+ x2: "12",
+ y2: "2"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "12",
+ y1: "22",
+ x2: "12",
+ y2: "18"
+ }));
+});
+Crosshair.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Crosshair.displayName = 'Crosshair';
+
+var Database = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Ellipse, {
+ cx: "12",
+ cy: "5",
+ rx: "9",
+ ry: "3"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M21 12c0 1.66-4 3-9 3s-9-1.34-9-3"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M3 5v14c0 1.66 4 3 9 3s9-1.34 9-3V5"
+ }));
+});
+Database.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Database.displayName = 'Database';
+
+var Delete = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M21 4H8l-7 8 7 8h13a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2z"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "18",
+ y1: "9",
+ x2: "12",
+ y2: "15"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "12",
+ y1: "9",
+ x2: "18",
+ y2: "15"
+ }));
+});
+Delete.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Delete.displayName = 'Delete';
+
+var Disc = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Circle, {
+ cx: "12",
+ cy: "12",
+ r: "10"
+ }), /*#__PURE__*/React__default.createElement(Svg.Circle, {
+ cx: "12",
+ cy: "12",
+ r: "3"
+ }));
+});
+Disc.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Disc.displayName = 'Disc';
+
+var DivideCircle = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "8",
+ y1: "12",
+ x2: "16",
+ y2: "12"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "12",
+ y1: "16",
+ x2: "12",
+ y2: "16"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "12",
+ y1: "8",
+ x2: "12",
+ y2: "8"
+ }), /*#__PURE__*/React__default.createElement(Svg.Circle, {
+ cx: "12",
+ cy: "12",
+ r: "10"
+ }));
+});
+DivideCircle.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+DivideCircle.displayName = 'DivideCircle';
+
+var DivideSquare = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Rect, {
+ x: "3",
+ y: "3",
+ width: "18",
+ height: "18",
+ rx: "2",
+ ry: "2"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "8",
+ y1: "12",
+ x2: "16",
+ y2: "12"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "12",
+ y1: "16",
+ x2: "12",
+ y2: "16"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "12",
+ y1: "8",
+ x2: "12",
+ y2: "8"
+ }));
+});
+DivideSquare.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+DivideSquare.displayName = 'DivideSquare';
+
+var Divide = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Circle, {
+ cx: "12",
+ cy: "6",
+ r: "2"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "5",
+ y1: "12",
+ x2: "19",
+ y2: "12"
+ }), /*#__PURE__*/React__default.createElement(Svg.Circle, {
+ cx: "12",
+ cy: "18",
+ r: "2"
+ }));
+});
+Divide.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Divide.displayName = 'Divide';
+
+var DollarSign = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "12",
+ y1: "1",
+ x2: "12",
+ y2: "23"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6"
+ }));
+});
+DollarSign.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+DollarSign.displayName = 'DollarSign';
+
+var DownloadCloud = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "8 17 12 21 16 17"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "12",
+ y1: "12",
+ x2: "12",
+ y2: "21"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M20.88 18.09A5 5 0 0 0 18 9h-1.26A8 8 0 1 0 3 16.29"
+ }));
+});
+DownloadCloud.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+DownloadCloud.displayName = 'DownloadCloud';
+
+var Download = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"
+ }), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "7 10 12 15 17 10"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "12",
+ y1: "15",
+ x2: "12",
+ y2: "3"
+ }));
+});
+Download.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Download.displayName = 'Download';
+
+var Dribbble = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Circle, {
+ cx: "12",
+ cy: "12",
+ r: "10"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M8.56 2.75c4.37 6.03 6.02 9.42 8.03 17.72m2.54-15.38c-3.72 4.35-8.94 5.66-16.88 5.85m19.5 1.9c-3.5-.93-6.63-.82-8.94 0-2.58.92-5.01 2.86-7.44 6.32"
+ }));
+});
+Dribbble.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Dribbble.displayName = 'Dribbble';
+
+var Droplet = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M12 2.69l5.66 5.66a8 8 0 1 1-11.31 0z"
+ }));
+});
+Droplet.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Droplet.displayName = 'Droplet';
+
+var Edit2 = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M17 3a2.828 2.828 0 1 1 4 4L7.5 20.5 2 22l1.5-5.5L17 3z"
+ }));
+});
+Edit2.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Edit2.displayName = 'Edit2';
+
+var Edit3 = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M12 20h9"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M16.5 3.5a2.121 2.121 0 0 1 3 3L7 19l-4 1 1-4L16.5 3.5z"
+ }));
+});
+Edit3.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Edit3.displayName = 'Edit3';
+
+var Edit = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M11 4H4a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M18.5 2.5a2.121 2.121 0 0 1 3 3L12 15l-4 1 1-4 9.5-9.5z"
+ }));
+});
+Edit.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Edit.displayName = 'Edit';
+
+var ExternalLink = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"
+ }), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "15 3 21 3 21 9"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "10",
+ y1: "14",
+ x2: "21",
+ y2: "3"
+ }));
+});
+ExternalLink.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+ExternalLink.displayName = 'ExternalLink';
+
+var EyeOff = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M17.94 17.94A10.07 10.07 0 0 1 12 20c-7 0-11-8-11-8a18.45 18.45 0 0 1 5.06-5.94M9.9 4.24A9.12 9.12 0 0 1 12 4c7 0 11 8 11 8a18.5 18.5 0 0 1-2.16 3.19m-6.72-1.07a3 3 0 1 1-4.24-4.24"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "1",
+ y1: "1",
+ x2: "23",
+ y2: "23"
+ }));
+});
+EyeOff.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+EyeOff.displayName = 'EyeOff';
+
+var Eye = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z"
+ }), /*#__PURE__*/React__default.createElement(Svg.Circle, {
+ cx: "12",
+ cy: "12",
+ r: "3"
+ }));
+});
+Eye.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Eye.displayName = 'Eye';
+
+var Facebook = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z"
+ }));
+});
+Facebook.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Facebook.displayName = 'Facebook';
+
+var FastForward = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Polygon, {
+ points: "13 19 22 12 13 5 13 19"
+ }), /*#__PURE__*/React__default.createElement(Svg.Polygon, {
+ points: "2 19 11 12 2 5 2 19"
+ }));
+});
+FastForward.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+FastForward.displayName = 'FastForward';
+
+var Feather = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M20.24 12.24a6 6 0 0 0-8.49-8.49L5 10.5V19h8.5z"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "16",
+ y1: "8",
+ x2: "2",
+ y2: "22"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "17.5",
+ y1: "15",
+ x2: "9",
+ y2: "15"
+ }));
+});
+Feather.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Feather.displayName = 'Feather';
+
+var Figma = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M5 5.5A3.5 3.5 0 0 1 8.5 2H12v7H8.5A3.5 3.5 0 0 1 5 5.5z"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M12 2h3.5a3.5 3.5 0 1 1 0 7H12V2z"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M12 12.5a3.5 3.5 0 1 1 7 0 3.5 3.5 0 1 1-7 0z"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M5 19.5A3.5 3.5 0 0 1 8.5 16H12v3.5a3.5 3.5 0 1 1-7 0z"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M5 12.5A3.5 3.5 0 0 1 8.5 9H12v7H8.5A3.5 3.5 0 0 1 5 12.5z"
+ }));
+});
+Figma.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Figma.displayName = 'Figma';
+
+var FileMinus = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"
+ }), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "14 2 14 8 20 8"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "9",
+ y1: "15",
+ x2: "15",
+ y2: "15"
+ }));
+});
+FileMinus.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+FileMinus.displayName = 'FileMinus';
+
+var FilePlus = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"
+ }), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "14 2 14 8 20 8"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "12",
+ y1: "18",
+ x2: "12",
+ y2: "12"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "9",
+ y1: "15",
+ x2: "15",
+ y2: "15"
+ }));
+});
+FilePlus.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+FilePlus.displayName = 'FilePlus';
+
+var FileText = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"
+ }), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "14 2 14 8 20 8"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "16",
+ y1: "13",
+ x2: "8",
+ y2: "13"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "16",
+ y1: "17",
+ x2: "8",
+ y2: "17"
+ }), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "10 9 9 9 8 9"
+ }));
+});
+FileText.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+FileText.displayName = 'FileText';
+
+var File = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M13 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V9z"
+ }), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "13 2 13 9 20 9"
+ }));
+});
+File.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+File.displayName = 'File';
+
+var Film = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Rect, {
+ x: "2",
+ y: "2",
+ width: "20",
+ height: "20",
+ rx: "2.18",
+ ry: "2.18"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "7",
+ y1: "2",
+ x2: "7",
+ y2: "22"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "17",
+ y1: "2",
+ x2: "17",
+ y2: "22"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "2",
+ y1: "12",
+ x2: "22",
+ y2: "12"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "2",
+ y1: "7",
+ x2: "7",
+ y2: "7"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "2",
+ y1: "17",
+ x2: "7",
+ y2: "17"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "17",
+ y1: "17",
+ x2: "22",
+ y2: "17"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "17",
+ y1: "7",
+ x2: "22",
+ y2: "7"
+ }));
+});
+Film.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Film.displayName = 'Film';
+
+var Filter = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Polygon, {
+ points: "22 3 2 3 10 12.46 10 19 14 21 14 12.46 22 3"
+ }));
+});
+Filter.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Filter.displayName = 'Filter';
+
+var Flag = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M4 15s1-1 4-1 5 2 8 2 4-1 4-1V3s-1 1-4 1-5-2-8-2-4 1-4 1z"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "4",
+ y1: "22",
+ x2: "4",
+ y2: "15"
+ }));
+});
+Flag.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Flag.displayName = 'Flag';
+
+var FolderMinus = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 2 2z"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "9",
+ y1: "14",
+ x2: "15",
+ y2: "14"
+ }));
+});
+FolderMinus.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+FolderMinus.displayName = 'FolderMinus';
+
+var FolderPlus = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 2 2z"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "12",
+ y1: "11",
+ x2: "12",
+ y2: "17"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "9",
+ y1: "14",
+ x2: "15",
+ y2: "14"
+ }));
+});
+FolderPlus.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+FolderPlus.displayName = 'FolderPlus';
+
+var Folder = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 2 2z"
+ }));
+});
+Folder.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Folder.displayName = 'Folder';
+
+var Framer = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M5 16V9h14V2H5l14 14h-7m-7 0l7 7v-7m-7 0h7"
+ }));
+});
+Framer.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Framer.displayName = 'Framer';
+
+var Frown = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Circle, {
+ cx: "12",
+ cy: "12",
+ r: "10"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M16 16s-1.5-2-4-2-4 2-4 2"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "9",
+ y1: "9",
+ x2: "9.01",
+ y2: "9"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "15",
+ y1: "9",
+ x2: "15.01",
+ y2: "9"
+ }));
+});
+Frown.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Frown.displayName = 'Frown';
+
+var Gift = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "20 12 20 22 4 22 4 12"
+ }), /*#__PURE__*/React__default.createElement(Svg.Rect, {
+ x: "2",
+ y: "7",
+ width: "20",
+ height: "5"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "12",
+ y1: "22",
+ x2: "12",
+ y2: "7"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M12 7H7.5a2.5 2.5 0 0 1 0-5C11 2 12 7 12 7z"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M12 7h4.5a2.5 2.5 0 0 0 0-5C13 2 12 7 12 7z"
+ }));
+});
+Gift.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Gift.displayName = 'Gift';
+
+var GitBranch = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "6",
+ y1: "3",
+ x2: "6",
+ y2: "15"
+ }), /*#__PURE__*/React__default.createElement(Svg.Circle, {
+ cx: "18",
+ cy: "6",
+ r: "3"
+ }), /*#__PURE__*/React__default.createElement(Svg.Circle, {
+ cx: "6",
+ cy: "18",
+ r: "3"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M18 9a9 9 0 0 1-9 9"
+ }));
+});
+GitBranch.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+GitBranch.displayName = 'GitBranch';
+
+var GitCommit = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Circle, {
+ cx: "12",
+ cy: "12",
+ r: "4"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "1.05",
+ y1: "12",
+ x2: "7",
+ y2: "12"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "17.01",
+ y1: "12",
+ x2: "22.96",
+ y2: "12"
+ }));
+});
+GitCommit.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+GitCommit.displayName = 'GitCommit';
+
+var GitMerge = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Circle, {
+ cx: "18",
+ cy: "18",
+ r: "3"
+ }), /*#__PURE__*/React__default.createElement(Svg.Circle, {
+ cx: "6",
+ cy: "6",
+ r: "3"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M6 21V9a9 9 0 0 0 9 9"
+ }));
+});
+GitMerge.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+GitMerge.displayName = 'GitMerge';
+
+var GitPullRequest = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Circle, {
+ cx: "18",
+ cy: "18",
+ r: "3"
+ }), /*#__PURE__*/React__default.createElement(Svg.Circle, {
+ cx: "6",
+ cy: "6",
+ r: "3"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M13 6h3a2 2 0 0 1 2 2v7"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "6",
+ y1: "9",
+ x2: "6",
+ y2: "21"
+ }));
+});
+GitPullRequest.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+GitPullRequest.displayName = 'GitPullRequest';
+
+var GitHub = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M9 19c-5 1.5-5-2.5-7-3m14 6v-3.87a3.37 3.37 0 0 0-.94-2.61c3.14-.35 6.44-1.54 6.44-7A5.44 5.44 0 0 0 20 4.77 5.07 5.07 0 0 0 19.91 1S18.73.65 16 2.48a13.38 13.38 0 0 0-7 0C6.27.65 5.09 1 5.09 1A5.07 5.07 0 0 0 5 4.77a5.44 5.44 0 0 0-1.5 3.78c0 5.42 3.3 6.61 6.44 7A3.37 3.37 0 0 0 9 18.13V22"
+ }));
+});
+GitHub.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+GitHub.displayName = 'GitHub';
+
+var Gitlab = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M22.65 14.39L12 22.13 1.35 14.39a.84.84 0 0 1-.3-.94l1.22-3.78 2.44-7.51A.42.42 0 0 1 4.82 2a.43.43 0 0 1 .58 0 .42.42 0 0 1 .11.18l2.44 7.49h8.1l2.44-7.51A.42.42 0 0 1 18.6 2a.43.43 0 0 1 .58 0 .42.42 0 0 1 .11.18l2.44 7.51L23 13.45a.84.84 0 0 1-.35.94z"
+ }));
+});
+Gitlab.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Gitlab.displayName = 'Gitlab';
+
+var Globe = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Circle, {
+ cx: "12",
+ cy: "12",
+ r: "10"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "2",
+ y1: "12",
+ x2: "22",
+ y2: "12"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z"
+ }));
+});
+Globe.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Globe.displayName = 'Globe';
+
+var Grid = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Rect, {
+ x: "3",
+ y: "3",
+ width: "7",
+ height: "7"
+ }), /*#__PURE__*/React__default.createElement(Svg.Rect, {
+ x: "14",
+ y: "3",
+ width: "7",
+ height: "7"
+ }), /*#__PURE__*/React__default.createElement(Svg.Rect, {
+ x: "14",
+ y: "14",
+ width: "7",
+ height: "7"
+ }), /*#__PURE__*/React__default.createElement(Svg.Rect, {
+ x: "3",
+ y: "14",
+ width: "7",
+ height: "7"
+ }));
+});
+Grid.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Grid.displayName = 'Grid';
+
+var HardDrive = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "22",
+ y1: "12",
+ x2: "2",
+ y2: "12"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M5.45 5.11L2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "6",
+ y1: "16",
+ x2: "6.01",
+ y2: "16"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "10",
+ y1: "16",
+ x2: "10.01",
+ y2: "16"
+ }));
+});
+HardDrive.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+HardDrive.displayName = 'HardDrive';
+
+var Hash = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "4",
+ y1: "9",
+ x2: "20",
+ y2: "9"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "4",
+ y1: "15",
+ x2: "20",
+ y2: "15"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "10",
+ y1: "3",
+ x2: "8",
+ y2: "21"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "16",
+ y1: "3",
+ x2: "14",
+ y2: "21"
+ }));
+});
+Hash.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Hash.displayName = 'Hash';
+
+var Headphones = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M3 18v-6a9 9 0 0 1 18 0v6"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M21 19a2 2 0 0 1-2 2h-1a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h3zM3 19a2 2 0 0 0 2 2h1a2 2 0 0 0 2-2v-3a2 2 0 0 0-2-2H3z"
+ }));
+});
+Headphones.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Headphones.displayName = 'Headphones';
+
+var Heart = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z"
+ }));
+});
+Heart.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Heart.displayName = 'Heart';
+
+var HelpCircle = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Circle, {
+ cx: "12",
+ cy: "12",
+ r: "10"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "12",
+ y1: "17",
+ x2: "12.01",
+ y2: "17"
+ }));
+});
+HelpCircle.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+HelpCircle.displayName = 'HelpCircle';
+
+var Hexagon = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z"
+ }));
+});
+Hexagon.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Hexagon.displayName = 'Hexagon';
+
+var Home = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"
+ }), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "9 22 9 12 15 12 15 22"
+ }));
+});
+Home.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Home.displayName = 'Home';
+
+var Image = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Rect, {
+ x: "3",
+ y: "3",
+ width: "18",
+ height: "18",
+ rx: "2",
+ ry: "2"
+ }), /*#__PURE__*/React__default.createElement(Svg.Circle, {
+ cx: "8.5",
+ cy: "8.5",
+ r: "1.5"
+ }), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "21 15 16 10 5 21"
+ }));
+});
+Image.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Image.displayName = 'Image';
+
+var Inbox = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "22 12 16 12 14 15 10 15 8 12 2 12"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M5.45 5.11L2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z"
+ }));
+});
+Inbox.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Inbox.displayName = 'Inbox';
+
+var Info = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Circle, {
+ cx: "12",
+ cy: "12",
+ r: "10"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "12",
+ y1: "16",
+ x2: "12",
+ y2: "12"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "12",
+ y1: "8",
+ x2: "12.01",
+ y2: "8"
+ }));
+});
+Info.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Info.displayName = 'Info';
+
+var Instagram = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Rect, {
+ x: "2",
+ y: "2",
+ width: "20",
+ height: "20",
+ rx: "5",
+ ry: "5"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "17.5",
+ y1: "6.5",
+ x2: "17.51",
+ y2: "6.5"
+ }));
+});
+Instagram.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Instagram.displayName = 'Instagram';
+
+var Italic = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "19",
+ y1: "4",
+ x2: "10",
+ y2: "4"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "14",
+ y1: "20",
+ x2: "5",
+ y2: "20"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "15",
+ y1: "4",
+ x2: "9",
+ y2: "20"
+ }));
+});
+Italic.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Italic.displayName = 'Italic';
+
+var Key = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M21 2l-2 2m-7.61 7.61a5.5 5.5 0 1 1-7.778 7.778 5.5 5.5 0 0 1 7.777-7.777zm0 0L15.5 7.5m0 0l3 3L22 7l-3-3m-3.5 3.5L19 4"
+ }));
+});
+Key.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Key.displayName = 'Key';
+
+var Layers = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Polygon, {
+ points: "12 2 2 7 12 12 22 7 12 2"
+ }), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "2 17 12 22 22 17"
+ }), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "2 12 12 17 22 12"
+ }));
+});
+Layers.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Layers.displayName = 'Layers';
+
+var Layout = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Rect, {
+ x: "3",
+ y: "3",
+ width: "18",
+ height: "18",
+ rx: "2",
+ ry: "2"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "3",
+ y1: "9",
+ x2: "21",
+ y2: "9"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "9",
+ y1: "21",
+ x2: "9",
+ y2: "9"
+ }));
+});
+Layout.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Layout.displayName = 'Layout';
+
+var LifeBuoy = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Circle, {
+ cx: "12",
+ cy: "12",
+ r: "10"
+ }), /*#__PURE__*/React__default.createElement(Svg.Circle, {
+ cx: "12",
+ cy: "12",
+ r: "4"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "4.93",
+ y1: "4.93",
+ x2: "9.17",
+ y2: "9.17"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "14.83",
+ y1: "14.83",
+ x2: "19.07",
+ y2: "19.07"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "14.83",
+ y1: "9.17",
+ x2: "19.07",
+ y2: "4.93"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "14.83",
+ y1: "9.17",
+ x2: "18.36",
+ y2: "5.64"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "4.93",
+ y1: "19.07",
+ x2: "9.17",
+ y2: "14.83"
+ }));
+});
+LifeBuoy.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+LifeBuoy.displayName = 'LifeBuoy';
+
+var Link2 = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M15 7h3a5 5 0 0 1 5 5 5 5 0 0 1-5 5h-3m-6 0H6a5 5 0 0 1-5-5 5 5 0 0 1 5-5h3"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "8",
+ y1: "12",
+ x2: "16",
+ y2: "12"
+ }));
+});
+Link2.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Link2.displayName = 'Link2';
+
+var Link = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"
+ }));
+});
+Link.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Link.displayName = 'Link';
+
+var Linkedin = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M16 8a6 6 0 0 1 6 6v7h-4v-7a2 2 0 0 0-2-2 2 2 0 0 0-2 2v7h-4v-7a6 6 0 0 1 6-6z"
+ }), /*#__PURE__*/React__default.createElement(Svg.Rect, {
+ x: "2",
+ y: "9",
+ width: "4",
+ height: "12"
+ }), /*#__PURE__*/React__default.createElement(Svg.Circle, {
+ cx: "4",
+ cy: "4",
+ r: "2"
+ }));
+});
+Linkedin.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Linkedin.displayName = 'Linkedin';
+
+var List = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "8",
+ y1: "6",
+ x2: "21",
+ y2: "6"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "8",
+ y1: "12",
+ x2: "21",
+ y2: "12"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "8",
+ y1: "18",
+ x2: "21",
+ y2: "18"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "3",
+ y1: "6",
+ x2: "3.01",
+ y2: "6"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "3",
+ y1: "12",
+ x2: "3.01",
+ y2: "12"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "3",
+ y1: "18",
+ x2: "3.01",
+ y2: "18"
+ }));
+});
+List.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+List.displayName = 'List';
+
+var Loader = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "12",
+ y1: "2",
+ x2: "12",
+ y2: "6"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "12",
+ y1: "18",
+ x2: "12",
+ y2: "22"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "4.93",
+ y1: "4.93",
+ x2: "7.76",
+ y2: "7.76"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "16.24",
+ y1: "16.24",
+ x2: "19.07",
+ y2: "19.07"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "2",
+ y1: "12",
+ x2: "6",
+ y2: "12"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "18",
+ y1: "12",
+ x2: "22",
+ y2: "12"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "4.93",
+ y1: "19.07",
+ x2: "7.76",
+ y2: "16.24"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "16.24",
+ y1: "7.76",
+ x2: "19.07",
+ y2: "4.93"
+ }));
+});
+Loader.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Loader.displayName = 'Loader';
+
+var Lock = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Rect, {
+ x: "3",
+ y: "11",
+ width: "18",
+ height: "11",
+ rx: "2",
+ ry: "2"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M7 11V7a5 5 0 0 1 10 0v4"
+ }));
+});
+Lock.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Lock.displayName = 'Lock';
+
+var LogIn = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M15 3h4a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-4"
+ }), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "10 17 15 12 10 7"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "15",
+ y1: "12",
+ x2: "3",
+ y2: "12"
+ }));
+});
+LogIn.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+LogIn.displayName = 'LogIn';
+
+var LogOut = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4"
+ }), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "16 17 21 12 16 7"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "21",
+ y1: "12",
+ x2: "9",
+ y2: "12"
+ }));
+});
+LogOut.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+LogOut.displayName = 'LogOut';
+
+var Mail = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z"
+ }), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "22,6 12,13 2,6"
+ }));
+});
+Mail.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Mail.displayName = 'Mail';
+
+var MapPin = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z"
+ }), /*#__PURE__*/React__default.createElement(Svg.Circle, {
+ cx: "12",
+ cy: "10",
+ r: "3"
+ }));
+});
+MapPin.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+MapPin.displayName = 'MapPin';
+
+var Map = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Polygon, {
+ points: "1 6 1 22 8 18 16 22 23 18 23 2 16 6 8 2 1 6"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "8",
+ y1: "2",
+ x2: "8",
+ y2: "18"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "16",
+ y1: "6",
+ x2: "16",
+ y2: "22"
+ }));
+});
+Map.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Map.displayName = 'Map';
+
+var Maximize2 = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "15 3 21 3 21 9"
+ }), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "9 21 3 21 3 15"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "21",
+ y1: "3",
+ x2: "14",
+ y2: "10"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "3",
+ y1: "21",
+ x2: "10",
+ y2: "14"
+ }));
+});
+Maximize2.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Maximize2.displayName = 'Maximize2';
+
+var Maximize = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M8 3H5a2 2 0 0 0-2 2v3m18 0V5a2 2 0 0 0-2-2h-3m0 18h3a2 2 0 0 0 2-2v-3M3 16v3a2 2 0 0 0 2 2h3"
+ }));
+});
+Maximize.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Maximize.displayName = 'Maximize';
+
+var Meh = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Circle, {
+ cx: "12",
+ cy: "12",
+ r: "10"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "8",
+ y1: "15",
+ x2: "16",
+ y2: "15"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "9",
+ y1: "9",
+ x2: "9.01",
+ y2: "9"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "15",
+ y1: "9",
+ x2: "15.01",
+ y2: "9"
+ }));
+});
+Meh.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Meh.displayName = 'Meh';
+
+var Menu = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "3",
+ y1: "12",
+ x2: "21",
+ y2: "12"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "3",
+ y1: "6",
+ x2: "21",
+ y2: "6"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "3",
+ y1: "18",
+ x2: "21",
+ y2: "18"
+ }));
+});
+Menu.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Menu.displayName = 'Menu';
+
+var MessageCircle = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M21 11.5a8.38 8.38 0 0 1-.9 3.8 8.5 8.5 0 0 1-7.6 4.7 8.38 8.38 0 0 1-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 0 1-.9-3.8 8.5 8.5 0 0 1 4.7-7.6 8.38 8.38 0 0 1 3.8-.9h.5a8.48 8.48 0 0 1 8 8v.5z"
+ }));
+});
+MessageCircle.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+MessageCircle.displayName = 'MessageCircle';
+
+var MessageSquare = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z"
+ }));
+});
+MessageSquare.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+MessageSquare.displayName = 'MessageSquare';
+
+var MicOff = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "1",
+ y1: "1",
+ x2: "23",
+ y2: "23"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M9 9v3a3 3 0 0 0 5.12 2.12M15 9.34V4a3 3 0 0 0-5.94-.6"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M17 16.95A7 7 0 0 1 5 12v-2m14 0v2a7 7 0 0 1-.11 1.23"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "12",
+ y1: "19",
+ x2: "12",
+ y2: "23"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "8",
+ y1: "23",
+ x2: "16",
+ y2: "23"
+ }));
+});
+MicOff.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+MicOff.displayName = 'MicOff';
+
+var Mic = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M12 1a3 3 0 0 0-3 3v8a3 3 0 0 0 6 0V4a3 3 0 0 0-3-3z"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M19 10v2a7 7 0 0 1-14 0v-2"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "12",
+ y1: "19",
+ x2: "12",
+ y2: "23"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "8",
+ y1: "23",
+ x2: "16",
+ y2: "23"
+ }));
+});
+Mic.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Mic.displayName = 'Mic';
+
+var Minimize2 = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "4 14 10 14 10 20"
+ }), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "20 10 14 10 14 4"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "14",
+ y1: "10",
+ x2: "21",
+ y2: "3"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "3",
+ y1: "21",
+ x2: "10",
+ y2: "14"
+ }));
+});
+Minimize2.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Minimize2.displayName = 'Minimize2';
+
+var Minimize = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M8 3v3a2 2 0 0 1-2 2H3m18 0h-3a2 2 0 0 1-2-2V3m0 18v-3a2 2 0 0 1 2-2h3M3 16h3a2 2 0 0 1 2 2v3"
+ }));
+});
+Minimize.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Minimize.displayName = 'Minimize';
+
+var MinusCircle = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Circle, {
+ cx: "12",
+ cy: "12",
+ r: "10"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "8",
+ y1: "12",
+ x2: "16",
+ y2: "12"
+ }));
+});
+MinusCircle.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+MinusCircle.displayName = 'MinusCircle';
+
+var MinusSquare = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Rect, {
+ x: "3",
+ y: "3",
+ width: "18",
+ height: "18",
+ rx: "2",
+ ry: "2"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "8",
+ y1: "12",
+ x2: "16",
+ y2: "12"
+ }));
+});
+MinusSquare.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+MinusSquare.displayName = 'MinusSquare';
+
+var Minus = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "5",
+ y1: "12",
+ x2: "19",
+ y2: "12"
+ }));
+});
+Minus.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Minus.displayName = 'Minus';
+
+var Monitor = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Rect, {
+ x: "2",
+ y: "3",
+ width: "20",
+ height: "14",
+ rx: "2",
+ ry: "2"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "8",
+ y1: "21",
+ x2: "16",
+ y2: "21"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "12",
+ y1: "17",
+ x2: "12",
+ y2: "21"
+ }));
+});
+Monitor.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Monitor.displayName = 'Monitor';
+
+var Moon = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"
+ }));
+});
+Moon.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Moon.displayName = 'Moon';
+
+var MoreHorizontal = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Circle, {
+ cx: "12",
+ cy: "12",
+ r: "1"
+ }), /*#__PURE__*/React__default.createElement(Svg.Circle, {
+ cx: "19",
+ cy: "12",
+ r: "1"
+ }), /*#__PURE__*/React__default.createElement(Svg.Circle, {
+ cx: "5",
+ cy: "12",
+ r: "1"
+ }));
+});
+MoreHorizontal.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+MoreHorizontal.displayName = 'MoreHorizontal';
+
+var MoreVertical = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Circle, {
+ cx: "12",
+ cy: "12",
+ r: "1"
+ }), /*#__PURE__*/React__default.createElement(Svg.Circle, {
+ cx: "12",
+ cy: "5",
+ r: "1"
+ }), /*#__PURE__*/React__default.createElement(Svg.Circle, {
+ cx: "12",
+ cy: "19",
+ r: "1"
+ }));
+});
+MoreVertical.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+MoreVertical.displayName = 'MoreVertical';
+
+var MousePointer = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M3 3l7.07 16.97 2.51-7.39 7.39-2.51L3 3z"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M13 13l6 6"
+ }));
+});
+MousePointer.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+MousePointer.displayName = 'MousePointer';
+
+var Move = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "5 9 2 12 5 15"
+ }), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "9 5 12 2 15 5"
+ }), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "15 19 12 22 9 19"
+ }), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "19 9 22 12 19 15"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "2",
+ y1: "12",
+ x2: "22",
+ y2: "12"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "12",
+ y1: "2",
+ x2: "12",
+ y2: "22"
+ }));
+});
+Move.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Move.displayName = 'Move';
+
+var Music = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M9 18V5l12-2v13"
+ }), /*#__PURE__*/React__default.createElement(Svg.Circle, {
+ cx: "6",
+ cy: "18",
+ r: "3"
+ }), /*#__PURE__*/React__default.createElement(Svg.Circle, {
+ cx: "18",
+ cy: "16",
+ r: "3"
+ }));
+});
+Music.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Music.displayName = 'Music';
+
+var Navigation2 = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Polygon, {
+ points: "12 2 19 21 12 17 5 21 12 2"
+ }));
+});
+Navigation2.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Navigation2.displayName = 'Navigation2';
+
+var Navigation = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Polygon, {
+ points: "3 11 22 2 13 21 11 13 3 11"
+ }));
+});
+Navigation.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Navigation.displayName = 'Navigation';
+
+var Octagon = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Polygon, {
+ points: "7.86 2 16.14 2 22 7.86 22 16.14 16.14 22 7.86 22 2 16.14 2 7.86 7.86 2"
+ }));
+});
+Octagon.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Octagon.displayName = 'Octagon';
+
+var Package = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "16.5",
+ y1: "9.4",
+ x2: "7.5",
+ y2: "4.21"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z"
+ }), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "3.27 6.96 12 12.01 20.73 6.96"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "12",
+ y1: "22.08",
+ x2: "12",
+ y2: "12"
+ }));
+});
+Package.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Package.displayName = 'Package';
+
+var Paperclip = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M21.44 11.05l-9.19 9.19a6 6 0 0 1-8.49-8.49l9.19-9.19a4 4 0 0 1 5.66 5.66l-9.2 9.19a2 2 0 0 1-2.83-2.83l8.49-8.48"
+ }));
+});
+Paperclip.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Paperclip.displayName = 'Paperclip';
+
+var PauseCircle = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Circle, {
+ cx: "12",
+ cy: "12",
+ r: "10"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "10",
+ y1: "15",
+ x2: "10",
+ y2: "9"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "14",
+ y1: "15",
+ x2: "14",
+ y2: "9"
+ }));
+});
+PauseCircle.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+PauseCircle.displayName = 'PauseCircle';
+
+var Pause = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Rect, {
+ x: "6",
+ y: "4",
+ width: "4",
+ height: "16"
+ }), /*#__PURE__*/React__default.createElement(Svg.Rect, {
+ x: "14",
+ y: "4",
+ width: "4",
+ height: "16"
+ }));
+});
+Pause.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Pause.displayName = 'Pause';
+
+var PenTool = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M12 19l7-7 3 3-7 7-3-3z"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M18 13l-1.5-7.5L2 2l3.5 14.5L13 18l5-5z"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M2 2l7.586 7.586"
+ }), /*#__PURE__*/React__default.createElement(Svg.Circle, {
+ cx: "11",
+ cy: "11",
+ r: "2"
+ }));
+});
+PenTool.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+PenTool.displayName = 'PenTool';
+
+var Percent = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "19",
+ y1: "5",
+ x2: "5",
+ y2: "19"
+ }), /*#__PURE__*/React__default.createElement(Svg.Circle, {
+ cx: "6.5",
+ cy: "6.5",
+ r: "2.5"
+ }), /*#__PURE__*/React__default.createElement(Svg.Circle, {
+ cx: "17.5",
+ cy: "17.5",
+ r: "2.5"
+ }));
+});
+Percent.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Percent.displayName = 'Percent';
+
+var PhoneCall = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M15.05 5A5 5 0 0 1 19 8.95M15.05 1A9 9 0 0 1 23 8.94m-1 7.98v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"
+ }));
+});
+PhoneCall.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+PhoneCall.displayName = 'PhoneCall';
+
+var PhoneForwarded = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "19 1 23 5 19 9"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "15",
+ y1: "5",
+ x2: "23",
+ y2: "5"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"
+ }));
+});
+PhoneForwarded.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+PhoneForwarded.displayName = 'PhoneForwarded';
+
+var PhoneIncoming = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "16 2 16 8 22 8"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "23",
+ y1: "1",
+ x2: "16",
+ y2: "8"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"
+ }));
+});
+PhoneIncoming.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+PhoneIncoming.displayName = 'PhoneIncoming';
+
+var PhoneMissed = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "23",
+ y1: "1",
+ x2: "17",
+ y2: "7"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "17",
+ y1: "1",
+ x2: "23",
+ y2: "7"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"
+ }));
+});
+PhoneMissed.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+PhoneMissed.displayName = 'PhoneMissed';
+
+var PhoneOff = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M10.68 13.31a16 16 0 0 0 3.41 2.6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7 2 2 0 0 1 1.72 2v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.42 19.42 0 0 1-3.33-2.67m-2.67-3.34a19.79 19.79 0 0 1-3.07-8.63A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "23",
+ y1: "1",
+ x2: "1",
+ y2: "23"
+ }));
+});
+PhoneOff.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+PhoneOff.displayName = 'PhoneOff';
+
+var PhoneOutgoing = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "23 7 23 1 17 1"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "16",
+ y1: "8",
+ x2: "23",
+ y2: "1"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"
+ }));
+});
+PhoneOutgoing.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+PhoneOutgoing.displayName = 'PhoneOutgoing';
+
+var Phone = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"
+ }));
+});
+Phone.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Phone.displayName = 'Phone';
+
+var PieChart = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M21.21 15.89A10 10 0 1 1 8 2.83"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M22 12A10 10 0 0 0 12 2v10z"
+ }));
+});
+PieChart.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+PieChart.displayName = 'PieChart';
+
+var PlayCircle = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Circle, {
+ cx: "12",
+ cy: "12",
+ r: "10"
+ }), /*#__PURE__*/React__default.createElement(Svg.Polygon, {
+ points: "10 8 16 12 10 16 10 8"
+ }));
+});
+PlayCircle.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+PlayCircle.displayName = 'PlayCircle';
+
+var Play = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Polygon, {
+ points: "5 3 19 12 5 21 5 3"
+ }));
+});
+Play.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Play.displayName = 'Play';
+
+var PlusCircle = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Circle, {
+ cx: "12",
+ cy: "12",
+ r: "10"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "12",
+ y1: "8",
+ x2: "12",
+ y2: "16"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "8",
+ y1: "12",
+ x2: "16",
+ y2: "12"
+ }));
+});
+PlusCircle.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+PlusCircle.displayName = 'PlusCircle';
+
+var PlusSquare = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Rect, {
+ x: "3",
+ y: "3",
+ width: "18",
+ height: "18",
+ rx: "2",
+ ry: "2"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "12",
+ y1: "8",
+ x2: "12",
+ y2: "16"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "8",
+ y1: "12",
+ x2: "16",
+ y2: "12"
+ }));
+});
+PlusSquare.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+PlusSquare.displayName = 'PlusSquare';
+
+var Plus = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "12",
+ y1: "5",
+ x2: "12",
+ y2: "19"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "5",
+ y1: "12",
+ x2: "19",
+ y2: "12"
+ }));
+});
+Plus.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Plus.displayName = 'Plus';
+
+var Pocket = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M4 3h16a2 2 0 0 1 2 2v6a10 10 0 0 1-10 10A10 10 0 0 1 2 11V5a2 2 0 0 1 2-2z"
+ }), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "8 10 12 14 16 10"
+ }));
+});
+Pocket.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Pocket.displayName = 'Pocket';
+
+var Power = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M18.36 6.64a9 9 0 1 1-12.73 0"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "12",
+ y1: "2",
+ x2: "12",
+ y2: "12"
+ }));
+});
+Power.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Power.displayName = 'Power';
+
+var Printer = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "6 9 6 2 18 2 18 9"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M6 18H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2"
+ }), /*#__PURE__*/React__default.createElement(Svg.Rect, {
+ x: "6",
+ y: "14",
+ width: "12",
+ height: "8"
+ }));
+});
+Printer.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Printer.displayName = 'Printer';
+
+var Radio = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Circle, {
+ cx: "12",
+ cy: "12",
+ r: "2"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M16.24 7.76a6 6 0 0 1 0 8.49m-8.48-.01a6 6 0 0 1 0-8.49m11.31-2.82a10 10 0 0 1 0 14.14m-14.14 0a10 10 0 0 1 0-14.14"
+ }));
+});
+Radio.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Radio.displayName = 'Radio';
+
+var RefreshCcw = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "1 4 1 10 7 10"
+ }), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "23 20 23 14 17 14"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M20.49 9A9 9 0 0 0 5.64 5.64L1 10m22 4l-4.64 4.36A9 9 0 0 1 3.51 15"
+ }));
+});
+RefreshCcw.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+RefreshCcw.displayName = 'RefreshCcw';
+
+var RefreshCw = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "23 4 23 10 17 10"
+ }), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "1 20 1 14 7 14"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M3.51 9a9 9 0 0 1 14.85-3.36L23 10M1 14l4.64 4.36A9 9 0 0 0 20.49 15"
+ }));
+});
+RefreshCw.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+RefreshCw.displayName = 'RefreshCw';
+
+var Repeat = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "17 1 21 5 17 9"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M3 11V9a4 4 0 0 1 4-4h14"
+ }), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "7 23 3 19 7 15"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M21 13v2a4 4 0 0 1-4 4H3"
+ }));
+});
+Repeat.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Repeat.displayName = 'Repeat';
+
+var Rewind = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Polygon, {
+ points: "11 19 2 12 11 5 11 19"
+ }), /*#__PURE__*/React__default.createElement(Svg.Polygon, {
+ points: "22 19 13 12 22 5 22 19"
+ }));
+});
+Rewind.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Rewind.displayName = 'Rewind';
+
+var RotateCcw = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "1 4 1 10 7 10"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M3.51 15a9 9 0 1 0 2.13-9.36L1 10"
+ }));
+});
+RotateCcw.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+RotateCcw.displayName = 'RotateCcw';
+
+var RotateCw = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "23 4 23 10 17 10"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M20.49 15a9 9 0 1 1-2.12-9.36L23 10"
+ }));
+});
+RotateCw.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+RotateCw.displayName = 'RotateCw';
+
+var Rss = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M4 11a9 9 0 0 1 9 9"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M4 4a16 16 0 0 1 16 16"
+ }), /*#__PURE__*/React__default.createElement(Svg.Circle, {
+ cx: "5",
+ cy: "19",
+ r: "1"
+ }));
+});
+Rss.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Rss.displayName = 'Rss';
+
+var Save = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M19 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11l5 5v11a2 2 0 0 1-2 2z"
+ }), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "17 21 17 13 7 13 7 21"
+ }), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "7 3 7 8 15 8"
+ }));
+});
+Save.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Save.displayName = 'Save';
+
+var Scissors = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Circle, {
+ cx: "6",
+ cy: "6",
+ r: "3"
+ }), /*#__PURE__*/React__default.createElement(Svg.Circle, {
+ cx: "6",
+ cy: "18",
+ r: "3"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "20",
+ y1: "4",
+ x2: "8.12",
+ y2: "15.88"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "14.47",
+ y1: "14.48",
+ x2: "20",
+ y2: "20"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "8.12",
+ y1: "8.12",
+ x2: "12",
+ y2: "12"
+ }));
+});
+Scissors.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Scissors.displayName = 'Scissors';
+
+var Search = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Circle, {
+ cx: "11",
+ cy: "11",
+ r: "8"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "21",
+ y1: "21",
+ x2: "16.65",
+ y2: "16.65"
+ }));
+});
+Search.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Search.displayName = 'Search';
+
+var Send = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "22",
+ y1: "2",
+ x2: "11",
+ y2: "13"
+ }), /*#__PURE__*/React__default.createElement(Svg.Polygon, {
+ points: "22 2 15 22 11 13 2 9 22 2"
+ }));
+});
+Send.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Send.displayName = 'Send';
+
+var Server = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Rect, {
+ x: "2",
+ y: "2",
+ width: "20",
+ height: "8",
+ rx: "2",
+ ry: "2"
+ }), /*#__PURE__*/React__default.createElement(Svg.Rect, {
+ x: "2",
+ y: "14",
+ width: "20",
+ height: "8",
+ rx: "2",
+ ry: "2"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "6",
+ y1: "6",
+ x2: "6.01",
+ y2: "6"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "6",
+ y1: "18",
+ x2: "6.01",
+ y2: "18"
+ }));
+});
+Server.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Server.displayName = 'Server';
+
+var Settings = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Circle, {
+ cx: "12",
+ cy: "12",
+ r: "3"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 0 1 0 2.83 2 2 0 0 1-2.83 0l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-2 2 2 2 0 0 1-2-2v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 0 1-2.83 0 2 2 0 0 1 0-2.83l.06-.06a1.65 1.65 0 0 0 .33-1.82 1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1-2-2 2 2 0 0 1 2-2h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 0 1 0-2.83 2 2 0 0 1 2.83 0l.06.06a1.65 1.65 0 0 0 1.82.33H9a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 2-2 2 2 0 0 1 2 2v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 0 1 2.83 0 2 2 0 0 1 0 2.83l-.06.06a1.65 1.65 0 0 0-.33 1.82V9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 2 2 2 2 0 0 1-2 2h-.09a1.65 1.65 0 0 0-1.51 1z"
+ }));
+});
+Settings.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Settings.displayName = 'Settings';
+
+var Share2 = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Circle, {
+ cx: "18",
+ cy: "5",
+ r: "3"
+ }), /*#__PURE__*/React__default.createElement(Svg.Circle, {
+ cx: "6",
+ cy: "12",
+ r: "3"
+ }), /*#__PURE__*/React__default.createElement(Svg.Circle, {
+ cx: "18",
+ cy: "19",
+ r: "3"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "8.59",
+ y1: "13.51",
+ x2: "15.42",
+ y2: "17.49"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "15.41",
+ y1: "6.51",
+ x2: "8.59",
+ y2: "10.49"
+ }));
+});
+Share2.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Share2.displayName = 'Share2';
+
+var Share = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M4 12v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8"
+ }), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "16 6 12 2 8 6"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "12",
+ y1: "2",
+ x2: "12",
+ y2: "15"
+ }));
+});
+Share.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Share.displayName = 'Share';
+
+var ShieldOff = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M19.69 14a6.9 6.9 0 0 0 .31-2V5l-8-3-3.16 1.18"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M4.73 4.73L4 5v7c0 6 8 10 8 10a20.29 20.29 0 0 0 5.62-4.38"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "1",
+ y1: "1",
+ x2: "23",
+ y2: "23"
+ }));
+});
+ShieldOff.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+ShieldOff.displayName = 'ShieldOff';
+
+var Shield = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"
+ }));
+});
+Shield.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Shield.displayName = 'Shield';
+
+var ShoppingBag = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M6 2L3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4z"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "3",
+ y1: "6",
+ x2: "21",
+ y2: "6"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M16 10a4 4 0 0 1-8 0"
+ }));
+});
+ShoppingBag.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+ShoppingBag.displayName = 'ShoppingBag';
+
+var ShoppingCart = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Circle, {
+ cx: "9",
+ cy: "21",
+ r: "1"
+ }), /*#__PURE__*/React__default.createElement(Svg.Circle, {
+ cx: "20",
+ cy: "21",
+ r: "1"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M1 1h4l2.68 13.39a2 2 0 0 0 2 1.61h9.72a2 2 0 0 0 2-1.61L23 6H6"
+ }));
+});
+ShoppingCart.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+ShoppingCart.displayName = 'ShoppingCart';
+
+var Shuffle = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "16 3 21 3 21 8"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "4",
+ y1: "20",
+ x2: "21",
+ y2: "3"
+ }), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "21 16 21 21 16 21"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "15",
+ y1: "15",
+ x2: "21",
+ y2: "21"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "4",
+ y1: "4",
+ x2: "9",
+ y2: "9"
+ }));
+});
+Shuffle.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Shuffle.displayName = 'Shuffle';
+
+var Sidebar = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Rect, {
+ x: "3",
+ y: "3",
+ width: "18",
+ height: "18",
+ rx: "2",
+ ry: "2"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "9",
+ y1: "3",
+ x2: "9",
+ y2: "21"
+ }));
+});
+Sidebar.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Sidebar.displayName = 'Sidebar';
+
+var SkipBack = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Polygon, {
+ points: "19 20 9 12 19 4 19 20"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "5",
+ y1: "19",
+ x2: "5",
+ y2: "5"
+ }));
+});
+SkipBack.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+SkipBack.displayName = 'SkipBack';
+
+var SkipForward = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Polygon, {
+ points: "5 4 15 12 5 20 5 4"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "19",
+ y1: "5",
+ x2: "19",
+ y2: "19"
+ }));
+});
+SkipForward.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+SkipForward.displayName = 'SkipForward';
+
+var Slack = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M14.5 10c-.83 0-1.5-.67-1.5-1.5v-5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5v5c0 .83-.67 1.5-1.5 1.5z"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M20.5 10H19V8.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5-.67 1.5-1.5 1.5z"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M9.5 14c.83 0 1.5.67 1.5 1.5v5c0 .83-.67 1.5-1.5 1.5S8 21.33 8 20.5v-5c0-.83.67-1.5 1.5-1.5z"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M3.5 14H5v1.5c0 .83-.67 1.5-1.5 1.5S2 16.33 2 15.5 2.67 14 3.5 14z"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M14 14.5c0-.83.67-1.5 1.5-1.5h5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5h-5c-.83 0-1.5-.67-1.5-1.5z"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M15.5 19H14v1.5c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5-.67-1.5-1.5-1.5z"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M10 9.5C10 8.67 9.33 8 8.5 8h-5C2.67 8 2 8.67 2 9.5S2.67 11 3.5 11h5c.83 0 1.5-.67 1.5-1.5z"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M8.5 5H10V3.5C10 2.67 9.33 2 8.5 2S7 2.67 7 3.5 7.67 5 8.5 5z"
+ }));
+});
+Slack.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Slack.displayName = 'Slack';
+
+var Slash = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Circle, {
+ cx: "12",
+ cy: "12",
+ r: "10"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "4.93",
+ y1: "4.93",
+ x2: "19.07",
+ y2: "19.07"
+ }));
+});
+Slash.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Slash.displayName = 'Slash';
+
+var Sliders = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "4",
+ y1: "21",
+ x2: "4",
+ y2: "14"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "4",
+ y1: "10",
+ x2: "4",
+ y2: "3"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "12",
+ y1: "21",
+ x2: "12",
+ y2: "12"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "12",
+ y1: "8",
+ x2: "12",
+ y2: "3"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "20",
+ y1: "21",
+ x2: "20",
+ y2: "16"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "20",
+ y1: "12",
+ x2: "20",
+ y2: "3"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "1",
+ y1: "14",
+ x2: "7",
+ y2: "14"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "9",
+ y1: "8",
+ x2: "15",
+ y2: "8"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "17",
+ y1: "16",
+ x2: "23",
+ y2: "16"
+ }));
+});
+Sliders.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Sliders.displayName = 'Sliders';
+
+var Smartphone = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Rect, {
+ x: "5",
+ y: "2",
+ width: "14",
+ height: "20",
+ rx: "2",
+ ry: "2"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "12",
+ y1: "18",
+ x2: "12.01",
+ y2: "18"
+ }));
+});
+Smartphone.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Smartphone.displayName = 'Smartphone';
+
+var Smile = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Circle, {
+ cx: "12",
+ cy: "12",
+ r: "10"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M8 14s1.5 2 4 2 4-2 4-2"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "9",
+ y1: "9",
+ x2: "9.01",
+ y2: "9"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "15",
+ y1: "9",
+ x2: "15.01",
+ y2: "9"
+ }));
+});
+Smile.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Smile.displayName = 'Smile';
+
+var Speaker = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Rect, {
+ x: "4",
+ y: "2",
+ width: "16",
+ height: "20",
+ rx: "2",
+ ry: "2"
+ }), /*#__PURE__*/React__default.createElement(Svg.Circle, {
+ cx: "12",
+ cy: "14",
+ r: "4"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "12",
+ y1: "6",
+ x2: "12.01",
+ y2: "6"
+ }));
+});
+Speaker.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Speaker.displayName = 'Speaker';
+
+var Square = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Rect, {
+ x: "3",
+ y: "3",
+ width: "18",
+ height: "18",
+ rx: "2",
+ ry: "2"
+ }));
+});
+Square.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Square.displayName = 'Square';
+
+var Star = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Polygon, {
+ points: "12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"
+ }));
+});
+Star.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Star.displayName = 'Star';
+
+var StopCircle = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Circle, {
+ cx: "12",
+ cy: "12",
+ r: "10"
+ }), /*#__PURE__*/React__default.createElement(Svg.Rect, {
+ x: "9",
+ y: "9",
+ width: "6",
+ height: "6"
+ }));
+});
+StopCircle.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+StopCircle.displayName = 'StopCircle';
+
+var Sun = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Circle, {
+ cx: "12",
+ cy: "12",
+ r: "5"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "12",
+ y1: "1",
+ x2: "12",
+ y2: "3"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "12",
+ y1: "21",
+ x2: "12",
+ y2: "23"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "4.22",
+ y1: "4.22",
+ x2: "5.64",
+ y2: "5.64"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "18.36",
+ y1: "18.36",
+ x2: "19.78",
+ y2: "19.78"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "1",
+ y1: "12",
+ x2: "3",
+ y2: "12"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "21",
+ y1: "12",
+ x2: "23",
+ y2: "12"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "4.22",
+ y1: "19.78",
+ x2: "5.64",
+ y2: "18.36"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "18.36",
+ y1: "5.64",
+ x2: "19.78",
+ y2: "4.22"
+ }));
+});
+Sun.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Sun.displayName = 'Sun';
+
+var Sunrise = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M17 18a5 5 0 0 0-10 0"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "12",
+ y1: "2",
+ x2: "12",
+ y2: "9"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "4.22",
+ y1: "10.22",
+ x2: "5.64",
+ y2: "11.64"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "1",
+ y1: "18",
+ x2: "3",
+ y2: "18"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "21",
+ y1: "18",
+ x2: "23",
+ y2: "18"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "18.36",
+ y1: "11.64",
+ x2: "19.78",
+ y2: "10.22"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "23",
+ y1: "22",
+ x2: "1",
+ y2: "22"
+ }), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "8 6 12 2 16 6"
+ }));
+});
+Sunrise.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Sunrise.displayName = 'Sunrise';
+
+var Sunset = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M17 18a5 5 0 0 0-10 0"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "12",
+ y1: "9",
+ x2: "12",
+ y2: "2"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "4.22",
+ y1: "10.22",
+ x2: "5.64",
+ y2: "11.64"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "1",
+ y1: "18",
+ x2: "3",
+ y2: "18"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "21",
+ y1: "18",
+ x2: "23",
+ y2: "18"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "18.36",
+ y1: "11.64",
+ x2: "19.78",
+ y2: "10.22"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "23",
+ y1: "22",
+ x2: "1",
+ y2: "22"
+ }), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "16 5 12 9 8 5"
+ }));
+});
+Sunset.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Sunset.displayName = 'Sunset';
+
+var Tablet = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Rect, {
+ x: "4",
+ y: "2",
+ width: "16",
+ height: "20",
+ rx: "2",
+ ry: "2"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "12",
+ y1: "18",
+ x2: "12.01",
+ y2: "18"
+ }));
+});
+Tablet.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Tablet.displayName = 'Tablet';
+
+var Tag = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M20.59 13.41l-7.17 7.17a2 2 0 0 1-2.83 0L2 12V2h10l8.59 8.59a2 2 0 0 1 0 2.82z"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "7",
+ y1: "7",
+ x2: "7.01",
+ y2: "7"
+ }));
+});
+Tag.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Tag.displayName = 'Tag';
+
+var Target = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Circle, {
+ cx: "12",
+ cy: "12",
+ r: "10"
+ }), /*#__PURE__*/React__default.createElement(Svg.Circle, {
+ cx: "12",
+ cy: "12",
+ r: "6"
+ }), /*#__PURE__*/React__default.createElement(Svg.Circle, {
+ cx: "12",
+ cy: "12",
+ r: "2"
+ }));
+});
+Target.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Target.displayName = 'Target';
+
+var Terminal = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "4 17 10 11 4 5"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "12",
+ y1: "19",
+ x2: "20",
+ y2: "19"
+ }));
+});
+Terminal.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Terminal.displayName = 'Terminal';
+
+var Thermometer = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M14 14.76V3.5a2.5 2.5 0 0 0-5 0v11.26a4.5 4.5 0 1 0 5 0z"
+ }));
+});
+Thermometer.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Thermometer.displayName = 'Thermometer';
+
+var ThumbsDown = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M10 15v4a3 3 0 0 0 3 3l4-9V2H5.72a2 2 0 0 0-2 1.7l-1.38 9a2 2 0 0 0 2 2.3zm7-13h2.67A2.31 2.31 0 0 1 22 4v7a2.31 2.31 0 0 1-2.33 2H17"
+ }));
+});
+ThumbsDown.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+ThumbsDown.displayName = 'ThumbsDown';
+
+var ThumbsUp = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M14 9V5a3 3 0 0 0-3-3l-4 9v11h11.28a2 2 0 0 0 2-1.7l1.38-9a2 2 0 0 0-2-2.3zM7 22H4a2 2 0 0 1-2-2v-7a2 2 0 0 1 2-2h3"
+ }));
+});
+ThumbsUp.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+ThumbsUp.displayName = 'ThumbsUp';
+
+var ToggleLeft = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Rect, {
+ x: "1",
+ y: "5",
+ width: "22",
+ height: "14",
+ rx: "7",
+ ry: "7"
+ }), /*#__PURE__*/React__default.createElement(Svg.Circle, {
+ cx: "8",
+ cy: "12",
+ r: "3"
+ }));
+});
+ToggleLeft.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+ToggleLeft.displayName = 'ToggleLeft';
+
+var ToggleRight = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Rect, {
+ x: "1",
+ y: "5",
+ width: "22",
+ height: "14",
+ rx: "7",
+ ry: "7"
+ }), /*#__PURE__*/React__default.createElement(Svg.Circle, {
+ cx: "16",
+ cy: "12",
+ r: "3"
+ }));
+});
+ToggleRight.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+ToggleRight.displayName = 'ToggleRight';
+
+var Tool = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.77-3.77a6 6 0 0 1-7.94 7.94l-6.91 6.91a2.12 2.12 0 0 1-3-3l6.91-6.91a6 6 0 0 1 7.94-7.94l-3.76 3.76z"
+ }));
+});
+Tool.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Tool.displayName = 'Tool';
+
+var Trash2 = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "3 6 5 6 21 6"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6m3 0V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "10",
+ y1: "11",
+ x2: "10",
+ y2: "17"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "14",
+ y1: "11",
+ x2: "14",
+ y2: "17"
+ }));
+});
+Trash2.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Trash2.displayName = 'Trash2';
+
+var Trash = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "3 6 5 6 21 6"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6m3 0V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2"
+ }));
+});
+Trash.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Trash.displayName = 'Trash';
+
+var Trello = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Rect, {
+ x: "3",
+ y: "3",
+ width: "18",
+ height: "18",
+ rx: "2",
+ ry: "2"
+ }), /*#__PURE__*/React__default.createElement(Svg.Rect, {
+ x: "7",
+ y: "7",
+ width: "3",
+ height: "9"
+ }), /*#__PURE__*/React__default.createElement(Svg.Rect, {
+ x: "14",
+ y: "7",
+ width: "3",
+ height: "5"
+ }));
+});
+Trello.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Trello.displayName = 'Trello';
+
+var TrendingDown = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "23 18 13.5 8.5 8.5 13.5 1 6"
+ }), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "17 18 23 18 23 12"
+ }));
+});
+TrendingDown.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+TrendingDown.displayName = 'TrendingDown';
+
+var TrendingUp = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "23 6 13.5 15.5 8.5 10.5 1 18"
+ }), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "17 6 23 6 23 12"
+ }));
+});
+TrendingUp.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+TrendingUp.displayName = 'TrendingUp';
+
+var Triangle = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z"
+ }));
+});
+Triangle.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Triangle.displayName = 'Triangle';
+
+var Truck = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Rect, {
+ x: "1",
+ y: "3",
+ width: "15",
+ height: "13"
+ }), /*#__PURE__*/React__default.createElement(Svg.Polygon, {
+ points: "16 8 20 8 23 11 23 16 16 16 16 8"
+ }), /*#__PURE__*/React__default.createElement(Svg.Circle, {
+ cx: "5.5",
+ cy: "18.5",
+ r: "2.5"
+ }), /*#__PURE__*/React__default.createElement(Svg.Circle, {
+ cx: "18.5",
+ cy: "18.5",
+ r: "2.5"
+ }));
+});
+Truck.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Truck.displayName = 'Truck';
+
+var Tv = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Rect, {
+ x: "2",
+ y: "7",
+ width: "20",
+ height: "15",
+ rx: "2",
+ ry: "2"
+ }), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "17 2 12 7 7 2"
+ }));
+});
+Tv.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Tv.displayName = 'Tv';
+
+var Twitch = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M21 2H3v16h5v4l4-4h5l4-4V2zm-10 9V7m5 4V7"
+ }));
+});
+Twitch.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Twitch.displayName = 'Twitch';
+
+var Twitter = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M23 3a10.9 10.9 0 0 1-3.14 1.53 4.48 4.48 0 0 0-7.86 3v1A10.66 10.66 0 0 1 3 4s-4 9 5 13a11.64 11.64 0 0 1-7 2c9 5 20 0 20-11.5a4.5 4.5 0 0 0-.08-.83A7.72 7.72 0 0 0 23 3z"
+ }));
+});
+Twitter.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Twitter.displayName = 'Twitter';
+
+var Type = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "4 7 4 4 20 4 20 7"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "9",
+ y1: "20",
+ x2: "15",
+ y2: "20"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "12",
+ y1: "4",
+ x2: "12",
+ y2: "20"
+ }));
+});
+Type.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Type.displayName = 'Type';
+
+var Umbrella = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M23 12a11.05 11.05 0 0 0-22 0zm-5 7a3 3 0 0 1-6 0v-7"
+ }));
+});
+Umbrella.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Umbrella.displayName = 'Umbrella';
+
+var Underline = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M6 3v7a6 6 0 0 0 6 6 6 6 0 0 0 6-6V3"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "4",
+ y1: "21",
+ x2: "20",
+ y2: "21"
+ }));
+});
+Underline.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Underline.displayName = 'Underline';
+
+var Unlock = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Rect, {
+ x: "3",
+ y: "11",
+ width: "18",
+ height: "11",
+ rx: "2",
+ ry: "2"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M7 11V7a5 5 0 0 1 9.9-1"
+ }));
+});
+Unlock.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Unlock.displayName = 'Unlock';
+
+var UploadCloud = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "16 16 12 12 8 16"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "12",
+ y1: "12",
+ x2: "12",
+ y2: "21"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M20.39 18.39A5 5 0 0 0 18 9h-1.26A8 8 0 1 0 3 16.3"
+ }), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "16 16 12 12 8 16"
+ }));
+});
+UploadCloud.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+UploadCloud.displayName = 'UploadCloud';
+
+var Upload = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"
+ }), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "17 8 12 3 7 8"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "12",
+ y1: "3",
+ x2: "12",
+ y2: "15"
+ }));
+});
+Upload.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Upload.displayName = 'Upload';
+
+var UserCheck = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M16 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"
+ }), /*#__PURE__*/React__default.createElement(Svg.Circle, {
+ cx: "8.5",
+ cy: "7",
+ r: "4"
+ }), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "17 11 19 13 23 9"
+ }));
+});
+UserCheck.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+UserCheck.displayName = 'UserCheck';
+
+var UserMinus = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M16 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"
+ }), /*#__PURE__*/React__default.createElement(Svg.Circle, {
+ cx: "8.5",
+ cy: "7",
+ r: "4"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "23",
+ y1: "11",
+ x2: "17",
+ y2: "11"
+ }));
+});
+UserMinus.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+UserMinus.displayName = 'UserMinus';
+
+var UserPlus = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M16 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"
+ }), /*#__PURE__*/React__default.createElement(Svg.Circle, {
+ cx: "8.5",
+ cy: "7",
+ r: "4"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "20",
+ y1: "8",
+ x2: "20",
+ y2: "14"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "23",
+ y1: "11",
+ x2: "17",
+ y2: "11"
+ }));
+});
+UserPlus.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+UserPlus.displayName = 'UserPlus';
+
+var UserX = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M16 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"
+ }), /*#__PURE__*/React__default.createElement(Svg.Circle, {
+ cx: "8.5",
+ cy: "7",
+ r: "4"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "18",
+ y1: "8",
+ x2: "23",
+ y2: "13"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "23",
+ y1: "8",
+ x2: "18",
+ y2: "13"
+ }));
+});
+UserX.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+UserX.displayName = 'UserX';
+
+var User = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"
+ }), /*#__PURE__*/React__default.createElement(Svg.Circle, {
+ cx: "12",
+ cy: "7",
+ r: "4"
+ }));
+});
+User.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+User.displayName = 'User';
+
+var Users = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"
+ }), /*#__PURE__*/React__default.createElement(Svg.Circle, {
+ cx: "9",
+ cy: "7",
+ r: "4"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M23 21v-2a4 4 0 0 0-3-3.87"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M16 3.13a4 4 0 0 1 0 7.75"
+ }));
+});
+Users.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Users.displayName = 'Users';
+
+var VideoOff = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M16 16v1a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2h2m5.66 0H14a2 2 0 0 1 2 2v3.34l1 1L23 7v10"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "1",
+ y1: "1",
+ x2: "23",
+ y2: "23"
+ }));
+});
+VideoOff.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+VideoOff.displayName = 'VideoOff';
+
+var Video = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Polygon, {
+ points: "23 7 16 12 23 17 23 7"
+ }), /*#__PURE__*/React__default.createElement(Svg.Rect, {
+ x: "1",
+ y: "5",
+ width: "15",
+ height: "14",
+ rx: "2",
+ ry: "2"
+ }));
+});
+Video.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Video.displayName = 'Video';
+
+var Voicemail = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Circle, {
+ cx: "5.5",
+ cy: "11.5",
+ r: "4.5"
+ }), /*#__PURE__*/React__default.createElement(Svg.Circle, {
+ cx: "18.5",
+ cy: "11.5",
+ r: "4.5"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "5.5",
+ y1: "16",
+ x2: "18.5",
+ y2: "16"
+ }));
+});
+Voicemail.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Voicemail.displayName = 'Voicemail';
+
+var Volume1 = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Polygon, {
+ points: "11 5 6 9 2 9 2 15 6 15 11 19 11 5"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M15.54 8.46a5 5 0 0 1 0 7.07"
+ }));
+});
+Volume1.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Volume1.displayName = 'Volume1';
+
+var Volume2 = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Polygon, {
+ points: "11 5 6 9 2 9 2 15 6 15 11 19 11 5"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M19.07 4.93a10 10 0 0 1 0 14.14M15.54 8.46a5 5 0 0 1 0 7.07"
+ }));
+});
+Volume2.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Volume2.displayName = 'Volume2';
+
+var VolumeX = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Polygon, {
+ points: "11 5 6 9 2 9 2 15 6 15 11 19 11 5"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "23",
+ y1: "9",
+ x2: "17",
+ y2: "15"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "17",
+ y1: "9",
+ x2: "23",
+ y2: "15"
+ }));
+});
+VolumeX.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+VolumeX.displayName = 'VolumeX';
+
+var Volume = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Polygon, {
+ points: "11 5 6 9 2 9 2 15 6 15 11 19 11 5"
+ }));
+});
+Volume.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Volume.displayName = 'Volume';
+
+var Watch = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Circle, {
+ cx: "12",
+ cy: "12",
+ r: "7"
+ }), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "12 9 12 12 13.5 13.5"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M16.51 17.35l-.35 3.83a2 2 0 0 1-2 1.82H9.83a2 2 0 0 1-2-1.82l-.35-3.83m.01-10.7l.35-3.83A2 2 0 0 1 9.83 1h4.35a2 2 0 0 1 2 1.82l.35 3.83"
+ }));
+});
+Watch.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Watch.displayName = 'Watch';
+
+var WifiOff = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "1",
+ y1: "1",
+ x2: "23",
+ y2: "23"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M16.72 11.06A10.94 10.94 0 0 1 19 12.55"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M5 12.55a10.94 10.94 0 0 1 5.17-2.39"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M10.71 5.05A16 16 0 0 1 22.58 9"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M1.42 9a15.91 15.91 0 0 1 4.7-2.88"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M8.53 16.11a6 6 0 0 1 6.95 0"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "12",
+ y1: "20",
+ x2: "12.01",
+ y2: "20"
+ }));
+});
+WifiOff.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+WifiOff.displayName = 'WifiOff';
+
+var Wifi = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M5 12.55a11 11 0 0 1 14.08 0"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M1.42 9a16 16 0 0 1 21.16 0"
+ }), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M8.53 16.11a6 6 0 0 1 6.95 0"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "12",
+ y1: "20",
+ x2: "12.01",
+ y2: "20"
+ }));
+});
+Wifi.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Wifi.displayName = 'Wifi';
+
+var Wind = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M9.59 4.59A2 2 0 1 1 11 8H2m10.59 11.41A2 2 0 1 0 14 16H2m15.73-8.27A2.5 2.5 0 1 1 19.5 12H2"
+ }));
+});
+Wind.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Wind.displayName = 'Wind';
+
+var XCircle = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Circle, {
+ cx: "12",
+ cy: "12",
+ r: "10"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "15",
+ y1: "9",
+ x2: "9",
+ y2: "15"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "9",
+ y1: "9",
+ x2: "15",
+ y2: "15"
+ }));
+});
+XCircle.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+XCircle.displayName = 'XCircle';
+
+var XOctagon = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Polygon, {
+ points: "7.86 2 16.14 2 22 7.86 22 16.14 16.14 22 7.86 22 2 16.14 2 7.86 7.86 2"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "15",
+ y1: "9",
+ x2: "9",
+ y2: "15"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "9",
+ y1: "9",
+ x2: "15",
+ y2: "15"
+ }));
+});
+XOctagon.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+XOctagon.displayName = 'XOctagon';
+
+var XSquare = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Rect, {
+ x: "3",
+ y: "3",
+ width: "18",
+ height: "18",
+ rx: "2",
+ ry: "2"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "9",
+ y1: "9",
+ x2: "15",
+ y2: "15"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "15",
+ y1: "9",
+ x2: "9",
+ y2: "15"
+ }));
+});
+XSquare.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+XSquare.displayName = 'XSquare';
+
+var X = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "18",
+ y1: "6",
+ x2: "6",
+ y2: "18"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "6",
+ y1: "6",
+ x2: "18",
+ y2: "18"
+ }));
+});
+X.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+X.displayName = 'X';
+
+var Youtube = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Path, {
+ d: "M22.54 6.42a2.78 2.78 0 0 0-1.94-2C18.88 4 12 4 12 4s-6.88 0-8.6.46a2.78 2.78 0 0 0-1.94 2A29 29 0 0 0 1 11.75a29 29 0 0 0 .46 5.33A2.78 2.78 0 0 0 3.4 19c1.72.46 8.6.46 8.6.46s6.88 0 8.6-.46a2.78 2.78 0 0 0 1.94-2 29 29 0 0 0 .46-5.25 29 29 0 0 0-.46-5.33z"
+ }), /*#__PURE__*/React__default.createElement(Svg.Polygon, {
+ points: "9.75 15.02 15.5 11.75 9.75 8.48 9.75 15.02"
+ }));
+});
+Youtube.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Youtube.displayName = 'Youtube';
+
+var ZapOff = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "12.41 6.75 13 2 10.57 4.92"
+ }), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "18.57 12.91 21 10 15.66 10"
+ }), /*#__PURE__*/React__default.createElement(Svg.Polyline, {
+ points: "8 8 3 14 12 14 11 22 16 16"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "1",
+ y1: "1",
+ x2: "23",
+ y2: "23"
+ }));
+});
+ZapOff.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+ZapOff.displayName = 'ZapOff';
+
+var Zap = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Polygon, {
+ points: "13 2 3 14 12 14 11 22 21 10 12 10 13 2"
+ }));
+});
+Zap.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Zap.displayName = 'Zap';
+
+var ZoomIn = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Circle, {
+ cx: "11",
+ cy: "11",
+ r: "8"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "21",
+ y1: "21",
+ x2: "16.65",
+ y2: "16.65"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "11",
+ y1: "8",
+ x2: "11",
+ y2: "14"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "8",
+ y1: "11",
+ x2: "14",
+ y2: "11"
+ }));
+});
+ZoomIn.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+ZoomIn.displayName = 'ZoomIn';
+
+var ZoomOut = React.forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React__default.createElement(Svg__default, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React__default.createElement(Svg.Circle, {
+ cx: "11",
+ cy: "11",
+ r: "8"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "21",
+ y1: "21",
+ x2: "16.65",
+ y2: "16.65"
+ }), /*#__PURE__*/React__default.createElement(Svg.Line, {
+ x1: "8",
+ y1: "11",
+ x2: "14",
+ y2: "11"
+ }));
+});
+ZoomOut.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+ZoomOut.displayName = 'ZoomOut';
+
+exports.Activity = Activity;
+exports.Airplay = Airplay;
+exports.AlertCircle = AlertCircle;
+exports.AlertOctagon = AlertOctagon;
+exports.AlertTriangle = AlertTriangle;
+exports.AlignCenter = AlignCenter;
+exports.AlignJustify = AlignJustify;
+exports.AlignLeft = AlignLeft;
+exports.AlignRight = AlignRight;
+exports.Anchor = Anchor;
+exports.Aperture = Aperture;
+exports.Archive = Archive;
+exports.ArrowDown = ArrowDown;
+exports.ArrowDownCircle = ArrowDownCircle;
+exports.ArrowDownLeft = ArrowDownLeft;
+exports.ArrowDownRight = ArrowDownRight;
+exports.ArrowLeft = ArrowLeft;
+exports.ArrowLeftCircle = ArrowLeftCircle;
+exports.ArrowRight = ArrowRight;
+exports.ArrowRightCircle = ArrowRightCircle;
+exports.ArrowUp = ArrowUp;
+exports.ArrowUpCircle = ArrowUpCircle;
+exports.ArrowUpLeft = ArrowUpLeft;
+exports.ArrowUpRight = ArrowUpRight;
+exports.AtSign = AtSign;
+exports.Award = Award;
+exports.BarChart = BarChart;
+exports.BarChart2 = BarChart2;
+exports.Battery = Battery;
+exports.BatteryCharging = BatteryCharging;
+exports.Bell = Bell;
+exports.BellOff = BellOff;
+exports.Bluetooth = Bluetooth;
+exports.Bold = Bold;
+exports.Book = Book;
+exports.BookOpen = BookOpen;
+exports.Bookmark = Bookmark;
+exports.Box = Box;
+exports.Briefcase = Briefcase;
+exports.Calendar = Calendar;
+exports.Camera = Camera;
+exports.CameraOff = CameraOff;
+exports.Cast = Cast;
+exports.Check = Check;
+exports.CheckCircle = CheckCircle;
+exports.CheckSquare = CheckSquare;
+exports.ChevronDown = ChevronDown;
+exports.ChevronLeft = ChevronLeft;
+exports.ChevronRight = ChevronRight;
+exports.ChevronUp = ChevronUp;
+exports.ChevronsDown = ChevronsDown;
+exports.ChevronsLeft = ChevronsLeft;
+exports.ChevronsRight = ChevronsRight;
+exports.ChevronsUp = ChevronsUp;
+exports.Chrome = Chrome;
+exports.Circle = Circle;
+exports.Clipboard = Clipboard;
+exports.Clock = Clock;
+exports.Cloud = Cloud;
+exports.CloudDrizzle = CloudDrizzle;
+exports.CloudLightning = CloudLightning;
+exports.CloudOff = CloudOff;
+exports.CloudRain = CloudRain;
+exports.CloudSnow = CloudSnow;
+exports.Code = Code;
+exports.Codepen = Codepen;
+exports.Codesandbox = Codesandbox;
+exports.Coffee = Coffee;
+exports.Columns = Columns;
+exports.Command = Command;
+exports.Compass = Compass;
+exports.Copy = Copy;
+exports.CornerDownLeft = CornerDownLeft;
+exports.CornerDownRight = CornerDownRight;
+exports.CornerLeftDown = CornerLeftDown;
+exports.CornerLeftUp = CornerLeftUp;
+exports.CornerRightDown = CornerRightDown;
+exports.CornerRightUp = CornerRightUp;
+exports.CornerUpLeft = CornerUpLeft;
+exports.CornerUpRight = CornerUpRight;
+exports.Cpu = Cpu;
+exports.CreditCard = CreditCard;
+exports.Crop = Crop;
+exports.Crosshair = Crosshair;
+exports.Database = Database;
+exports.Delete = Delete;
+exports.Disc = Disc;
+exports.Divide = Divide;
+exports.DivideCircle = DivideCircle;
+exports.DivideSquare = DivideSquare;
+exports.DollarSign = DollarSign;
+exports.Download = Download;
+exports.DownloadCloud = DownloadCloud;
+exports.Dribbble = Dribbble;
+exports.Droplet = Droplet;
+exports.Edit = Edit;
+exports.Edit2 = Edit2;
+exports.Edit3 = Edit3;
+exports.ExternalLink = ExternalLink;
+exports.Eye = Eye;
+exports.EyeOff = EyeOff;
+exports.Facebook = Facebook;
+exports.FastForward = FastForward;
+exports.Feather = Feather;
+exports.Figma = Figma;
+exports.File = File;
+exports.FileMinus = FileMinus;
+exports.FilePlus = FilePlus;
+exports.FileText = FileText;
+exports.Film = Film;
+exports.Filter = Filter;
+exports.Flag = Flag;
+exports.Folder = Folder;
+exports.FolderMinus = FolderMinus;
+exports.FolderPlus = FolderPlus;
+exports.Framer = Framer;
+exports.Frown = Frown;
+exports.Gift = Gift;
+exports.GitBranch = GitBranch;
+exports.GitCommit = GitCommit;
+exports.GitHub = GitHub;
+exports.GitMerge = GitMerge;
+exports.GitPullRequest = GitPullRequest;
+exports.Gitlab = Gitlab;
+exports.Globe = Globe;
+exports.Grid = Grid;
+exports.HardDrive = HardDrive;
+exports.Hash = Hash;
+exports.Headphones = Headphones;
+exports.Heart = Heart;
+exports.HelpCircle = HelpCircle;
+exports.Hexagon = Hexagon;
+exports.Home = Home;
+exports.Image = Image;
+exports.Inbox = Inbox;
+exports.Info = Info;
+exports.Instagram = Instagram;
+exports.Italic = Italic;
+exports.Key = Key;
+exports.Layers = Layers;
+exports.Layout = Layout;
+exports.LifeBuoy = LifeBuoy;
+exports.Link = Link;
+exports.Link2 = Link2;
+exports.Linkedin = Linkedin;
+exports.List = List;
+exports.Loader = Loader;
+exports.Lock = Lock;
+exports.LogIn = LogIn;
+exports.LogOut = LogOut;
+exports.Mail = Mail;
+exports.Map = Map;
+exports.MapPin = MapPin;
+exports.Maximize = Maximize;
+exports.Maximize2 = Maximize2;
+exports.Meh = Meh;
+exports.Menu = Menu;
+exports.MessageCircle = MessageCircle;
+exports.MessageSquare = MessageSquare;
+exports.Mic = Mic;
+exports.MicOff = MicOff;
+exports.Minimize = Minimize;
+exports.Minimize2 = Minimize2;
+exports.Minus = Minus;
+exports.MinusCircle = MinusCircle;
+exports.MinusSquare = MinusSquare;
+exports.Monitor = Monitor;
+exports.Moon = Moon;
+exports.MoreHorizontal = MoreHorizontal;
+exports.MoreVertical = MoreVertical;
+exports.MousePointer = MousePointer;
+exports.Move = Move;
+exports.Music = Music;
+exports.Navigation = Navigation;
+exports.Navigation2 = Navigation2;
+exports.Octagon = Octagon;
+exports.Package = Package;
+exports.Paperclip = Paperclip;
+exports.Pause = Pause;
+exports.PauseCircle = PauseCircle;
+exports.PenTool = PenTool;
+exports.Percent = Percent;
+exports.Phone = Phone;
+exports.PhoneCall = PhoneCall;
+exports.PhoneForwarded = PhoneForwarded;
+exports.PhoneIncoming = PhoneIncoming;
+exports.PhoneMissed = PhoneMissed;
+exports.PhoneOff = PhoneOff;
+exports.PhoneOutgoing = PhoneOutgoing;
+exports.PieChart = PieChart;
+exports.Play = Play;
+exports.PlayCircle = PlayCircle;
+exports.Plus = Plus;
+exports.PlusCircle = PlusCircle;
+exports.PlusSquare = PlusSquare;
+exports.Pocket = Pocket;
+exports.Power = Power;
+exports.Printer = Printer;
+exports.Radio = Radio;
+exports.RefreshCcw = RefreshCcw;
+exports.RefreshCw = RefreshCw;
+exports.Repeat = Repeat;
+exports.Rewind = Rewind;
+exports.RotateCcw = RotateCcw;
+exports.RotateCw = RotateCw;
+exports.Rss = Rss;
+exports.Save = Save;
+exports.Scissors = Scissors;
+exports.Search = Search;
+exports.Send = Send;
+exports.Server = Server;
+exports.Settings = Settings;
+exports.Share = Share;
+exports.Share2 = Share2;
+exports.Shield = Shield;
+exports.ShieldOff = ShieldOff;
+exports.ShoppingBag = ShoppingBag;
+exports.ShoppingCart = ShoppingCart;
+exports.Shuffle = Shuffle;
+exports.Sidebar = Sidebar;
+exports.SkipBack = SkipBack;
+exports.SkipForward = SkipForward;
+exports.Slack = Slack;
+exports.Slash = Slash;
+exports.Sliders = Sliders;
+exports.Smartphone = Smartphone;
+exports.Smile = Smile;
+exports.Speaker = Speaker;
+exports.Square = Square;
+exports.Star = Star;
+exports.StopCircle = StopCircle;
+exports.Sun = Sun;
+exports.Sunrise = Sunrise;
+exports.Sunset = Sunset;
+exports.Tablet = Tablet;
+exports.Tag = Tag;
+exports.Target = Target;
+exports.Terminal = Terminal;
+exports.Thermometer = Thermometer;
+exports.ThumbsDown = ThumbsDown;
+exports.ThumbsUp = ThumbsUp;
+exports.ToggleLeft = ToggleLeft;
+exports.ToggleRight = ToggleRight;
+exports.Tool = Tool;
+exports.Trash = Trash;
+exports.Trash2 = Trash2;
+exports.Trello = Trello;
+exports.TrendingDown = TrendingDown;
+exports.TrendingUp = TrendingUp;
+exports.Triangle = Triangle;
+exports.Truck = Truck;
+exports.Tv = Tv;
+exports.Twitch = Twitch;
+exports.Twitter = Twitter;
+exports.Type = Type;
+exports.Umbrella = Umbrella;
+exports.Underline = Underline;
+exports.Unlock = Unlock;
+exports.Upload = Upload;
+exports.UploadCloud = UploadCloud;
+exports.User = User;
+exports.UserCheck = UserCheck;
+exports.UserMinus = UserMinus;
+exports.UserPlus = UserPlus;
+exports.UserX = UserX;
+exports.Users = Users;
+exports.Video = Video;
+exports.VideoOff = VideoOff;
+exports.Voicemail = Voicemail;
+exports.Volume = Volume;
+exports.Volume1 = Volume1;
+exports.Volume2 = Volume2;
+exports.VolumeX = VolumeX;
+exports.Watch = Watch;
+exports.Wifi = Wifi;
+exports.WifiOff = WifiOff;
+exports.Wind = Wind;
+exports.X = X;
+exports.XCircle = XCircle;
+exports.XOctagon = XOctagon;
+exports.XSquare = XSquare;
+exports.Youtube = Youtube;
+exports.Zap = Zap;
+exports.ZapOff = ZapOff;
+exports.ZoomIn = ZoomIn;
+exports.ZoomOut = ZoomOut;
diff --git a/dist/icons/activity.js b/dist/icons/activity.js
new file mode 100644
index 00000000..ec6f01d8
--- /dev/null
+++ b/dist/icons/activity.js
@@ -0,0 +1,37 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Polyline } from 'svgs';
+var Activity = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Polyline, {
+ points: "22 12 18 12 15 21 9 3 6 12 2 12"
+ }));
+});
+Activity.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Activity.displayName = 'Activity';
+export default Activity;
\ No newline at end of file
diff --git a/dist/icons/airplay.js b/dist/icons/airplay.js
new file mode 100644
index 00000000..3f2a61c0
--- /dev/null
+++ b/dist/icons/airplay.js
@@ -0,0 +1,39 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Path, Polygon } from 'svgs';
+var Airplay = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M5 17H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-1"
+ }), /*#__PURE__*/React.createElement(Polygon, {
+ points: "12 15 17 21 7 21 12 15"
+ }));
+});
+Airplay.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Airplay.displayName = 'Airplay';
+export default Airplay;
\ No newline at end of file
diff --git a/dist/icons/alert-circle.js b/dist/icons/alert-circle.js
new file mode 100644
index 00000000..db406196
--- /dev/null
+++ b/dist/icons/alert-circle.js
@@ -0,0 +1,49 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Circle, Line } from 'svgs';
+var AlertCircle = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Circle, {
+ cx: "12",
+ cy: "12",
+ r: "10"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "12",
+ y1: "8",
+ x2: "12",
+ y2: "12"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "12",
+ y1: "16",
+ x2: "12.01",
+ y2: "16"
+ }));
+});
+AlertCircle.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+AlertCircle.displayName = 'AlertCircle';
+export default AlertCircle;
\ No newline at end of file
diff --git a/dist/icons/alert-octagon.js b/dist/icons/alert-octagon.js
new file mode 100644
index 00000000..636a0fba
--- /dev/null
+++ b/dist/icons/alert-octagon.js
@@ -0,0 +1,47 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line, Polygon } from 'svgs';
+var AlertOctagon = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Polygon, {
+ points: "7.86 2 16.14 2 22 7.86 22 16.14 16.14 22 7.86 22 2 16.14 2 7.86 7.86 2"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "12",
+ y1: "8",
+ x2: "12",
+ y2: "12"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "12",
+ y1: "16",
+ x2: "12.01",
+ y2: "16"
+ }));
+});
+AlertOctagon.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+AlertOctagon.displayName = 'AlertOctagon';
+export default AlertOctagon;
\ No newline at end of file
diff --git a/dist/icons/alert-triangle.js b/dist/icons/alert-triangle.js
new file mode 100644
index 00000000..cb266bb9
--- /dev/null
+++ b/dist/icons/alert-triangle.js
@@ -0,0 +1,47 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line, Path } from 'svgs';
+var AlertTriangle = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "12",
+ y1: "9",
+ x2: "12",
+ y2: "13"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "12",
+ y1: "17",
+ x2: "12.01",
+ y2: "17"
+ }));
+});
+AlertTriangle.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+AlertTriangle.displayName = 'AlertTriangle';
+export default AlertTriangle;
\ No newline at end of file
diff --git a/dist/icons/align-center.js b/dist/icons/align-center.js
new file mode 100644
index 00000000..16209fcf
--- /dev/null
+++ b/dist/icons/align-center.js
@@ -0,0 +1,55 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line } from 'svgs';
+var AlignCenter = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Line, {
+ x1: "18",
+ y1: "10",
+ x2: "6",
+ y2: "10"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "21",
+ y1: "6",
+ x2: "3",
+ y2: "6"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "21",
+ y1: "14",
+ x2: "3",
+ y2: "14"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "18",
+ y1: "18",
+ x2: "6",
+ y2: "18"
+ }));
+});
+AlignCenter.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+AlignCenter.displayName = 'AlignCenter';
+export default AlignCenter;
\ No newline at end of file
diff --git a/dist/icons/align-justify.js b/dist/icons/align-justify.js
new file mode 100644
index 00000000..a6590ab3
--- /dev/null
+++ b/dist/icons/align-justify.js
@@ -0,0 +1,55 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line } from 'svgs';
+var AlignJustify = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Line, {
+ x1: "21",
+ y1: "10",
+ x2: "3",
+ y2: "10"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "21",
+ y1: "6",
+ x2: "3",
+ y2: "6"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "21",
+ y1: "14",
+ x2: "3",
+ y2: "14"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "21",
+ y1: "18",
+ x2: "3",
+ y2: "18"
+ }));
+});
+AlignJustify.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+AlignJustify.displayName = 'AlignJustify';
+export default AlignJustify;
\ No newline at end of file
diff --git a/dist/icons/align-left.js b/dist/icons/align-left.js
new file mode 100644
index 00000000..2b4aa8d7
--- /dev/null
+++ b/dist/icons/align-left.js
@@ -0,0 +1,55 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line } from 'svgs';
+var AlignLeft = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Line, {
+ x1: "17",
+ y1: "10",
+ x2: "3",
+ y2: "10"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "21",
+ y1: "6",
+ x2: "3",
+ y2: "6"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "21",
+ y1: "14",
+ x2: "3",
+ y2: "14"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "17",
+ y1: "18",
+ x2: "3",
+ y2: "18"
+ }));
+});
+AlignLeft.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+AlignLeft.displayName = 'AlignLeft';
+export default AlignLeft;
\ No newline at end of file
diff --git a/dist/icons/align-right.js b/dist/icons/align-right.js
new file mode 100644
index 00000000..f9eeb0c3
--- /dev/null
+++ b/dist/icons/align-right.js
@@ -0,0 +1,55 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line } from 'svgs';
+var AlignRight = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Line, {
+ x1: "21",
+ y1: "10",
+ x2: "7",
+ y2: "10"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "21",
+ y1: "6",
+ x2: "3",
+ y2: "6"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "21",
+ y1: "14",
+ x2: "3",
+ y2: "14"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "21",
+ y1: "18",
+ x2: "7",
+ y2: "18"
+ }));
+});
+AlignRight.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+AlignRight.displayName = 'AlignRight';
+export default AlignRight;
\ No newline at end of file
diff --git a/dist/icons/anchor.js b/dist/icons/anchor.js
new file mode 100644
index 00000000..a9185010
--- /dev/null
+++ b/dist/icons/anchor.js
@@ -0,0 +1,46 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Circle, Line, Path } from 'svgs';
+var Anchor = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Circle, {
+ cx: "12",
+ cy: "5",
+ r: "3"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "12",
+ y1: "22",
+ x2: "12",
+ y2: "8"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M5 12H2a10 10 0 0 0 20 0h-3"
+ }));
+});
+Anchor.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Anchor.displayName = 'Anchor';
+export default Anchor;
\ No newline at end of file
diff --git a/dist/icons/aperture.js b/dist/icons/aperture.js
new file mode 100644
index 00000000..ac511ee0
--- /dev/null
+++ b/dist/icons/aperture.js
@@ -0,0 +1,69 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Circle, Line } from 'svgs';
+var Aperture = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Circle, {
+ cx: "12",
+ cy: "12",
+ r: "10"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "14.31",
+ y1: "8",
+ x2: "20.05",
+ y2: "17.94"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "9.69",
+ y1: "8",
+ x2: "21.17",
+ y2: "8"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "7.38",
+ y1: "12",
+ x2: "13.12",
+ y2: "2.06"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "9.69",
+ y1: "16",
+ x2: "3.95",
+ y2: "6.06"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "14.31",
+ y1: "16",
+ x2: "2.83",
+ y2: "16"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "16.62",
+ y1: "12",
+ x2: "10.88",
+ y2: "21.94"
+ }));
+});
+Aperture.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Aperture.displayName = 'Aperture';
+export default Aperture;
\ No newline at end of file
diff --git a/dist/icons/archive.js b/dist/icons/archive.js
new file mode 100644
index 00000000..776fae42
--- /dev/null
+++ b/dist/icons/archive.js
@@ -0,0 +1,47 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line, Polyline, Rect } from 'svgs';
+var Archive = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Polyline, {
+ points: "21 8 21 21 3 21 3 8"
+ }), /*#__PURE__*/React.createElement(Rect, {
+ x: "1",
+ y: "3",
+ width: "22",
+ height: "5"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "10",
+ y1: "12",
+ x2: "14",
+ y2: "12"
+ }));
+});
+Archive.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Archive.displayName = 'Archive';
+export default Archive;
\ No newline at end of file
diff --git a/dist/icons/arrow-down-circle.js b/dist/icons/arrow-down-circle.js
new file mode 100644
index 00000000..ee182cfd
--- /dev/null
+++ b/dist/icons/arrow-down-circle.js
@@ -0,0 +1,46 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Circle, Line, Polyline } from 'svgs';
+var ArrowDownCircle = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Circle, {
+ cx: "12",
+ cy: "12",
+ r: "10"
+ }), /*#__PURE__*/React.createElement(Polyline, {
+ points: "8 12 12 16 16 12"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "12",
+ y1: "8",
+ x2: "12",
+ y2: "16"
+ }));
+});
+ArrowDownCircle.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+ArrowDownCircle.displayName = 'ArrowDownCircle';
+export default ArrowDownCircle;
\ No newline at end of file
diff --git a/dist/icons/arrow-down-left.js b/dist/icons/arrow-down-left.js
new file mode 100644
index 00000000..d8c9a1a5
--- /dev/null
+++ b/dist/icons/arrow-down-left.js
@@ -0,0 +1,42 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line, Polyline } from 'svgs';
+var ArrowDownLeft = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Line, {
+ x1: "17",
+ y1: "7",
+ x2: "7",
+ y2: "17"
+ }), /*#__PURE__*/React.createElement(Polyline, {
+ points: "17 17 7 17 7 7"
+ }));
+});
+ArrowDownLeft.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+ArrowDownLeft.displayName = 'ArrowDownLeft';
+export default ArrowDownLeft;
\ No newline at end of file
diff --git a/dist/icons/arrow-down-right.js b/dist/icons/arrow-down-right.js
new file mode 100644
index 00000000..9f22dd0e
--- /dev/null
+++ b/dist/icons/arrow-down-right.js
@@ -0,0 +1,42 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line, Polyline } from 'svgs';
+var ArrowDownRight = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Line, {
+ x1: "7",
+ y1: "7",
+ x2: "17",
+ y2: "17"
+ }), /*#__PURE__*/React.createElement(Polyline, {
+ points: "17 7 17 17 7 17"
+ }));
+});
+ArrowDownRight.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+ArrowDownRight.displayName = 'ArrowDownRight';
+export default ArrowDownRight;
\ No newline at end of file
diff --git a/dist/icons/arrow-down.js b/dist/icons/arrow-down.js
new file mode 100644
index 00000000..bc1ceec4
--- /dev/null
+++ b/dist/icons/arrow-down.js
@@ -0,0 +1,42 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line, Polyline } from 'svgs';
+var ArrowDown = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Line, {
+ x1: "12",
+ y1: "5",
+ x2: "12",
+ y2: "19"
+ }), /*#__PURE__*/React.createElement(Polyline, {
+ points: "19 12 12 19 5 12"
+ }));
+});
+ArrowDown.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+ArrowDown.displayName = 'ArrowDown';
+export default ArrowDown;
\ No newline at end of file
diff --git a/dist/icons/arrow-left-circle.js b/dist/icons/arrow-left-circle.js
new file mode 100644
index 00000000..8edc1790
--- /dev/null
+++ b/dist/icons/arrow-left-circle.js
@@ -0,0 +1,46 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Circle, Line, Polyline } from 'svgs';
+var ArrowLeftCircle = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Circle, {
+ cx: "12",
+ cy: "12",
+ r: "10"
+ }), /*#__PURE__*/React.createElement(Polyline, {
+ points: "12 8 8 12 12 16"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "16",
+ y1: "12",
+ x2: "8",
+ y2: "12"
+ }));
+});
+ArrowLeftCircle.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+ArrowLeftCircle.displayName = 'ArrowLeftCircle';
+export default ArrowLeftCircle;
\ No newline at end of file
diff --git a/dist/icons/arrow-left.js b/dist/icons/arrow-left.js
new file mode 100644
index 00000000..2932e87e
--- /dev/null
+++ b/dist/icons/arrow-left.js
@@ -0,0 +1,42 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line, Polyline } from 'svgs';
+var ArrowLeft = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Line, {
+ x1: "19",
+ y1: "12",
+ x2: "5",
+ y2: "12"
+ }), /*#__PURE__*/React.createElement(Polyline, {
+ points: "12 19 5 12 12 5"
+ }));
+});
+ArrowLeft.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+ArrowLeft.displayName = 'ArrowLeft';
+export default ArrowLeft;
\ No newline at end of file
diff --git a/dist/icons/arrow-right-circle.js b/dist/icons/arrow-right-circle.js
new file mode 100644
index 00000000..f7ce5643
--- /dev/null
+++ b/dist/icons/arrow-right-circle.js
@@ -0,0 +1,46 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Circle, Line, Polyline } from 'svgs';
+var ArrowRightCircle = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Circle, {
+ cx: "12",
+ cy: "12",
+ r: "10"
+ }), /*#__PURE__*/React.createElement(Polyline, {
+ points: "12 16 16 12 12 8"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "8",
+ y1: "12",
+ x2: "16",
+ y2: "12"
+ }));
+});
+ArrowRightCircle.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+ArrowRightCircle.displayName = 'ArrowRightCircle';
+export default ArrowRightCircle;
\ No newline at end of file
diff --git a/dist/icons/arrow-right.js b/dist/icons/arrow-right.js
new file mode 100644
index 00000000..c4e59b9d
--- /dev/null
+++ b/dist/icons/arrow-right.js
@@ -0,0 +1,42 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line, Polyline } from 'svgs';
+var ArrowRight = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Line, {
+ x1: "5",
+ y1: "12",
+ x2: "19",
+ y2: "12"
+ }), /*#__PURE__*/React.createElement(Polyline, {
+ points: "12 5 19 12 12 19"
+ }));
+});
+ArrowRight.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+ArrowRight.displayName = 'ArrowRight';
+export default ArrowRight;
\ No newline at end of file
diff --git a/dist/icons/arrow-up-circle.js b/dist/icons/arrow-up-circle.js
new file mode 100644
index 00000000..fa6c2673
--- /dev/null
+++ b/dist/icons/arrow-up-circle.js
@@ -0,0 +1,46 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Circle, Line, Polyline } from 'svgs';
+var ArrowUpCircle = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Circle, {
+ cx: "12",
+ cy: "12",
+ r: "10"
+ }), /*#__PURE__*/React.createElement(Polyline, {
+ points: "16 12 12 8 8 12"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "12",
+ y1: "16",
+ x2: "12",
+ y2: "8"
+ }));
+});
+ArrowUpCircle.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+ArrowUpCircle.displayName = 'ArrowUpCircle';
+export default ArrowUpCircle;
\ No newline at end of file
diff --git a/dist/icons/arrow-up-left.js b/dist/icons/arrow-up-left.js
new file mode 100644
index 00000000..5000cade
--- /dev/null
+++ b/dist/icons/arrow-up-left.js
@@ -0,0 +1,42 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line, Polyline } from 'svgs';
+var ArrowUpLeft = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Line, {
+ x1: "17",
+ y1: "17",
+ x2: "7",
+ y2: "7"
+ }), /*#__PURE__*/React.createElement(Polyline, {
+ points: "7 17 7 7 17 7"
+ }));
+});
+ArrowUpLeft.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+ArrowUpLeft.displayName = 'ArrowUpLeft';
+export default ArrowUpLeft;
\ No newline at end of file
diff --git a/dist/icons/arrow-up-right.js b/dist/icons/arrow-up-right.js
new file mode 100644
index 00000000..505a7ec7
--- /dev/null
+++ b/dist/icons/arrow-up-right.js
@@ -0,0 +1,42 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line, Polyline } from 'svgs';
+var ArrowUpRight = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Line, {
+ x1: "7",
+ y1: "17",
+ x2: "17",
+ y2: "7"
+ }), /*#__PURE__*/React.createElement(Polyline, {
+ points: "7 7 17 7 17 17"
+ }));
+});
+ArrowUpRight.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+ArrowUpRight.displayName = 'ArrowUpRight';
+export default ArrowUpRight;
\ No newline at end of file
diff --git a/dist/icons/arrow-up.js b/dist/icons/arrow-up.js
new file mode 100644
index 00000000..2a41c306
--- /dev/null
+++ b/dist/icons/arrow-up.js
@@ -0,0 +1,42 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line, Polyline } from 'svgs';
+var ArrowUp = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Line, {
+ x1: "12",
+ y1: "19",
+ x2: "12",
+ y2: "5"
+ }), /*#__PURE__*/React.createElement(Polyline, {
+ points: "5 12 12 5 19 12"
+ }));
+});
+ArrowUp.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+ArrowUp.displayName = 'ArrowUp';
+export default ArrowUp;
\ No newline at end of file
diff --git a/dist/icons/at-sign.js b/dist/icons/at-sign.js
new file mode 100644
index 00000000..0b5b1061
--- /dev/null
+++ b/dist/icons/at-sign.js
@@ -0,0 +1,41 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Circle, Path } from 'svgs';
+var AtSign = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Circle, {
+ cx: "12",
+ cy: "12",
+ r: "4"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M16 8v5a3 3 0 0 0 6 0v-1a10 10 0 1 0-3.92 7.94"
+ }));
+});
+AtSign.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+AtSign.displayName = 'AtSign';
+export default AtSign;
\ No newline at end of file
diff --git a/dist/icons/award.js b/dist/icons/award.js
new file mode 100644
index 00000000..b6339822
--- /dev/null
+++ b/dist/icons/award.js
@@ -0,0 +1,41 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Circle, Polyline } from 'svgs';
+var Award = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Circle, {
+ cx: "12",
+ cy: "8",
+ r: "7"
+ }), /*#__PURE__*/React.createElement(Polyline, {
+ points: "8.21 13.89 7 23 12 20 17 23 15.79 13.88"
+ }));
+});
+Award.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Award.displayName = 'Award';
+export default Award;
\ No newline at end of file
diff --git a/dist/icons/bar-chart-2.js b/dist/icons/bar-chart-2.js
new file mode 100644
index 00000000..6ac7b9df
--- /dev/null
+++ b/dist/icons/bar-chart-2.js
@@ -0,0 +1,50 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line } from 'svgs';
+var BarChart2 = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Line, {
+ x1: "18",
+ y1: "20",
+ x2: "18",
+ y2: "10"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "12",
+ y1: "20",
+ x2: "12",
+ y2: "4"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "6",
+ y1: "20",
+ x2: "6",
+ y2: "14"
+ }));
+});
+BarChart2.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+BarChart2.displayName = 'BarChart2';
+export default BarChart2;
\ No newline at end of file
diff --git a/dist/icons/bar-chart.js b/dist/icons/bar-chart.js
new file mode 100644
index 00000000..6136ddbb
--- /dev/null
+++ b/dist/icons/bar-chart.js
@@ -0,0 +1,50 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line } from 'svgs';
+var BarChart = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Line, {
+ x1: "12",
+ y1: "20",
+ x2: "12",
+ y2: "10"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "18",
+ y1: "20",
+ x2: "18",
+ y2: "4"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "6",
+ y1: "20",
+ x2: "6",
+ y2: "16"
+ }));
+});
+BarChart.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+BarChart.displayName = 'BarChart';
+export default BarChart;
\ No newline at end of file
diff --git a/dist/icons/battery-charging.js b/dist/icons/battery-charging.js
new file mode 100644
index 00000000..7948696b
--- /dev/null
+++ b/dist/icons/battery-charging.js
@@ -0,0 +1,44 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line, Path, Polyline } from 'svgs';
+var BatteryCharging = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M5 18H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h3.19M15 6h2a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-3.19"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "23",
+ y1: "13",
+ x2: "23",
+ y2: "11"
+ }), /*#__PURE__*/React.createElement(Polyline, {
+ points: "11 6 7 12 13 12 9 18"
+ }));
+});
+BatteryCharging.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+BatteryCharging.displayName = 'BatteryCharging';
+export default BatteryCharging;
\ No newline at end of file
diff --git a/dist/icons/battery.js b/dist/icons/battery.js
new file mode 100644
index 00000000..073af46b
--- /dev/null
+++ b/dist/icons/battery.js
@@ -0,0 +1,47 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line, Rect } from 'svgs';
+var Battery = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Rect, {
+ x: "1",
+ y: "6",
+ width: "18",
+ height: "12",
+ rx: "2",
+ ry: "2"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "23",
+ y1: "13",
+ x2: "23",
+ y2: "11"
+ }));
+});
+Battery.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Battery.displayName = 'Battery';
+export default Battery;
\ No newline at end of file
diff --git a/dist/icons/bell-off.js b/dist/icons/bell-off.js
new file mode 100644
index 00000000..944ccec3
--- /dev/null
+++ b/dist/icons/bell-off.js
@@ -0,0 +1,48 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line, Path } from 'svgs';
+var BellOff = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M13.73 21a2 2 0 0 1-3.46 0"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M18.63 13A17.89 17.89 0 0 1 18 8"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M6.26 6.26A5.86 5.86 0 0 0 6 8c0 7-3 9-3 9h14"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M18 8a6 6 0 0 0-9.33-5"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "1",
+ y1: "1",
+ x2: "23",
+ y2: "23"
+ }));
+});
+BellOff.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+BellOff.displayName = 'BellOff';
+export default BellOff;
\ No newline at end of file
diff --git a/dist/icons/bell.js b/dist/icons/bell.js
new file mode 100644
index 00000000..fd9efbae
--- /dev/null
+++ b/dist/icons/bell.js
@@ -0,0 +1,39 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Path } from 'svgs';
+var Bell = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M18 8A6 6 0 0 0 6 8c0 7-3 9-3 9h18s-3-2-3-9"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M13.73 21a2 2 0 0 1-3.46 0"
+ }));
+});
+Bell.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Bell.displayName = 'Bell';
+export default Bell;
\ No newline at end of file
diff --git a/dist/icons/bluetooth.js b/dist/icons/bluetooth.js
new file mode 100644
index 00000000..46aec614
--- /dev/null
+++ b/dist/icons/bluetooth.js
@@ -0,0 +1,37 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Polyline } from 'svgs';
+var Bluetooth = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Polyline, {
+ points: "6.5 6.5 17.5 17.5 12 23 12 1 17.5 6.5 6.5 17.5"
+ }));
+});
+Bluetooth.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Bluetooth.displayName = 'Bluetooth';
+export default Bluetooth;
\ No newline at end of file
diff --git a/dist/icons/bold.js b/dist/icons/bold.js
new file mode 100644
index 00000000..f33b4641
--- /dev/null
+++ b/dist/icons/bold.js
@@ -0,0 +1,39 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Path } from 'svgs';
+var Bold = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M6 4h8a4 4 0 0 1 4 4 4 4 0 0 1-4 4H6z"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M6 12h9a4 4 0 0 1 4 4 4 4 0 0 1-4 4H6z"
+ }));
+});
+Bold.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Bold.displayName = 'Bold';
+export default Bold;
\ No newline at end of file
diff --git a/dist/icons/book-open.js b/dist/icons/book-open.js
new file mode 100644
index 00000000..1fe5cb76
--- /dev/null
+++ b/dist/icons/book-open.js
@@ -0,0 +1,39 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Path } from 'svgs';
+var BookOpen = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M2 3h6a4 4 0 0 1 4 4v14a3 3 0 0 0-3-3H2z"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M22 3h-6a4 4 0 0 0-4 4v14a3 3 0 0 1 3-3h7z"
+ }));
+});
+BookOpen.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+BookOpen.displayName = 'BookOpen';
+export default BookOpen;
\ No newline at end of file
diff --git a/dist/icons/book.js b/dist/icons/book.js
new file mode 100644
index 00000000..f9fa5b70
--- /dev/null
+++ b/dist/icons/book.js
@@ -0,0 +1,39 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Path } from 'svgs';
+var Book = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M4 19.5A2.5 2.5 0 0 1 6.5 17H20"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2z"
+ }));
+});
+Book.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Book.displayName = 'Book';
+export default Book;
\ No newline at end of file
diff --git a/dist/icons/bookmark.js b/dist/icons/bookmark.js
new file mode 100644
index 00000000..94a97932
--- /dev/null
+++ b/dist/icons/bookmark.js
@@ -0,0 +1,37 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Path } from 'svgs';
+var Bookmark = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M19 21l-7-5-7 5V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2z"
+ }));
+});
+Bookmark.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Bookmark.displayName = 'Bookmark';
+export default Bookmark;
\ No newline at end of file
diff --git a/dist/icons/box.js b/dist/icons/box.js
new file mode 100644
index 00000000..3c93ddda
--- /dev/null
+++ b/dist/icons/box.js
@@ -0,0 +1,44 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line, Path, Polyline } from 'svgs';
+var Box = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z"
+ }), /*#__PURE__*/React.createElement(Polyline, {
+ points: "3.27 6.96 12 12.01 20.73 6.96"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "12",
+ y1: "22.08",
+ x2: "12",
+ y2: "12"
+ }));
+});
+Box.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Box.displayName = 'Box';
+export default Box;
\ No newline at end of file
diff --git a/dist/icons/briefcase.js b/dist/icons/briefcase.js
new file mode 100644
index 00000000..31eb8172
--- /dev/null
+++ b/dist/icons/briefcase.js
@@ -0,0 +1,44 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Path, Rect } from 'svgs';
+var Briefcase = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Rect, {
+ x: "2",
+ y: "7",
+ width: "20",
+ height: "14",
+ rx: "2",
+ ry: "2"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M16 21V5a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v16"
+ }));
+});
+Briefcase.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Briefcase.displayName = 'Briefcase';
+export default Briefcase;
\ No newline at end of file
diff --git a/dist/icons/calendar.js b/dist/icons/calendar.js
new file mode 100644
index 00000000..edb88ef0
--- /dev/null
+++ b/dist/icons/calendar.js
@@ -0,0 +1,57 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line, Rect } from 'svgs';
+var Calendar = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Rect, {
+ x: "3",
+ y: "4",
+ width: "18",
+ height: "18",
+ rx: "2",
+ ry: "2"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "16",
+ y1: "2",
+ x2: "16",
+ y2: "6"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "8",
+ y1: "2",
+ x2: "8",
+ y2: "6"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "3",
+ y1: "10",
+ x2: "21",
+ y2: "10"
+ }));
+});
+Calendar.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Calendar.displayName = 'Calendar';
+export default Calendar;
\ No newline at end of file
diff --git a/dist/icons/camera-off.js b/dist/icons/camera-off.js
new file mode 100644
index 00000000..624ebffe
--- /dev/null
+++ b/dist/icons/camera-off.js
@@ -0,0 +1,42 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line, Path } from 'svgs';
+var CameraOff = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Line, {
+ x1: "1",
+ y1: "1",
+ x2: "23",
+ y2: "23"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M21 21H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h3m3-3h6l2 3h4a2 2 0 0 1 2 2v9.34m-7.72-2.06a4 4 0 1 1-5.56-5.56"
+ }));
+});
+CameraOff.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+CameraOff.displayName = 'CameraOff';
+export default CameraOff;
\ No newline at end of file
diff --git a/dist/icons/camera.js b/dist/icons/camera.js
new file mode 100644
index 00000000..4ab5b5a1
--- /dev/null
+++ b/dist/icons/camera.js
@@ -0,0 +1,41 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Circle, Path } from 'svgs';
+var Camera = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M23 19a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h4l2-3h6l2 3h4a2 2 0 0 1 2 2z"
+ }), /*#__PURE__*/React.createElement(Circle, {
+ cx: "12",
+ cy: "13",
+ r: "4"
+ }));
+});
+Camera.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Camera.displayName = 'Camera';
+export default Camera;
\ No newline at end of file
diff --git a/dist/icons/cast.js b/dist/icons/cast.js
new file mode 100644
index 00000000..fc0ab6f1
--- /dev/null
+++ b/dist/icons/cast.js
@@ -0,0 +1,42 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line, Path } from 'svgs';
+var Cast = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M2 16.1A5 5 0 0 1 5.9 20M2 12.05A9 9 0 0 1 9.95 20M2 8V6a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2h-6"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "2",
+ y1: "20",
+ x2: "2.01",
+ y2: "20"
+ }));
+});
+Cast.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Cast.displayName = 'Cast';
+export default Cast;
\ No newline at end of file
diff --git a/dist/icons/check-circle.js b/dist/icons/check-circle.js
new file mode 100644
index 00000000..c8b7b12c
--- /dev/null
+++ b/dist/icons/check-circle.js
@@ -0,0 +1,39 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Path, Polyline } from 'svgs';
+var CheckCircle = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M22 11.08V12a10 10 0 1 1-5.93-9.14"
+ }), /*#__PURE__*/React.createElement(Polyline, {
+ points: "22 4 12 14.01 9 11.01"
+ }));
+});
+CheckCircle.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+CheckCircle.displayName = 'CheckCircle';
+export default CheckCircle;
\ No newline at end of file
diff --git a/dist/icons/check-square.js b/dist/icons/check-square.js
new file mode 100644
index 00000000..f33b6f95
--- /dev/null
+++ b/dist/icons/check-square.js
@@ -0,0 +1,39 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Path, Polyline } from 'svgs';
+var CheckSquare = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Polyline, {
+ points: "9 11 12 14 22 4"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M21 12v7a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11"
+ }));
+});
+CheckSquare.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+CheckSquare.displayName = 'CheckSquare';
+export default CheckSquare;
\ No newline at end of file
diff --git a/dist/icons/check.js b/dist/icons/check.js
new file mode 100644
index 00000000..f313683b
--- /dev/null
+++ b/dist/icons/check.js
@@ -0,0 +1,37 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Polyline } from 'svgs';
+var Check = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Polyline, {
+ points: "20 6 9 17 4 12"
+ }));
+});
+Check.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Check.displayName = 'Check';
+export default Check;
\ No newline at end of file
diff --git a/dist/icons/chevron-down.js b/dist/icons/chevron-down.js
new file mode 100644
index 00000000..16901b32
--- /dev/null
+++ b/dist/icons/chevron-down.js
@@ -0,0 +1,37 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Polyline } from 'svgs';
+var ChevronDown = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Polyline, {
+ points: "6 9 12 15 18 9"
+ }));
+});
+ChevronDown.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+ChevronDown.displayName = 'ChevronDown';
+export default ChevronDown;
\ No newline at end of file
diff --git a/dist/icons/chevron-left.js b/dist/icons/chevron-left.js
new file mode 100644
index 00000000..8d30b42a
--- /dev/null
+++ b/dist/icons/chevron-left.js
@@ -0,0 +1,37 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Polyline } from 'svgs';
+var ChevronLeft = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Polyline, {
+ points: "15 18 9 12 15 6"
+ }));
+});
+ChevronLeft.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+ChevronLeft.displayName = 'ChevronLeft';
+export default ChevronLeft;
\ No newline at end of file
diff --git a/dist/icons/chevron-right.js b/dist/icons/chevron-right.js
new file mode 100644
index 00000000..6f434253
--- /dev/null
+++ b/dist/icons/chevron-right.js
@@ -0,0 +1,37 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Polyline } from 'svgs';
+var ChevronRight = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Polyline, {
+ points: "9 18 15 12 9 6"
+ }));
+});
+ChevronRight.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+ChevronRight.displayName = 'ChevronRight';
+export default ChevronRight;
\ No newline at end of file
diff --git a/dist/icons/chevron-up.js b/dist/icons/chevron-up.js
new file mode 100644
index 00000000..5d2a7b78
--- /dev/null
+++ b/dist/icons/chevron-up.js
@@ -0,0 +1,37 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Polyline } from 'svgs';
+var ChevronUp = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Polyline, {
+ points: "18 15 12 9 6 15"
+ }));
+});
+ChevronUp.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+ChevronUp.displayName = 'ChevronUp';
+export default ChevronUp;
\ No newline at end of file
diff --git a/dist/icons/chevrons-down.js b/dist/icons/chevrons-down.js
new file mode 100644
index 00000000..3e32fe20
--- /dev/null
+++ b/dist/icons/chevrons-down.js
@@ -0,0 +1,39 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Polyline } from 'svgs';
+var ChevronsDown = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Polyline, {
+ points: "7 13 12 18 17 13"
+ }), /*#__PURE__*/React.createElement(Polyline, {
+ points: "7 6 12 11 17 6"
+ }));
+});
+ChevronsDown.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+ChevronsDown.displayName = 'ChevronsDown';
+export default ChevronsDown;
\ No newline at end of file
diff --git a/dist/icons/chevrons-left.js b/dist/icons/chevrons-left.js
new file mode 100644
index 00000000..d63ac819
--- /dev/null
+++ b/dist/icons/chevrons-left.js
@@ -0,0 +1,39 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Polyline } from 'svgs';
+var ChevronsLeft = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Polyline, {
+ points: "11 17 6 12 11 7"
+ }), /*#__PURE__*/React.createElement(Polyline, {
+ points: "18 17 13 12 18 7"
+ }));
+});
+ChevronsLeft.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+ChevronsLeft.displayName = 'ChevronsLeft';
+export default ChevronsLeft;
\ No newline at end of file
diff --git a/dist/icons/chevrons-right.js b/dist/icons/chevrons-right.js
new file mode 100644
index 00000000..c88d7801
--- /dev/null
+++ b/dist/icons/chevrons-right.js
@@ -0,0 +1,39 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Polyline } from 'svgs';
+var ChevronsRight = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Polyline, {
+ points: "13 17 18 12 13 7"
+ }), /*#__PURE__*/React.createElement(Polyline, {
+ points: "6 17 11 12 6 7"
+ }));
+});
+ChevronsRight.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+ChevronsRight.displayName = 'ChevronsRight';
+export default ChevronsRight;
\ No newline at end of file
diff --git a/dist/icons/chevrons-up.js b/dist/icons/chevrons-up.js
new file mode 100644
index 00000000..4c30e3c9
--- /dev/null
+++ b/dist/icons/chevrons-up.js
@@ -0,0 +1,39 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Polyline } from 'svgs';
+var ChevronsUp = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Polyline, {
+ points: "17 11 12 6 7 11"
+ }), /*#__PURE__*/React.createElement(Polyline, {
+ points: "17 18 12 13 7 18"
+ }));
+});
+ChevronsUp.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+ChevronsUp.displayName = 'ChevronsUp';
+export default ChevronsUp;
\ No newline at end of file
diff --git a/dist/icons/chrome.js b/dist/icons/chrome.js
new file mode 100644
index 00000000..ea2b5ad0
--- /dev/null
+++ b/dist/icons/chrome.js
@@ -0,0 +1,58 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Circle, Line } from 'svgs';
+var Chrome = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Circle, {
+ cx: "12",
+ cy: "12",
+ r: "10"
+ }), /*#__PURE__*/React.createElement(Circle, {
+ cx: "12",
+ cy: "12",
+ r: "4"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "21.17",
+ y1: "8",
+ x2: "12",
+ y2: "8"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "3.95",
+ y1: "6.06",
+ x2: "8.54",
+ y2: "14"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "10.88",
+ y1: "21.94",
+ x2: "15.46",
+ y2: "14"
+ }));
+});
+Chrome.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Chrome.displayName = 'Chrome';
+export default Chrome;
\ No newline at end of file
diff --git a/dist/icons/circle.js b/dist/icons/circle.js
new file mode 100644
index 00000000..7dec4870
--- /dev/null
+++ b/dist/icons/circle.js
@@ -0,0 +1,39 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Circle as SvgCircle } from 'svgs';
+var Circle = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(SvgCircle, {
+ cx: "12",
+ cy: "12",
+ r: "10"
+ }));
+});
+Circle.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Circle.displayName = 'Circle';
+export default Circle;
\ No newline at end of file
diff --git a/dist/icons/clipboard.js b/dist/icons/clipboard.js
new file mode 100644
index 00000000..f59dbe6a
--- /dev/null
+++ b/dist/icons/clipboard.js
@@ -0,0 +1,44 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Path, Rect } from 'svgs';
+var Clipboard = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2"
+ }), /*#__PURE__*/React.createElement(Rect, {
+ x: "8",
+ y: "2",
+ width: "8",
+ height: "4",
+ rx: "1",
+ ry: "1"
+ }));
+});
+Clipboard.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Clipboard.displayName = 'Clipboard';
+export default Clipboard;
\ No newline at end of file
diff --git a/dist/icons/clock.js b/dist/icons/clock.js
new file mode 100644
index 00000000..77ac377a
--- /dev/null
+++ b/dist/icons/clock.js
@@ -0,0 +1,41 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Circle, Polyline } from 'svgs';
+var Clock = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Circle, {
+ cx: "12",
+ cy: "12",
+ r: "10"
+ }), /*#__PURE__*/React.createElement(Polyline, {
+ points: "12 6 12 12 16 14"
+ }));
+});
+Clock.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Clock.displayName = 'Clock';
+export default Clock;
\ No newline at end of file
diff --git a/dist/icons/cloud-drizzle.js b/dist/icons/cloud-drizzle.js
new file mode 100644
index 00000000..4faf6423
--- /dev/null
+++ b/dist/icons/cloud-drizzle.js
@@ -0,0 +1,67 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line, Path } from 'svgs';
+var CloudDrizzle = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Line, {
+ x1: "8",
+ y1: "19",
+ x2: "8",
+ y2: "21"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "8",
+ y1: "13",
+ x2: "8",
+ y2: "15"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "16",
+ y1: "19",
+ x2: "16",
+ y2: "21"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "16",
+ y1: "13",
+ x2: "16",
+ y2: "15"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "12",
+ y1: "21",
+ x2: "12",
+ y2: "23"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "12",
+ y1: "15",
+ x2: "12",
+ y2: "17"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M20 16.58A5 5 0 0 0 18 7h-1.26A8 8 0 1 0 4 15.25"
+ }));
+});
+CloudDrizzle.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+CloudDrizzle.displayName = 'CloudDrizzle';
+export default CloudDrizzle;
\ No newline at end of file
diff --git a/dist/icons/cloud-lightning.js b/dist/icons/cloud-lightning.js
new file mode 100644
index 00000000..33b9a22c
--- /dev/null
+++ b/dist/icons/cloud-lightning.js
@@ -0,0 +1,39 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Path, Polyline } from 'svgs';
+var CloudLightning = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M19 16.9A5 5 0 0 0 18 7h-1.26a8 8 0 1 0-11.62 9"
+ }), /*#__PURE__*/React.createElement(Polyline, {
+ points: "13 11 9 17 15 17 11 23"
+ }));
+});
+CloudLightning.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+CloudLightning.displayName = 'CloudLightning';
+export default CloudLightning;
\ No newline at end of file
diff --git a/dist/icons/cloud-off.js b/dist/icons/cloud-off.js
new file mode 100644
index 00000000..059ac717
--- /dev/null
+++ b/dist/icons/cloud-off.js
@@ -0,0 +1,42 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line, Path } from 'svgs';
+var CloudOff = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M22.61 16.95A5 5 0 0 0 18 10h-1.26a8 8 0 0 0-7.05-6M5 5a8 8 0 0 0 4 15h9a5 5 0 0 0 1.7-.3"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "1",
+ y1: "1",
+ x2: "23",
+ y2: "23"
+ }));
+});
+CloudOff.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+CloudOff.displayName = 'CloudOff';
+export default CloudOff;
\ No newline at end of file
diff --git a/dist/icons/cloud-rain.js b/dist/icons/cloud-rain.js
new file mode 100644
index 00000000..d707a33b
--- /dev/null
+++ b/dist/icons/cloud-rain.js
@@ -0,0 +1,52 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line, Path } from 'svgs';
+var CloudRain = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Line, {
+ x1: "16",
+ y1: "13",
+ x2: "16",
+ y2: "21"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "8",
+ y1: "13",
+ x2: "8",
+ y2: "21"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "12",
+ y1: "15",
+ x2: "12",
+ y2: "23"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M20 16.58A5 5 0 0 0 18 7h-1.26A8 8 0 1 0 4 15.25"
+ }));
+});
+CloudRain.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+CloudRain.displayName = 'CloudRain';
+export default CloudRain;
\ No newline at end of file
diff --git a/dist/icons/cloud-snow.js b/dist/icons/cloud-snow.js
new file mode 100644
index 00000000..d27d238d
--- /dev/null
+++ b/dist/icons/cloud-snow.js
@@ -0,0 +1,67 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line, Path } from 'svgs';
+var CloudSnow = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M20 17.58A5 5 0 0 0 18 8h-1.26A8 8 0 1 0 4 16.25"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "8",
+ y1: "16",
+ x2: "8.01",
+ y2: "16"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "8",
+ y1: "20",
+ x2: "8.01",
+ y2: "20"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "12",
+ y1: "18",
+ x2: "12.01",
+ y2: "18"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "12",
+ y1: "22",
+ x2: "12.01",
+ y2: "22"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "16",
+ y1: "16",
+ x2: "16.01",
+ y2: "16"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "16",
+ y1: "20",
+ x2: "16.01",
+ y2: "20"
+ }));
+});
+CloudSnow.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+CloudSnow.displayName = 'CloudSnow';
+export default CloudSnow;
\ No newline at end of file
diff --git a/dist/icons/cloud.js b/dist/icons/cloud.js
new file mode 100644
index 00000000..35e707c4
--- /dev/null
+++ b/dist/icons/cloud.js
@@ -0,0 +1,37 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Path } from 'svgs';
+var Cloud = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M18 10h-1.26A8 8 0 1 0 9 20h9a5 5 0 0 0 0-10z"
+ }));
+});
+Cloud.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Cloud.displayName = 'Cloud';
+export default Cloud;
\ No newline at end of file
diff --git a/dist/icons/code.js b/dist/icons/code.js
new file mode 100644
index 00000000..0007bb76
--- /dev/null
+++ b/dist/icons/code.js
@@ -0,0 +1,39 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Polyline } from 'svgs';
+var Code = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Polyline, {
+ points: "16 18 22 12 16 6"
+ }), /*#__PURE__*/React.createElement(Polyline, {
+ points: "8 6 2 12 8 18"
+ }));
+});
+Code.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Code.displayName = 'Code';
+export default Code;
\ No newline at end of file
diff --git a/dist/icons/codepen.js b/dist/icons/codepen.js
new file mode 100644
index 00000000..1a864fc8
--- /dev/null
+++ b/dist/icons/codepen.js
@@ -0,0 +1,51 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line, Polygon, Polyline } from 'svgs';
+var Codepen = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Polygon, {
+ points: "12 2 22 8.5 22 15.5 12 22 2 15.5 2 8.5 12 2"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "12",
+ y1: "22",
+ x2: "12",
+ y2: "15.5"
+ }), /*#__PURE__*/React.createElement(Polyline, {
+ points: "22 8.5 12 15.5 2 8.5"
+ }), /*#__PURE__*/React.createElement(Polyline, {
+ points: "2 15.5 12 8.5 22 15.5"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "12",
+ y1: "2",
+ x2: "12",
+ y2: "8.5"
+ }));
+});
+Codepen.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Codepen.displayName = 'Codepen';
+export default Codepen;
\ No newline at end of file
diff --git a/dist/icons/codesandbox.js b/dist/icons/codesandbox.js
new file mode 100644
index 00000000..73fb1dfa
--- /dev/null
+++ b/dist/icons/codesandbox.js
@@ -0,0 +1,50 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line, Path, Polyline } from 'svgs';
+var Codesandbox = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z"
+ }), /*#__PURE__*/React.createElement(Polyline, {
+ points: "7.5 4.21 12 6.81 16.5 4.21"
+ }), /*#__PURE__*/React.createElement(Polyline, {
+ points: "7.5 19.79 7.5 14.6 3 12"
+ }), /*#__PURE__*/React.createElement(Polyline, {
+ points: "21 12 16.5 14.6 16.5 19.79"
+ }), /*#__PURE__*/React.createElement(Polyline, {
+ points: "3.27 6.96 12 12.01 20.73 6.96"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "12",
+ y1: "22.08",
+ x2: "12",
+ y2: "12"
+ }));
+});
+Codesandbox.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Codesandbox.displayName = 'Codesandbox';
+export default Codesandbox;
\ No newline at end of file
diff --git a/dist/icons/coffee.js b/dist/icons/coffee.js
new file mode 100644
index 00000000..75110d17
--- /dev/null
+++ b/dist/icons/coffee.js
@@ -0,0 +1,54 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line, Path } from 'svgs';
+var Coffee = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M18 8h1a4 4 0 0 1 0 8h-1"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M2 8h16v9a4 4 0 0 1-4 4H6a4 4 0 0 1-4-4V8z"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "6",
+ y1: "1",
+ x2: "6",
+ y2: "4"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "10",
+ y1: "1",
+ x2: "10",
+ y2: "4"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "14",
+ y1: "1",
+ x2: "14",
+ y2: "4"
+ }));
+});
+Coffee.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Coffee.displayName = 'Coffee';
+export default Coffee;
\ No newline at end of file
diff --git a/dist/icons/columns.js b/dist/icons/columns.js
new file mode 100644
index 00000000..c6c2155d
--- /dev/null
+++ b/dist/icons/columns.js
@@ -0,0 +1,37 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Path } from 'svgs';
+var Columns = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M12 3h7a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-7m0-18H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h7m0-18v18"
+ }));
+});
+Columns.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Columns.displayName = 'Columns';
+export default Columns;
\ No newline at end of file
diff --git a/dist/icons/command.js b/dist/icons/command.js
new file mode 100644
index 00000000..98727068
--- /dev/null
+++ b/dist/icons/command.js
@@ -0,0 +1,37 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Path } from 'svgs';
+var Command = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M18 3a3 3 0 0 0-3 3v12a3 3 0 0 0 3 3 3 3 0 0 0 3-3 3 3 0 0 0-3-3H6a3 3 0 0 0-3 3 3 3 0 0 0 3 3 3 3 0 0 0 3-3V6a3 3 0 0 0-3-3 3 3 0 0 0-3 3 3 3 0 0 0 3 3h12a3 3 0 0 0 3-3 3 3 0 0 0-3-3z"
+ }));
+});
+Command.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Command.displayName = 'Command';
+export default Command;
\ No newline at end of file
diff --git a/dist/icons/compass.js b/dist/icons/compass.js
new file mode 100644
index 00000000..4089c7f3
--- /dev/null
+++ b/dist/icons/compass.js
@@ -0,0 +1,41 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Circle, Polygon } from 'svgs';
+var Compass = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Circle, {
+ cx: "12",
+ cy: "12",
+ r: "10"
+ }), /*#__PURE__*/React.createElement(Polygon, {
+ points: "16.24 7.76 14.12 14.12 7.76 16.24 9.88 9.88 16.24 7.76"
+ }));
+});
+Compass.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Compass.displayName = 'Compass';
+export default Compass;
\ No newline at end of file
diff --git a/dist/icons/copy.js b/dist/icons/copy.js
new file mode 100644
index 00000000..6dc76501
--- /dev/null
+++ b/dist/icons/copy.js
@@ -0,0 +1,44 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Path, Rect } from 'svgs';
+var Copy = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Rect, {
+ x: "9",
+ y: "9",
+ width: "13",
+ height: "13",
+ rx: "2",
+ ry: "2"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1"
+ }));
+});
+Copy.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Copy.displayName = 'Copy';
+export default Copy;
\ No newline at end of file
diff --git a/dist/icons/corner-down-left.js b/dist/icons/corner-down-left.js
new file mode 100644
index 00000000..76bca73a
--- /dev/null
+++ b/dist/icons/corner-down-left.js
@@ -0,0 +1,39 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Path, Polyline } from 'svgs';
+var CornerDownLeft = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Polyline, {
+ points: "9 10 4 15 9 20"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M20 4v7a4 4 0 0 1-4 4H4"
+ }));
+});
+CornerDownLeft.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+CornerDownLeft.displayName = 'CornerDownLeft';
+export default CornerDownLeft;
\ No newline at end of file
diff --git a/dist/icons/corner-down-right.js b/dist/icons/corner-down-right.js
new file mode 100644
index 00000000..4d41e1a6
--- /dev/null
+++ b/dist/icons/corner-down-right.js
@@ -0,0 +1,39 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Path, Polyline } from 'svgs';
+var CornerDownRight = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Polyline, {
+ points: "15 10 20 15 15 20"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M4 4v7a4 4 0 0 0 4 4h12"
+ }));
+});
+CornerDownRight.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+CornerDownRight.displayName = 'CornerDownRight';
+export default CornerDownRight;
\ No newline at end of file
diff --git a/dist/icons/corner-left-down.js b/dist/icons/corner-left-down.js
new file mode 100644
index 00000000..58c1037d
--- /dev/null
+++ b/dist/icons/corner-left-down.js
@@ -0,0 +1,39 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Path, Polyline } from 'svgs';
+var CornerLeftDown = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Polyline, {
+ points: "14 15 9 20 4 15"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M20 4h-7a4 4 0 0 0-4 4v12"
+ }));
+});
+CornerLeftDown.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+CornerLeftDown.displayName = 'CornerLeftDown';
+export default CornerLeftDown;
\ No newline at end of file
diff --git a/dist/icons/corner-left-up.js b/dist/icons/corner-left-up.js
new file mode 100644
index 00000000..ed672841
--- /dev/null
+++ b/dist/icons/corner-left-up.js
@@ -0,0 +1,39 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Path, Polyline } from 'svgs';
+var CornerLeftUp = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Polyline, {
+ points: "14 9 9 4 4 9"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M20 20h-7a4 4 0 0 1-4-4V4"
+ }));
+});
+CornerLeftUp.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+CornerLeftUp.displayName = 'CornerLeftUp';
+export default CornerLeftUp;
\ No newline at end of file
diff --git a/dist/icons/corner-right-down.js b/dist/icons/corner-right-down.js
new file mode 100644
index 00000000..85451991
--- /dev/null
+++ b/dist/icons/corner-right-down.js
@@ -0,0 +1,39 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Path, Polyline } from 'svgs';
+var CornerRightDown = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Polyline, {
+ points: "10 15 15 20 20 15"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M4 4h7a4 4 0 0 1 4 4v12"
+ }));
+});
+CornerRightDown.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+CornerRightDown.displayName = 'CornerRightDown';
+export default CornerRightDown;
\ No newline at end of file
diff --git a/dist/icons/corner-right-up.js b/dist/icons/corner-right-up.js
new file mode 100644
index 00000000..0a38e403
--- /dev/null
+++ b/dist/icons/corner-right-up.js
@@ -0,0 +1,39 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Path, Polyline } from 'svgs';
+var CornerRightUp = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Polyline, {
+ points: "10 9 15 4 20 9"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M4 20h7a4 4 0 0 0 4-4V4"
+ }));
+});
+CornerRightUp.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+CornerRightUp.displayName = 'CornerRightUp';
+export default CornerRightUp;
\ No newline at end of file
diff --git a/dist/icons/corner-up-left.js b/dist/icons/corner-up-left.js
new file mode 100644
index 00000000..0ae71f8d
--- /dev/null
+++ b/dist/icons/corner-up-left.js
@@ -0,0 +1,39 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Path, Polyline } from 'svgs';
+var CornerUpLeft = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Polyline, {
+ points: "9 14 4 9 9 4"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M20 20v-7a4 4 0 0 0-4-4H4"
+ }));
+});
+CornerUpLeft.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+CornerUpLeft.displayName = 'CornerUpLeft';
+export default CornerUpLeft;
\ No newline at end of file
diff --git a/dist/icons/corner-up-right.js b/dist/icons/corner-up-right.js
new file mode 100644
index 00000000..86becdfd
--- /dev/null
+++ b/dist/icons/corner-up-right.js
@@ -0,0 +1,39 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Path, Polyline } from 'svgs';
+var CornerUpRight = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Polyline, {
+ points: "15 14 20 9 15 4"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M4 20v-7a4 4 0 0 1 4-4h12"
+ }));
+});
+CornerUpRight.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+CornerUpRight.displayName = 'CornerUpRight';
+export default CornerUpRight;
\ No newline at end of file
diff --git a/dist/icons/cpu.js b/dist/icons/cpu.js
new file mode 100644
index 00000000..622ace95
--- /dev/null
+++ b/dist/icons/cpu.js
@@ -0,0 +1,87 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line, Rect } from 'svgs';
+var Cpu = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Rect, {
+ x: "4",
+ y: "4",
+ width: "16",
+ height: "16",
+ rx: "2",
+ ry: "2"
+ }), /*#__PURE__*/React.createElement(Rect, {
+ x: "9",
+ y: "9",
+ width: "6",
+ height: "6"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "9",
+ y1: "1",
+ x2: "9",
+ y2: "4"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "15",
+ y1: "1",
+ x2: "15",
+ y2: "4"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "9",
+ y1: "20",
+ x2: "9",
+ y2: "23"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "15",
+ y1: "20",
+ x2: "15",
+ y2: "23"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "20",
+ y1: "9",
+ x2: "23",
+ y2: "9"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "20",
+ y1: "14",
+ x2: "23",
+ y2: "14"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "1",
+ y1: "9",
+ x2: "4",
+ y2: "9"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "1",
+ y1: "14",
+ x2: "4",
+ y2: "14"
+ }));
+});
+Cpu.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Cpu.displayName = 'Cpu';
+export default Cpu;
\ No newline at end of file
diff --git a/dist/icons/credit-card.js b/dist/icons/credit-card.js
new file mode 100644
index 00000000..90131c80
--- /dev/null
+++ b/dist/icons/credit-card.js
@@ -0,0 +1,47 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line, Rect } from 'svgs';
+var CreditCard = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Rect, {
+ x: "1",
+ y: "4",
+ width: "22",
+ height: "16",
+ rx: "2",
+ ry: "2"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "1",
+ y1: "10",
+ x2: "23",
+ y2: "10"
+ }));
+});
+CreditCard.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+CreditCard.displayName = 'CreditCard';
+export default CreditCard;
\ No newline at end of file
diff --git a/dist/icons/crop.js b/dist/icons/crop.js
new file mode 100644
index 00000000..5a519b45
--- /dev/null
+++ b/dist/icons/crop.js
@@ -0,0 +1,39 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Path } from 'svgs';
+var Crop = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M6.13 1L6 16a2 2 0 0 0 2 2h15"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M1 6.13L16 6a2 2 0 0 1 2 2v15"
+ }));
+});
+Crop.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Crop.displayName = 'Crop';
+export default Crop;
\ No newline at end of file
diff --git a/dist/icons/crosshair.js b/dist/icons/crosshair.js
new file mode 100644
index 00000000..de137dae
--- /dev/null
+++ b/dist/icons/crosshair.js
@@ -0,0 +1,59 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Circle, Line } from 'svgs';
+var Crosshair = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Circle, {
+ cx: "12",
+ cy: "12",
+ r: "10"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "22",
+ y1: "12",
+ x2: "18",
+ y2: "12"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "6",
+ y1: "12",
+ x2: "2",
+ y2: "12"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "12",
+ y1: "6",
+ x2: "12",
+ y2: "2"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "12",
+ y1: "22",
+ x2: "12",
+ y2: "18"
+ }));
+});
+Crosshair.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Crosshair.displayName = 'Crosshair';
+export default Crosshair;
\ No newline at end of file
diff --git a/dist/icons/database.js b/dist/icons/database.js
new file mode 100644
index 00000000..14754009
--- /dev/null
+++ b/dist/icons/database.js
@@ -0,0 +1,44 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Ellipse, Path } from 'svgs';
+var Database = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Ellipse, {
+ cx: "12",
+ cy: "5",
+ rx: "9",
+ ry: "3"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M21 12c0 1.66-4 3-9 3s-9-1.34-9-3"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M3 5v14c0 1.66 4 3 9 3s9-1.34 9-3V5"
+ }));
+});
+Database.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Database.displayName = 'Database';
+export default Database;
\ No newline at end of file
diff --git a/dist/icons/delete.js b/dist/icons/delete.js
new file mode 100644
index 00000000..754ec807
--- /dev/null
+++ b/dist/icons/delete.js
@@ -0,0 +1,47 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line, Path } from 'svgs';
+var Delete = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M21 4H8l-7 8 7 8h13a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2z"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "18",
+ y1: "9",
+ x2: "12",
+ y2: "15"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "12",
+ y1: "9",
+ x2: "18",
+ y2: "15"
+ }));
+});
+Delete.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Delete.displayName = 'Delete';
+export default Delete;
\ No newline at end of file
diff --git a/dist/icons/disc.js b/dist/icons/disc.js
new file mode 100644
index 00000000..069e3573
--- /dev/null
+++ b/dist/icons/disc.js
@@ -0,0 +1,43 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Circle } from 'svgs';
+var Disc = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Circle, {
+ cx: "12",
+ cy: "12",
+ r: "10"
+ }), /*#__PURE__*/React.createElement(Circle, {
+ cx: "12",
+ cy: "12",
+ r: "3"
+ }));
+});
+Disc.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Disc.displayName = 'Disc';
+export default Disc;
\ No newline at end of file
diff --git a/dist/icons/divide-circle.js b/dist/icons/divide-circle.js
new file mode 100644
index 00000000..c4a11300
--- /dev/null
+++ b/dist/icons/divide-circle.js
@@ -0,0 +1,54 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Circle, Line } from 'svgs';
+var DivideCircle = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Line, {
+ x1: "8",
+ y1: "12",
+ x2: "16",
+ y2: "12"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "12",
+ y1: "16",
+ x2: "12",
+ y2: "16"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "12",
+ y1: "8",
+ x2: "12",
+ y2: "8"
+ }), /*#__PURE__*/React.createElement(Circle, {
+ cx: "12",
+ cy: "12",
+ r: "10"
+ }));
+});
+DivideCircle.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+DivideCircle.displayName = 'DivideCircle';
+export default DivideCircle;
\ No newline at end of file
diff --git a/dist/icons/divide-square.js b/dist/icons/divide-square.js
new file mode 100644
index 00000000..9788eb3e
--- /dev/null
+++ b/dist/icons/divide-square.js
@@ -0,0 +1,57 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line, Rect } from 'svgs';
+var DivideSquare = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Rect, {
+ x: "3",
+ y: "3",
+ width: "18",
+ height: "18",
+ rx: "2",
+ ry: "2"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "8",
+ y1: "12",
+ x2: "16",
+ y2: "12"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "12",
+ y1: "16",
+ x2: "12",
+ y2: "16"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "12",
+ y1: "8",
+ x2: "12",
+ y2: "8"
+ }));
+});
+DivideSquare.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+DivideSquare.displayName = 'DivideSquare';
+export default DivideSquare;
\ No newline at end of file
diff --git a/dist/icons/divide.js b/dist/icons/divide.js
new file mode 100644
index 00000000..3df1ec16
--- /dev/null
+++ b/dist/icons/divide.js
@@ -0,0 +1,48 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Circle, Line } from 'svgs';
+var Divide = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Circle, {
+ cx: "12",
+ cy: "6",
+ r: "2"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "5",
+ y1: "12",
+ x2: "19",
+ y2: "12"
+ }), /*#__PURE__*/React.createElement(Circle, {
+ cx: "12",
+ cy: "18",
+ r: "2"
+ }));
+});
+Divide.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Divide.displayName = 'Divide';
+export default Divide;
\ No newline at end of file
diff --git a/dist/icons/dollar-sign.js b/dist/icons/dollar-sign.js
new file mode 100644
index 00000000..364fdce0
--- /dev/null
+++ b/dist/icons/dollar-sign.js
@@ -0,0 +1,42 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line, Path } from 'svgs';
+var DollarSign = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Line, {
+ x1: "12",
+ y1: "1",
+ x2: "12",
+ y2: "23"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6"
+ }));
+});
+DollarSign.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+DollarSign.displayName = 'DollarSign';
+export default DollarSign;
\ No newline at end of file
diff --git a/dist/icons/download-cloud.js b/dist/icons/download-cloud.js
new file mode 100644
index 00000000..13138c29
--- /dev/null
+++ b/dist/icons/download-cloud.js
@@ -0,0 +1,44 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line, Path, Polyline } from 'svgs';
+var DownloadCloud = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Polyline, {
+ points: "8 17 12 21 16 17"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "12",
+ y1: "12",
+ x2: "12",
+ y2: "21"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M20.88 18.09A5 5 0 0 0 18 9h-1.26A8 8 0 1 0 3 16.29"
+ }));
+});
+DownloadCloud.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+DownloadCloud.displayName = 'DownloadCloud';
+export default DownloadCloud;
\ No newline at end of file
diff --git a/dist/icons/download.js b/dist/icons/download.js
new file mode 100644
index 00000000..abf16db8
--- /dev/null
+++ b/dist/icons/download.js
@@ -0,0 +1,44 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line, Path, Polyline } from 'svgs';
+var Download = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"
+ }), /*#__PURE__*/React.createElement(Polyline, {
+ points: "7 10 12 15 17 10"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "12",
+ y1: "15",
+ x2: "12",
+ y2: "3"
+ }));
+});
+Download.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Download.displayName = 'Download';
+export default Download;
\ No newline at end of file
diff --git a/dist/icons/dribbble.js b/dist/icons/dribbble.js
new file mode 100644
index 00000000..4cffdba8
--- /dev/null
+++ b/dist/icons/dribbble.js
@@ -0,0 +1,41 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Circle, Path } from 'svgs';
+var Dribbble = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Circle, {
+ cx: "12",
+ cy: "12",
+ r: "10"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M8.56 2.75c4.37 6.03 6.02 9.42 8.03 17.72m2.54-15.38c-3.72 4.35-8.94 5.66-16.88 5.85m19.5 1.9c-3.5-.93-6.63-.82-8.94 0-2.58.92-5.01 2.86-7.44 6.32"
+ }));
+});
+Dribbble.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Dribbble.displayName = 'Dribbble';
+export default Dribbble;
\ No newline at end of file
diff --git a/dist/icons/droplet.js b/dist/icons/droplet.js
new file mode 100644
index 00000000..0676341c
--- /dev/null
+++ b/dist/icons/droplet.js
@@ -0,0 +1,37 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Path } from 'svgs';
+var Droplet = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M12 2.69l5.66 5.66a8 8 0 1 1-11.31 0z"
+ }));
+});
+Droplet.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Droplet.displayName = 'Droplet';
+export default Droplet;
\ No newline at end of file
diff --git a/dist/icons/edit-2.js b/dist/icons/edit-2.js
new file mode 100644
index 00000000..c9433196
--- /dev/null
+++ b/dist/icons/edit-2.js
@@ -0,0 +1,37 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Path } from 'svgs';
+var Edit2 = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M17 3a2.828 2.828 0 1 1 4 4L7.5 20.5 2 22l1.5-5.5L17 3z"
+ }));
+});
+Edit2.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Edit2.displayName = 'Edit2';
+export default Edit2;
\ No newline at end of file
diff --git a/dist/icons/edit-3.js b/dist/icons/edit-3.js
new file mode 100644
index 00000000..968c9696
--- /dev/null
+++ b/dist/icons/edit-3.js
@@ -0,0 +1,39 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Path } from 'svgs';
+var Edit3 = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M12 20h9"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M16.5 3.5a2.121 2.121 0 0 1 3 3L7 19l-4 1 1-4L16.5 3.5z"
+ }));
+});
+Edit3.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Edit3.displayName = 'Edit3';
+export default Edit3;
\ No newline at end of file
diff --git a/dist/icons/edit.js b/dist/icons/edit.js
new file mode 100644
index 00000000..06db7353
--- /dev/null
+++ b/dist/icons/edit.js
@@ -0,0 +1,39 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Path } from 'svgs';
+var Edit = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M11 4H4a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M18.5 2.5a2.121 2.121 0 0 1 3 3L12 15l-4 1 1-4 9.5-9.5z"
+ }));
+});
+Edit.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Edit.displayName = 'Edit';
+export default Edit;
\ No newline at end of file
diff --git a/dist/icons/external-link.js b/dist/icons/external-link.js
new file mode 100644
index 00000000..a5c75f73
--- /dev/null
+++ b/dist/icons/external-link.js
@@ -0,0 +1,44 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line, Path, Polyline } from 'svgs';
+var ExternalLink = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"
+ }), /*#__PURE__*/React.createElement(Polyline, {
+ points: "15 3 21 3 21 9"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "10",
+ y1: "14",
+ x2: "21",
+ y2: "3"
+ }));
+});
+ExternalLink.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+ExternalLink.displayName = 'ExternalLink';
+export default ExternalLink;
\ No newline at end of file
diff --git a/dist/icons/eye-off.js b/dist/icons/eye-off.js
new file mode 100644
index 00000000..185ccb8f
--- /dev/null
+++ b/dist/icons/eye-off.js
@@ -0,0 +1,42 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line, Path } from 'svgs';
+var EyeOff = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M17.94 17.94A10.07 10.07 0 0 1 12 20c-7 0-11-8-11-8a18.45 18.45 0 0 1 5.06-5.94M9.9 4.24A9.12 9.12 0 0 1 12 4c7 0 11 8 11 8a18.5 18.5 0 0 1-2.16 3.19m-6.72-1.07a3 3 0 1 1-4.24-4.24"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "1",
+ y1: "1",
+ x2: "23",
+ y2: "23"
+ }));
+});
+EyeOff.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+EyeOff.displayName = 'EyeOff';
+export default EyeOff;
\ No newline at end of file
diff --git a/dist/icons/eye.js b/dist/icons/eye.js
new file mode 100644
index 00000000..c43b6335
--- /dev/null
+++ b/dist/icons/eye.js
@@ -0,0 +1,41 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Circle, Path } from 'svgs';
+var Eye = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z"
+ }), /*#__PURE__*/React.createElement(Circle, {
+ cx: "12",
+ cy: "12",
+ r: "3"
+ }));
+});
+Eye.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Eye.displayName = 'Eye';
+export default Eye;
\ No newline at end of file
diff --git a/dist/icons/facebook.js b/dist/icons/facebook.js
new file mode 100644
index 00000000..4ba0d7ca
--- /dev/null
+++ b/dist/icons/facebook.js
@@ -0,0 +1,37 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Path } from 'svgs';
+var Facebook = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z"
+ }));
+});
+Facebook.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Facebook.displayName = 'Facebook';
+export default Facebook;
\ No newline at end of file
diff --git a/dist/icons/fast-forward.js b/dist/icons/fast-forward.js
new file mode 100644
index 00000000..5db40712
--- /dev/null
+++ b/dist/icons/fast-forward.js
@@ -0,0 +1,39 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Polygon } from 'svgs';
+var FastForward = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Polygon, {
+ points: "13 19 22 12 13 5 13 19"
+ }), /*#__PURE__*/React.createElement(Polygon, {
+ points: "2 19 11 12 2 5 2 19"
+ }));
+});
+FastForward.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+FastForward.displayName = 'FastForward';
+export default FastForward;
\ No newline at end of file
diff --git a/dist/icons/feather.js b/dist/icons/feather.js
new file mode 100644
index 00000000..bf304533
--- /dev/null
+++ b/dist/icons/feather.js
@@ -0,0 +1,47 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line, Path } from 'svgs';
+var Feather = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M20.24 12.24a6 6 0 0 0-8.49-8.49L5 10.5V19h8.5z"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "16",
+ y1: "8",
+ x2: "2",
+ y2: "22"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "17.5",
+ y1: "15",
+ x2: "9",
+ y2: "15"
+ }));
+});
+Feather.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Feather.displayName = 'Feather';
+export default Feather;
\ No newline at end of file
diff --git a/dist/icons/figma.js b/dist/icons/figma.js
new file mode 100644
index 00000000..f476f33f
--- /dev/null
+++ b/dist/icons/figma.js
@@ -0,0 +1,45 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Path } from 'svgs';
+var Figma = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M5 5.5A3.5 3.5 0 0 1 8.5 2H12v7H8.5A3.5 3.5 0 0 1 5 5.5z"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M12 2h3.5a3.5 3.5 0 1 1 0 7H12V2z"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M12 12.5a3.5 3.5 0 1 1 7 0 3.5 3.5 0 1 1-7 0z"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M5 19.5A3.5 3.5 0 0 1 8.5 16H12v3.5a3.5 3.5 0 1 1-7 0z"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M5 12.5A3.5 3.5 0 0 1 8.5 9H12v7H8.5A3.5 3.5 0 0 1 5 12.5z"
+ }));
+});
+Figma.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Figma.displayName = 'Figma';
+export default Figma;
\ No newline at end of file
diff --git a/dist/icons/file-minus.js b/dist/icons/file-minus.js
new file mode 100644
index 00000000..1e8bab4e
--- /dev/null
+++ b/dist/icons/file-minus.js
@@ -0,0 +1,44 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line, Path, Polyline } from 'svgs';
+var FileMinus = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"
+ }), /*#__PURE__*/React.createElement(Polyline, {
+ points: "14 2 14 8 20 8"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "9",
+ y1: "15",
+ x2: "15",
+ y2: "15"
+ }));
+});
+FileMinus.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+FileMinus.displayName = 'FileMinus';
+export default FileMinus;
\ No newline at end of file
diff --git a/dist/icons/file-plus.js b/dist/icons/file-plus.js
new file mode 100644
index 00000000..cd957fa8
--- /dev/null
+++ b/dist/icons/file-plus.js
@@ -0,0 +1,49 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line, Path, Polyline } from 'svgs';
+var FilePlus = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"
+ }), /*#__PURE__*/React.createElement(Polyline, {
+ points: "14 2 14 8 20 8"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "12",
+ y1: "18",
+ x2: "12",
+ y2: "12"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "9",
+ y1: "15",
+ x2: "15",
+ y2: "15"
+ }));
+});
+FilePlus.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+FilePlus.displayName = 'FilePlus';
+export default FilePlus;
\ No newline at end of file
diff --git a/dist/icons/file-text.js b/dist/icons/file-text.js
new file mode 100644
index 00000000..fc465a7e
--- /dev/null
+++ b/dist/icons/file-text.js
@@ -0,0 +1,51 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line, Path, Polyline } from 'svgs';
+var FileText = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"
+ }), /*#__PURE__*/React.createElement(Polyline, {
+ points: "14 2 14 8 20 8"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "16",
+ y1: "13",
+ x2: "8",
+ y2: "13"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "16",
+ y1: "17",
+ x2: "8",
+ y2: "17"
+ }), /*#__PURE__*/React.createElement(Polyline, {
+ points: "10 9 9 9 8 9"
+ }));
+});
+FileText.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+FileText.displayName = 'FileText';
+export default FileText;
\ No newline at end of file
diff --git a/dist/icons/file.js b/dist/icons/file.js
new file mode 100644
index 00000000..2beb7aea
--- /dev/null
+++ b/dist/icons/file.js
@@ -0,0 +1,39 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Path, Polyline } from 'svgs';
+var File = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M13 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V9z"
+ }), /*#__PURE__*/React.createElement(Polyline, {
+ points: "13 2 13 9 20 9"
+ }));
+});
+File.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+File.displayName = 'File';
+export default File;
\ No newline at end of file
diff --git a/dist/icons/film.js b/dist/icons/film.js
new file mode 100644
index 00000000..52292043
--- /dev/null
+++ b/dist/icons/film.js
@@ -0,0 +1,77 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line, Rect } from 'svgs';
+var Film = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Rect, {
+ x: "2",
+ y: "2",
+ width: "20",
+ height: "20",
+ rx: "2.18",
+ ry: "2.18"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "7",
+ y1: "2",
+ x2: "7",
+ y2: "22"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "17",
+ y1: "2",
+ x2: "17",
+ y2: "22"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "2",
+ y1: "12",
+ x2: "22",
+ y2: "12"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "2",
+ y1: "7",
+ x2: "7",
+ y2: "7"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "2",
+ y1: "17",
+ x2: "7",
+ y2: "17"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "17",
+ y1: "17",
+ x2: "22",
+ y2: "17"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "17",
+ y1: "7",
+ x2: "22",
+ y2: "7"
+ }));
+});
+Film.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Film.displayName = 'Film';
+export default Film;
\ No newline at end of file
diff --git a/dist/icons/filter.js b/dist/icons/filter.js
new file mode 100644
index 00000000..51baf55c
--- /dev/null
+++ b/dist/icons/filter.js
@@ -0,0 +1,37 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Polygon } from 'svgs';
+var Filter = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Polygon, {
+ points: "22 3 2 3 10 12.46 10 19 14 21 14 12.46 22 3"
+ }));
+});
+Filter.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Filter.displayName = 'Filter';
+export default Filter;
\ No newline at end of file
diff --git a/dist/icons/flag.js b/dist/icons/flag.js
new file mode 100644
index 00000000..b33979d2
--- /dev/null
+++ b/dist/icons/flag.js
@@ -0,0 +1,42 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line, Path } from 'svgs';
+var Flag = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M4 15s1-1 4-1 5 2 8 2 4-1 4-1V3s-1 1-4 1-5-2-8-2-4 1-4 1z"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "4",
+ y1: "22",
+ x2: "4",
+ y2: "15"
+ }));
+});
+Flag.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Flag.displayName = 'Flag';
+export default Flag;
\ No newline at end of file
diff --git a/dist/icons/folder-minus.js b/dist/icons/folder-minus.js
new file mode 100644
index 00000000..aa8e6bbf
--- /dev/null
+++ b/dist/icons/folder-minus.js
@@ -0,0 +1,42 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line, Path } from 'svgs';
+var FolderMinus = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 2 2z"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "9",
+ y1: "14",
+ x2: "15",
+ y2: "14"
+ }));
+});
+FolderMinus.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+FolderMinus.displayName = 'FolderMinus';
+export default FolderMinus;
\ No newline at end of file
diff --git a/dist/icons/folder-plus.js b/dist/icons/folder-plus.js
new file mode 100644
index 00000000..9e842c47
--- /dev/null
+++ b/dist/icons/folder-plus.js
@@ -0,0 +1,47 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line, Path } from 'svgs';
+var FolderPlus = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 2 2z"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "12",
+ y1: "11",
+ x2: "12",
+ y2: "17"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "9",
+ y1: "14",
+ x2: "15",
+ y2: "14"
+ }));
+});
+FolderPlus.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+FolderPlus.displayName = 'FolderPlus';
+export default FolderPlus;
\ No newline at end of file
diff --git a/dist/icons/folder.js b/dist/icons/folder.js
new file mode 100644
index 00000000..ee472e50
--- /dev/null
+++ b/dist/icons/folder.js
@@ -0,0 +1,37 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Path } from 'svgs';
+var Folder = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 2 2z"
+ }));
+});
+Folder.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Folder.displayName = 'Folder';
+export default Folder;
\ No newline at end of file
diff --git a/dist/icons/framer.js b/dist/icons/framer.js
new file mode 100644
index 00000000..cf780a7d
--- /dev/null
+++ b/dist/icons/framer.js
@@ -0,0 +1,37 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Path } from 'svgs';
+var Framer = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M5 16V9h14V2H5l14 14h-7m-7 0l7 7v-7m-7 0h7"
+ }));
+});
+Framer.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Framer.displayName = 'Framer';
+export default Framer;
\ No newline at end of file
diff --git a/dist/icons/frown.js b/dist/icons/frown.js
new file mode 100644
index 00000000..af610b5a
--- /dev/null
+++ b/dist/icons/frown.js
@@ -0,0 +1,51 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Circle, Line, Path } from 'svgs';
+var Frown = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Circle, {
+ cx: "12",
+ cy: "12",
+ r: "10"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M16 16s-1.5-2-4-2-4 2-4 2"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "9",
+ y1: "9",
+ x2: "9.01",
+ y2: "9"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "15",
+ y1: "9",
+ x2: "15.01",
+ y2: "9"
+ }));
+});
+Frown.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Frown.displayName = 'Frown';
+export default Frown;
\ No newline at end of file
diff --git a/dist/icons/gift.js b/dist/icons/gift.js
new file mode 100644
index 00000000..97a18d03
--- /dev/null
+++ b/dist/icons/gift.js
@@ -0,0 +1,51 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line, Path, Polyline, Rect } from 'svgs';
+var Gift = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Polyline, {
+ points: "20 12 20 22 4 22 4 12"
+ }), /*#__PURE__*/React.createElement(Rect, {
+ x: "2",
+ y: "7",
+ width: "20",
+ height: "5"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "12",
+ y1: "22",
+ x2: "12",
+ y2: "7"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M12 7H7.5a2.5 2.5 0 0 1 0-5C11 2 12 7 12 7z"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M12 7h4.5a2.5 2.5 0 0 0 0-5C13 2 12 7 12 7z"
+ }));
+});
+Gift.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Gift.displayName = 'Gift';
+export default Gift;
\ No newline at end of file
diff --git a/dist/icons/git-branch.js b/dist/icons/git-branch.js
new file mode 100644
index 00000000..ef7a6eaf
--- /dev/null
+++ b/dist/icons/git-branch.js
@@ -0,0 +1,50 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Circle, Line, Path } from 'svgs';
+var GitBranch = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Line, {
+ x1: "6",
+ y1: "3",
+ x2: "6",
+ y2: "15"
+ }), /*#__PURE__*/React.createElement(Circle, {
+ cx: "18",
+ cy: "6",
+ r: "3"
+ }), /*#__PURE__*/React.createElement(Circle, {
+ cx: "6",
+ cy: "18",
+ r: "3"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M18 9a9 9 0 0 1-9 9"
+ }));
+});
+GitBranch.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+GitBranch.displayName = 'GitBranch';
+export default GitBranch;
\ No newline at end of file
diff --git a/dist/icons/git-commit.js b/dist/icons/git-commit.js
new file mode 100644
index 00000000..2662386b
--- /dev/null
+++ b/dist/icons/git-commit.js
@@ -0,0 +1,49 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Circle, Line } from 'svgs';
+var GitCommit = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Circle, {
+ cx: "12",
+ cy: "12",
+ r: "4"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "1.05",
+ y1: "12",
+ x2: "7",
+ y2: "12"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "17.01",
+ y1: "12",
+ x2: "22.96",
+ y2: "12"
+ }));
+});
+GitCommit.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+GitCommit.displayName = 'GitCommit';
+export default GitCommit;
\ No newline at end of file
diff --git a/dist/icons/git-merge.js b/dist/icons/git-merge.js
new file mode 100644
index 00000000..9bec0e0c
--- /dev/null
+++ b/dist/icons/git-merge.js
@@ -0,0 +1,45 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Circle, Path } from 'svgs';
+var GitMerge = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Circle, {
+ cx: "18",
+ cy: "18",
+ r: "3"
+ }), /*#__PURE__*/React.createElement(Circle, {
+ cx: "6",
+ cy: "6",
+ r: "3"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M6 21V9a9 9 0 0 0 9 9"
+ }));
+});
+GitMerge.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+GitMerge.displayName = 'GitMerge';
+export default GitMerge;
\ No newline at end of file
diff --git a/dist/icons/git-pull-request.js b/dist/icons/git-pull-request.js
new file mode 100644
index 00000000..ba4f9576
--- /dev/null
+++ b/dist/icons/git-pull-request.js
@@ -0,0 +1,50 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Circle, Line, Path } from 'svgs';
+var GitPullRequest = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Circle, {
+ cx: "18",
+ cy: "18",
+ r: "3"
+ }), /*#__PURE__*/React.createElement(Circle, {
+ cx: "6",
+ cy: "6",
+ r: "3"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M13 6h3a2 2 0 0 1 2 2v7"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "6",
+ y1: "9",
+ x2: "6",
+ y2: "21"
+ }));
+});
+GitPullRequest.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+GitPullRequest.displayName = 'GitPullRequest';
+export default GitPullRequest;
\ No newline at end of file
diff --git a/dist/icons/github.js b/dist/icons/github.js
new file mode 100644
index 00000000..43504bca
--- /dev/null
+++ b/dist/icons/github.js
@@ -0,0 +1,37 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Path } from 'svgs';
+var GitHub = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M9 19c-5 1.5-5-2.5-7-3m14 6v-3.87a3.37 3.37 0 0 0-.94-2.61c3.14-.35 6.44-1.54 6.44-7A5.44 5.44 0 0 0 20 4.77 5.07 5.07 0 0 0 19.91 1S18.73.65 16 2.48a13.38 13.38 0 0 0-7 0C6.27.65 5.09 1 5.09 1A5.07 5.07 0 0 0 5 4.77a5.44 5.44 0 0 0-1.5 3.78c0 5.42 3.3 6.61 6.44 7A3.37 3.37 0 0 0 9 18.13V22"
+ }));
+});
+GitHub.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+GitHub.displayName = 'GitHub';
+export default GitHub;
\ No newline at end of file
diff --git a/dist/icons/gitlab.js b/dist/icons/gitlab.js
new file mode 100644
index 00000000..651fb6b0
--- /dev/null
+++ b/dist/icons/gitlab.js
@@ -0,0 +1,37 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Path } from 'svgs';
+var Gitlab = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M22.65 14.39L12 22.13 1.35 14.39a.84.84 0 0 1-.3-.94l1.22-3.78 2.44-7.51A.42.42 0 0 1 4.82 2a.43.43 0 0 1 .58 0 .42.42 0 0 1 .11.18l2.44 7.49h8.1l2.44-7.51A.42.42 0 0 1 18.6 2a.43.43 0 0 1 .58 0 .42.42 0 0 1 .11.18l2.44 7.51L23 13.45a.84.84 0 0 1-.35.94z"
+ }));
+});
+Gitlab.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Gitlab.displayName = 'Gitlab';
+export default Gitlab;
\ No newline at end of file
diff --git a/dist/icons/globe.js b/dist/icons/globe.js
new file mode 100644
index 00000000..4eb88231
--- /dev/null
+++ b/dist/icons/globe.js
@@ -0,0 +1,46 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Circle, Line, Path } from 'svgs';
+var Globe = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Circle, {
+ cx: "12",
+ cy: "12",
+ r: "10"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "2",
+ y1: "12",
+ x2: "22",
+ y2: "12"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z"
+ }));
+});
+Globe.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Globe.displayName = 'Globe';
+export default Globe;
\ No newline at end of file
diff --git a/dist/icons/grid.js b/dist/icons/grid.js
new file mode 100644
index 00000000..bd1346a1
--- /dev/null
+++ b/dist/icons/grid.js
@@ -0,0 +1,55 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Rect } from 'svgs';
+var Grid = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Rect, {
+ x: "3",
+ y: "3",
+ width: "7",
+ height: "7"
+ }), /*#__PURE__*/React.createElement(Rect, {
+ x: "14",
+ y: "3",
+ width: "7",
+ height: "7"
+ }), /*#__PURE__*/React.createElement(Rect, {
+ x: "14",
+ y: "14",
+ width: "7",
+ height: "7"
+ }), /*#__PURE__*/React.createElement(Rect, {
+ x: "3",
+ y: "14",
+ width: "7",
+ height: "7"
+ }));
+});
+Grid.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Grid.displayName = 'Grid';
+export default Grid;
\ No newline at end of file
diff --git a/dist/icons/hard-drive.js b/dist/icons/hard-drive.js
new file mode 100644
index 00000000..6dc67ca5
--- /dev/null
+++ b/dist/icons/hard-drive.js
@@ -0,0 +1,52 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line, Path } from 'svgs';
+var HardDrive = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Line, {
+ x1: "22",
+ y1: "12",
+ x2: "2",
+ y2: "12"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M5.45 5.11L2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "6",
+ y1: "16",
+ x2: "6.01",
+ y2: "16"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "10",
+ y1: "16",
+ x2: "10.01",
+ y2: "16"
+ }));
+});
+HardDrive.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+HardDrive.displayName = 'HardDrive';
+export default HardDrive;
\ No newline at end of file
diff --git a/dist/icons/hash.js b/dist/icons/hash.js
new file mode 100644
index 00000000..b85250f0
--- /dev/null
+++ b/dist/icons/hash.js
@@ -0,0 +1,55 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line } from 'svgs';
+var Hash = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Line, {
+ x1: "4",
+ y1: "9",
+ x2: "20",
+ y2: "9"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "4",
+ y1: "15",
+ x2: "20",
+ y2: "15"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "10",
+ y1: "3",
+ x2: "8",
+ y2: "21"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "16",
+ y1: "3",
+ x2: "14",
+ y2: "21"
+ }));
+});
+Hash.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Hash.displayName = 'Hash';
+export default Hash;
\ No newline at end of file
diff --git a/dist/icons/headphones.js b/dist/icons/headphones.js
new file mode 100644
index 00000000..771fe129
--- /dev/null
+++ b/dist/icons/headphones.js
@@ -0,0 +1,39 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Path } from 'svgs';
+var Headphones = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M3 18v-6a9 9 0 0 1 18 0v6"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M21 19a2 2 0 0 1-2 2h-1a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h3zM3 19a2 2 0 0 0 2 2h1a2 2 0 0 0 2-2v-3a2 2 0 0 0-2-2H3z"
+ }));
+});
+Headphones.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Headphones.displayName = 'Headphones';
+export default Headphones;
\ No newline at end of file
diff --git a/dist/icons/heart.js b/dist/icons/heart.js
new file mode 100644
index 00000000..823f329c
--- /dev/null
+++ b/dist/icons/heart.js
@@ -0,0 +1,37 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Path } from 'svgs';
+var Heart = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z"
+ }));
+});
+Heart.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Heart.displayName = 'Heart';
+export default Heart;
\ No newline at end of file
diff --git a/dist/icons/help-circle.js b/dist/icons/help-circle.js
new file mode 100644
index 00000000..24e79e29
--- /dev/null
+++ b/dist/icons/help-circle.js
@@ -0,0 +1,46 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Circle, Line, Path } from 'svgs';
+var HelpCircle = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Circle, {
+ cx: "12",
+ cy: "12",
+ r: "10"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "12",
+ y1: "17",
+ x2: "12.01",
+ y2: "17"
+ }));
+});
+HelpCircle.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+HelpCircle.displayName = 'HelpCircle';
+export default HelpCircle;
\ No newline at end of file
diff --git a/dist/icons/hexagon.js b/dist/icons/hexagon.js
new file mode 100644
index 00000000..bfa0fe34
--- /dev/null
+++ b/dist/icons/hexagon.js
@@ -0,0 +1,37 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Path } from 'svgs';
+var Hexagon = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z"
+ }));
+});
+Hexagon.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Hexagon.displayName = 'Hexagon';
+export default Hexagon;
\ No newline at end of file
diff --git a/dist/icons/home.js b/dist/icons/home.js
new file mode 100644
index 00000000..19d81526
--- /dev/null
+++ b/dist/icons/home.js
@@ -0,0 +1,39 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Path, Polyline } from 'svgs';
+var Home = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"
+ }), /*#__PURE__*/React.createElement(Polyline, {
+ points: "9 22 9 12 15 12 15 22"
+ }));
+});
+Home.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Home.displayName = 'Home';
+export default Home;
\ No newline at end of file
diff --git a/dist/icons/image.js b/dist/icons/image.js
new file mode 100644
index 00000000..ccf8d20a
--- /dev/null
+++ b/dist/icons/image.js
@@ -0,0 +1,48 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Circle, Polyline, Rect } from 'svgs';
+var Image = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Rect, {
+ x: "3",
+ y: "3",
+ width: "18",
+ height: "18",
+ rx: "2",
+ ry: "2"
+ }), /*#__PURE__*/React.createElement(Circle, {
+ cx: "8.5",
+ cy: "8.5",
+ r: "1.5"
+ }), /*#__PURE__*/React.createElement(Polyline, {
+ points: "21 15 16 10 5 21"
+ }));
+});
+Image.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Image.displayName = 'Image';
+export default Image;
\ No newline at end of file
diff --git a/dist/icons/inbox.js b/dist/icons/inbox.js
new file mode 100644
index 00000000..47a1d0c3
--- /dev/null
+++ b/dist/icons/inbox.js
@@ -0,0 +1,39 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Path, Polyline } from 'svgs';
+var Inbox = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Polyline, {
+ points: "22 12 16 12 14 15 10 15 8 12 2 12"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M5.45 5.11L2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z"
+ }));
+});
+Inbox.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Inbox.displayName = 'Inbox';
+export default Inbox;
\ No newline at end of file
diff --git a/dist/icons/info.js b/dist/icons/info.js
new file mode 100644
index 00000000..1142f9fd
--- /dev/null
+++ b/dist/icons/info.js
@@ -0,0 +1,49 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Circle, Line } from 'svgs';
+var Info = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Circle, {
+ cx: "12",
+ cy: "12",
+ r: "10"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "12",
+ y1: "16",
+ x2: "12",
+ y2: "12"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "12",
+ y1: "8",
+ x2: "12.01",
+ y2: "8"
+ }));
+});
+Info.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Info.displayName = 'Info';
+export default Info;
\ No newline at end of file
diff --git a/dist/icons/instagram.js b/dist/icons/instagram.js
new file mode 100644
index 00000000..6266dab0
--- /dev/null
+++ b/dist/icons/instagram.js
@@ -0,0 +1,49 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line, Path, Rect } from 'svgs';
+var Instagram = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Rect, {
+ x: "2",
+ y: "2",
+ width: "20",
+ height: "20",
+ rx: "5",
+ ry: "5"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "17.5",
+ y1: "6.5",
+ x2: "17.51",
+ y2: "6.5"
+ }));
+});
+Instagram.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Instagram.displayName = 'Instagram';
+export default Instagram;
\ No newline at end of file
diff --git a/dist/icons/italic.js b/dist/icons/italic.js
new file mode 100644
index 00000000..312250c9
--- /dev/null
+++ b/dist/icons/italic.js
@@ -0,0 +1,50 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line } from 'svgs';
+var Italic = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Line, {
+ x1: "19",
+ y1: "4",
+ x2: "10",
+ y2: "4"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "14",
+ y1: "20",
+ x2: "5",
+ y2: "20"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "15",
+ y1: "4",
+ x2: "9",
+ y2: "20"
+ }));
+});
+Italic.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Italic.displayName = 'Italic';
+export default Italic;
\ No newline at end of file
diff --git a/dist/icons/key.js b/dist/icons/key.js
new file mode 100644
index 00000000..bf487cad
--- /dev/null
+++ b/dist/icons/key.js
@@ -0,0 +1,37 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Path } from 'svgs';
+var Key = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M21 2l-2 2m-7.61 7.61a5.5 5.5 0 1 1-7.778 7.778 5.5 5.5 0 0 1 7.777-7.777zm0 0L15.5 7.5m0 0l3 3L22 7l-3-3m-3.5 3.5L19 4"
+ }));
+});
+Key.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Key.displayName = 'Key';
+export default Key;
\ No newline at end of file
diff --git a/dist/icons/layers.js b/dist/icons/layers.js
new file mode 100644
index 00000000..4fd743fa
--- /dev/null
+++ b/dist/icons/layers.js
@@ -0,0 +1,41 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Polygon, Polyline } from 'svgs';
+var Layers = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Polygon, {
+ points: "12 2 2 7 12 12 22 7 12 2"
+ }), /*#__PURE__*/React.createElement(Polyline, {
+ points: "2 17 12 22 22 17"
+ }), /*#__PURE__*/React.createElement(Polyline, {
+ points: "2 12 12 17 22 12"
+ }));
+});
+Layers.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Layers.displayName = 'Layers';
+export default Layers;
\ No newline at end of file
diff --git a/dist/icons/layout.js b/dist/icons/layout.js
new file mode 100644
index 00000000..3eda715b
--- /dev/null
+++ b/dist/icons/layout.js
@@ -0,0 +1,52 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line, Rect } from 'svgs';
+var Layout = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Rect, {
+ x: "3",
+ y: "3",
+ width: "18",
+ height: "18",
+ rx: "2",
+ ry: "2"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "3",
+ y1: "9",
+ x2: "21",
+ y2: "9"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "9",
+ y1: "21",
+ x2: "9",
+ y2: "9"
+ }));
+});
+Layout.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Layout.displayName = 'Layout';
+export default Layout;
\ No newline at end of file
diff --git a/dist/icons/life-buoy.js b/dist/icons/life-buoy.js
new file mode 100644
index 00000000..d6a029ab
--- /dev/null
+++ b/dist/icons/life-buoy.js
@@ -0,0 +1,68 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Circle, Line } from 'svgs';
+var LifeBuoy = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Circle, {
+ cx: "12",
+ cy: "12",
+ r: "10"
+ }), /*#__PURE__*/React.createElement(Circle, {
+ cx: "12",
+ cy: "12",
+ r: "4"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "4.93",
+ y1: "4.93",
+ x2: "9.17",
+ y2: "9.17"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "14.83",
+ y1: "14.83",
+ x2: "19.07",
+ y2: "19.07"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "14.83",
+ y1: "9.17",
+ x2: "19.07",
+ y2: "4.93"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "14.83",
+ y1: "9.17",
+ x2: "18.36",
+ y2: "5.64"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "4.93",
+ y1: "19.07",
+ x2: "9.17",
+ y2: "14.83"
+ }));
+});
+LifeBuoy.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+LifeBuoy.displayName = 'LifeBuoy';
+export default LifeBuoy;
\ No newline at end of file
diff --git a/dist/icons/link-2.js b/dist/icons/link-2.js
new file mode 100644
index 00000000..bbb07c6a
--- /dev/null
+++ b/dist/icons/link-2.js
@@ -0,0 +1,42 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line, Path } from 'svgs';
+var Link2 = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M15 7h3a5 5 0 0 1 5 5 5 5 0 0 1-5 5h-3m-6 0H6a5 5 0 0 1-5-5 5 5 0 0 1 5-5h3"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "8",
+ y1: "12",
+ x2: "16",
+ y2: "12"
+ }));
+});
+Link2.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Link2.displayName = 'Link2';
+export default Link2;
\ No newline at end of file
diff --git a/dist/icons/link.js b/dist/icons/link.js
new file mode 100644
index 00000000..25fd5361
--- /dev/null
+++ b/dist/icons/link.js
@@ -0,0 +1,39 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Path } from 'svgs';
+var Link = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"
+ }));
+});
+Link.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Link.displayName = 'Link';
+export default Link;
\ No newline at end of file
diff --git a/dist/icons/linkedin.js b/dist/icons/linkedin.js
new file mode 100644
index 00000000..9bf60c57
--- /dev/null
+++ b/dist/icons/linkedin.js
@@ -0,0 +1,46 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Circle, Path, Rect } from 'svgs';
+var Linkedin = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M16 8a6 6 0 0 1 6 6v7h-4v-7a2 2 0 0 0-2-2 2 2 0 0 0-2 2v7h-4v-7a6 6 0 0 1 6-6z"
+ }), /*#__PURE__*/React.createElement(Rect, {
+ x: "2",
+ y: "9",
+ width: "4",
+ height: "12"
+ }), /*#__PURE__*/React.createElement(Circle, {
+ cx: "4",
+ cy: "4",
+ r: "2"
+ }));
+});
+Linkedin.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Linkedin.displayName = 'Linkedin';
+export default Linkedin;
\ No newline at end of file
diff --git a/dist/icons/list.js b/dist/icons/list.js
new file mode 100644
index 00000000..0e23ab6d
--- /dev/null
+++ b/dist/icons/list.js
@@ -0,0 +1,65 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line } from 'svgs';
+var List = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Line, {
+ x1: "8",
+ y1: "6",
+ x2: "21",
+ y2: "6"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "8",
+ y1: "12",
+ x2: "21",
+ y2: "12"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "8",
+ y1: "18",
+ x2: "21",
+ y2: "18"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "3",
+ y1: "6",
+ x2: "3.01",
+ y2: "6"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "3",
+ y1: "12",
+ x2: "3.01",
+ y2: "12"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "3",
+ y1: "18",
+ x2: "3.01",
+ y2: "18"
+ }));
+});
+List.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+List.displayName = 'List';
+export default List;
\ No newline at end of file
diff --git a/dist/icons/loader.js b/dist/icons/loader.js
new file mode 100644
index 00000000..1cdf83a2
--- /dev/null
+++ b/dist/icons/loader.js
@@ -0,0 +1,75 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line } from 'svgs';
+var Loader = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Line, {
+ x1: "12",
+ y1: "2",
+ x2: "12",
+ y2: "6"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "12",
+ y1: "18",
+ x2: "12",
+ y2: "22"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "4.93",
+ y1: "4.93",
+ x2: "7.76",
+ y2: "7.76"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "16.24",
+ y1: "16.24",
+ x2: "19.07",
+ y2: "19.07"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "2",
+ y1: "12",
+ x2: "6",
+ y2: "12"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "18",
+ y1: "12",
+ x2: "22",
+ y2: "12"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "4.93",
+ y1: "19.07",
+ x2: "7.76",
+ y2: "16.24"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "16.24",
+ y1: "7.76",
+ x2: "19.07",
+ y2: "4.93"
+ }));
+});
+Loader.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Loader.displayName = 'Loader';
+export default Loader;
\ No newline at end of file
diff --git a/dist/icons/lock.js b/dist/icons/lock.js
new file mode 100644
index 00000000..219b1076
--- /dev/null
+++ b/dist/icons/lock.js
@@ -0,0 +1,44 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Path, Rect } from 'svgs';
+var Lock = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Rect, {
+ x: "3",
+ y: "11",
+ width: "18",
+ height: "11",
+ rx: "2",
+ ry: "2"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M7 11V7a5 5 0 0 1 10 0v4"
+ }));
+});
+Lock.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Lock.displayName = 'Lock';
+export default Lock;
\ No newline at end of file
diff --git a/dist/icons/log-in.js b/dist/icons/log-in.js
new file mode 100644
index 00000000..6d031bb1
--- /dev/null
+++ b/dist/icons/log-in.js
@@ -0,0 +1,44 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line, Path, Polyline } from 'svgs';
+var LogIn = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M15 3h4a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-4"
+ }), /*#__PURE__*/React.createElement(Polyline, {
+ points: "10 17 15 12 10 7"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "15",
+ y1: "12",
+ x2: "3",
+ y2: "12"
+ }));
+});
+LogIn.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+LogIn.displayName = 'LogIn';
+export default LogIn;
\ No newline at end of file
diff --git a/dist/icons/log-out.js b/dist/icons/log-out.js
new file mode 100644
index 00000000..81ecc015
--- /dev/null
+++ b/dist/icons/log-out.js
@@ -0,0 +1,44 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line, Path, Polyline } from 'svgs';
+var LogOut = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4"
+ }), /*#__PURE__*/React.createElement(Polyline, {
+ points: "16 17 21 12 16 7"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "21",
+ y1: "12",
+ x2: "9",
+ y2: "12"
+ }));
+});
+LogOut.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+LogOut.displayName = 'LogOut';
+export default LogOut;
\ No newline at end of file
diff --git a/dist/icons/mail.js b/dist/icons/mail.js
new file mode 100644
index 00000000..328302d1
--- /dev/null
+++ b/dist/icons/mail.js
@@ -0,0 +1,39 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Path, Polyline } from 'svgs';
+var Mail = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z"
+ }), /*#__PURE__*/React.createElement(Polyline, {
+ points: "22,6 12,13 2,6"
+ }));
+});
+Mail.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Mail.displayName = 'Mail';
+export default Mail;
\ No newline at end of file
diff --git a/dist/icons/map-pin.js b/dist/icons/map-pin.js
new file mode 100644
index 00000000..3c5adb66
--- /dev/null
+++ b/dist/icons/map-pin.js
@@ -0,0 +1,41 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Circle, Path } from 'svgs';
+var MapPin = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z"
+ }), /*#__PURE__*/React.createElement(Circle, {
+ cx: "12",
+ cy: "10",
+ r: "3"
+ }));
+});
+MapPin.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+MapPin.displayName = 'MapPin';
+export default MapPin;
\ No newline at end of file
diff --git a/dist/icons/map.js b/dist/icons/map.js
new file mode 100644
index 00000000..1f65050b
--- /dev/null
+++ b/dist/icons/map.js
@@ -0,0 +1,47 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line, Polygon } from 'svgs';
+var Map = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Polygon, {
+ points: "1 6 1 22 8 18 16 22 23 18 23 2 16 6 8 2 1 6"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "8",
+ y1: "2",
+ x2: "8",
+ y2: "18"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "16",
+ y1: "6",
+ x2: "16",
+ y2: "22"
+ }));
+});
+Map.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Map.displayName = 'Map';
+export default Map;
\ No newline at end of file
diff --git a/dist/icons/maximize-2.js b/dist/icons/maximize-2.js
new file mode 100644
index 00000000..ff27249d
--- /dev/null
+++ b/dist/icons/maximize-2.js
@@ -0,0 +1,49 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line, Polyline } from 'svgs';
+var Maximize2 = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Polyline, {
+ points: "15 3 21 3 21 9"
+ }), /*#__PURE__*/React.createElement(Polyline, {
+ points: "9 21 3 21 3 15"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "21",
+ y1: "3",
+ x2: "14",
+ y2: "10"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "3",
+ y1: "21",
+ x2: "10",
+ y2: "14"
+ }));
+});
+Maximize2.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Maximize2.displayName = 'Maximize2';
+export default Maximize2;
\ No newline at end of file
diff --git a/dist/icons/maximize.js b/dist/icons/maximize.js
new file mode 100644
index 00000000..292ceb27
--- /dev/null
+++ b/dist/icons/maximize.js
@@ -0,0 +1,37 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Path } from 'svgs';
+var Maximize = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M8 3H5a2 2 0 0 0-2 2v3m18 0V5a2 2 0 0 0-2-2h-3m0 18h3a2 2 0 0 0 2-2v-3M3 16v3a2 2 0 0 0 2 2h3"
+ }));
+});
+Maximize.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Maximize.displayName = 'Maximize';
+export default Maximize;
\ No newline at end of file
diff --git a/dist/icons/meh.js b/dist/icons/meh.js
new file mode 100644
index 00000000..c34d9eb7
--- /dev/null
+++ b/dist/icons/meh.js
@@ -0,0 +1,54 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Circle, Line } from 'svgs';
+var Meh = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Circle, {
+ cx: "12",
+ cy: "12",
+ r: "10"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "8",
+ y1: "15",
+ x2: "16",
+ y2: "15"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "9",
+ y1: "9",
+ x2: "9.01",
+ y2: "9"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "15",
+ y1: "9",
+ x2: "15.01",
+ y2: "9"
+ }));
+});
+Meh.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Meh.displayName = 'Meh';
+export default Meh;
\ No newline at end of file
diff --git a/dist/icons/menu.js b/dist/icons/menu.js
new file mode 100644
index 00000000..2b2b25dc
--- /dev/null
+++ b/dist/icons/menu.js
@@ -0,0 +1,50 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line } from 'svgs';
+var Menu = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Line, {
+ x1: "3",
+ y1: "12",
+ x2: "21",
+ y2: "12"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "3",
+ y1: "6",
+ x2: "21",
+ y2: "6"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "3",
+ y1: "18",
+ x2: "21",
+ y2: "18"
+ }));
+});
+Menu.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Menu.displayName = 'Menu';
+export default Menu;
\ No newline at end of file
diff --git a/dist/icons/message-circle.js b/dist/icons/message-circle.js
new file mode 100644
index 00000000..2d33eb48
--- /dev/null
+++ b/dist/icons/message-circle.js
@@ -0,0 +1,37 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Path } from 'svgs';
+var MessageCircle = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M21 11.5a8.38 8.38 0 0 1-.9 3.8 8.5 8.5 0 0 1-7.6 4.7 8.38 8.38 0 0 1-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 0 1-.9-3.8 8.5 8.5 0 0 1 4.7-7.6 8.38 8.38 0 0 1 3.8-.9h.5a8.48 8.48 0 0 1 8 8v.5z"
+ }));
+});
+MessageCircle.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+MessageCircle.displayName = 'MessageCircle';
+export default MessageCircle;
\ No newline at end of file
diff --git a/dist/icons/message-square.js b/dist/icons/message-square.js
new file mode 100644
index 00000000..3fedab3e
--- /dev/null
+++ b/dist/icons/message-square.js
@@ -0,0 +1,37 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Path } from 'svgs';
+var MessageSquare = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z"
+ }));
+});
+MessageSquare.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+MessageSquare.displayName = 'MessageSquare';
+export default MessageSquare;
\ No newline at end of file
diff --git a/dist/icons/mic-off.js b/dist/icons/mic-off.js
new file mode 100644
index 00000000..3a39ae57
--- /dev/null
+++ b/dist/icons/mic-off.js
@@ -0,0 +1,54 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line, Path } from 'svgs';
+var MicOff = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Line, {
+ x1: "1",
+ y1: "1",
+ x2: "23",
+ y2: "23"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M9 9v3a3 3 0 0 0 5.12 2.12M15 9.34V4a3 3 0 0 0-5.94-.6"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M17 16.95A7 7 0 0 1 5 12v-2m14 0v2a7 7 0 0 1-.11 1.23"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "12",
+ y1: "19",
+ x2: "12",
+ y2: "23"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "8",
+ y1: "23",
+ x2: "16",
+ y2: "23"
+ }));
+});
+MicOff.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+MicOff.displayName = 'MicOff';
+export default MicOff;
\ No newline at end of file
diff --git a/dist/icons/mic.js b/dist/icons/mic.js
new file mode 100644
index 00000000..1bd28809
--- /dev/null
+++ b/dist/icons/mic.js
@@ -0,0 +1,49 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line, Path } from 'svgs';
+var Mic = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M12 1a3 3 0 0 0-3 3v8a3 3 0 0 0 6 0V4a3 3 0 0 0-3-3z"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M19 10v2a7 7 0 0 1-14 0v-2"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "12",
+ y1: "19",
+ x2: "12",
+ y2: "23"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "8",
+ y1: "23",
+ x2: "16",
+ y2: "23"
+ }));
+});
+Mic.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Mic.displayName = 'Mic';
+export default Mic;
\ No newline at end of file
diff --git a/dist/icons/minimize-2.js b/dist/icons/minimize-2.js
new file mode 100644
index 00000000..8d9d1292
--- /dev/null
+++ b/dist/icons/minimize-2.js
@@ -0,0 +1,49 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line, Polyline } from 'svgs';
+var Minimize2 = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Polyline, {
+ points: "4 14 10 14 10 20"
+ }), /*#__PURE__*/React.createElement(Polyline, {
+ points: "20 10 14 10 14 4"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "14",
+ y1: "10",
+ x2: "21",
+ y2: "3"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "3",
+ y1: "21",
+ x2: "10",
+ y2: "14"
+ }));
+});
+Minimize2.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Minimize2.displayName = 'Minimize2';
+export default Minimize2;
\ No newline at end of file
diff --git a/dist/icons/minimize.js b/dist/icons/minimize.js
new file mode 100644
index 00000000..00d5f2dc
--- /dev/null
+++ b/dist/icons/minimize.js
@@ -0,0 +1,37 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Path } from 'svgs';
+var Minimize = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M8 3v3a2 2 0 0 1-2 2H3m18 0h-3a2 2 0 0 1-2-2V3m0 18v-3a2 2 0 0 1 2-2h3M3 16h3a2 2 0 0 1 2 2v3"
+ }));
+});
+Minimize.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Minimize.displayName = 'Minimize';
+export default Minimize;
\ No newline at end of file
diff --git a/dist/icons/minus-circle.js b/dist/icons/minus-circle.js
new file mode 100644
index 00000000..99cbb430
--- /dev/null
+++ b/dist/icons/minus-circle.js
@@ -0,0 +1,44 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Circle, Line } from 'svgs';
+var MinusCircle = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Circle, {
+ cx: "12",
+ cy: "12",
+ r: "10"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "8",
+ y1: "12",
+ x2: "16",
+ y2: "12"
+ }));
+});
+MinusCircle.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+MinusCircle.displayName = 'MinusCircle';
+export default MinusCircle;
\ No newline at end of file
diff --git a/dist/icons/minus-square.js b/dist/icons/minus-square.js
new file mode 100644
index 00000000..6a521a26
--- /dev/null
+++ b/dist/icons/minus-square.js
@@ -0,0 +1,47 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line, Rect } from 'svgs';
+var MinusSquare = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Rect, {
+ x: "3",
+ y: "3",
+ width: "18",
+ height: "18",
+ rx: "2",
+ ry: "2"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "8",
+ y1: "12",
+ x2: "16",
+ y2: "12"
+ }));
+});
+MinusSquare.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+MinusSquare.displayName = 'MinusSquare';
+export default MinusSquare;
\ No newline at end of file
diff --git a/dist/icons/minus.js b/dist/icons/minus.js
new file mode 100644
index 00000000..84f8e34c
--- /dev/null
+++ b/dist/icons/minus.js
@@ -0,0 +1,40 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line } from 'svgs';
+var Minus = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Line, {
+ x1: "5",
+ y1: "12",
+ x2: "19",
+ y2: "12"
+ }));
+});
+Minus.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Minus.displayName = 'Minus';
+export default Minus;
\ No newline at end of file
diff --git a/dist/icons/monitor.js b/dist/icons/monitor.js
new file mode 100644
index 00000000..44db1ac8
--- /dev/null
+++ b/dist/icons/monitor.js
@@ -0,0 +1,52 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line, Rect } from 'svgs';
+var Monitor = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Rect, {
+ x: "2",
+ y: "3",
+ width: "20",
+ height: "14",
+ rx: "2",
+ ry: "2"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "8",
+ y1: "21",
+ x2: "16",
+ y2: "21"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "12",
+ y1: "17",
+ x2: "12",
+ y2: "21"
+ }));
+});
+Monitor.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Monitor.displayName = 'Monitor';
+export default Monitor;
\ No newline at end of file
diff --git a/dist/icons/moon.js b/dist/icons/moon.js
new file mode 100644
index 00000000..98e6a4a2
--- /dev/null
+++ b/dist/icons/moon.js
@@ -0,0 +1,37 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Path } from 'svgs';
+var Moon = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"
+ }));
+});
+Moon.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Moon.displayName = 'Moon';
+export default Moon;
\ No newline at end of file
diff --git a/dist/icons/more-horizontal.js b/dist/icons/more-horizontal.js
new file mode 100644
index 00000000..1220f56b
--- /dev/null
+++ b/dist/icons/more-horizontal.js
@@ -0,0 +1,47 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Circle } from 'svgs';
+var MoreHorizontal = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Circle, {
+ cx: "12",
+ cy: "12",
+ r: "1"
+ }), /*#__PURE__*/React.createElement(Circle, {
+ cx: "19",
+ cy: "12",
+ r: "1"
+ }), /*#__PURE__*/React.createElement(Circle, {
+ cx: "5",
+ cy: "12",
+ r: "1"
+ }));
+});
+MoreHorizontal.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+MoreHorizontal.displayName = 'MoreHorizontal';
+export default MoreHorizontal;
\ No newline at end of file
diff --git a/dist/icons/more-vertical.js b/dist/icons/more-vertical.js
new file mode 100644
index 00000000..61bbc8e9
--- /dev/null
+++ b/dist/icons/more-vertical.js
@@ -0,0 +1,47 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Circle } from 'svgs';
+var MoreVertical = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Circle, {
+ cx: "12",
+ cy: "12",
+ r: "1"
+ }), /*#__PURE__*/React.createElement(Circle, {
+ cx: "12",
+ cy: "5",
+ r: "1"
+ }), /*#__PURE__*/React.createElement(Circle, {
+ cx: "12",
+ cy: "19",
+ r: "1"
+ }));
+});
+MoreVertical.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+MoreVertical.displayName = 'MoreVertical';
+export default MoreVertical;
\ No newline at end of file
diff --git a/dist/icons/mouse-pointer.js b/dist/icons/mouse-pointer.js
new file mode 100644
index 00000000..3c6ae7c4
--- /dev/null
+++ b/dist/icons/mouse-pointer.js
@@ -0,0 +1,39 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Path } from 'svgs';
+var MousePointer = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M3 3l7.07 16.97 2.51-7.39 7.39-2.51L3 3z"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M13 13l6 6"
+ }));
+});
+MousePointer.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+MousePointer.displayName = 'MousePointer';
+export default MousePointer;
\ No newline at end of file
diff --git a/dist/icons/move.js b/dist/icons/move.js
new file mode 100644
index 00000000..fc836f87
--- /dev/null
+++ b/dist/icons/move.js
@@ -0,0 +1,53 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line, Polyline } from 'svgs';
+var Move = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Polyline, {
+ points: "5 9 2 12 5 15"
+ }), /*#__PURE__*/React.createElement(Polyline, {
+ points: "9 5 12 2 15 5"
+ }), /*#__PURE__*/React.createElement(Polyline, {
+ points: "15 19 12 22 9 19"
+ }), /*#__PURE__*/React.createElement(Polyline, {
+ points: "19 9 22 12 19 15"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "2",
+ y1: "12",
+ x2: "22",
+ y2: "12"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "12",
+ y1: "2",
+ x2: "12",
+ y2: "22"
+ }));
+});
+Move.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Move.displayName = 'Move';
+export default Move;
\ No newline at end of file
diff --git a/dist/icons/music.js b/dist/icons/music.js
new file mode 100644
index 00000000..ff07d03f
--- /dev/null
+++ b/dist/icons/music.js
@@ -0,0 +1,45 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Circle, Path } from 'svgs';
+var Music = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M9 18V5l12-2v13"
+ }), /*#__PURE__*/React.createElement(Circle, {
+ cx: "6",
+ cy: "18",
+ r: "3"
+ }), /*#__PURE__*/React.createElement(Circle, {
+ cx: "18",
+ cy: "16",
+ r: "3"
+ }));
+});
+Music.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Music.displayName = 'Music';
+export default Music;
\ No newline at end of file
diff --git a/dist/icons/navigation-2.js b/dist/icons/navigation-2.js
new file mode 100644
index 00000000..0726207f
--- /dev/null
+++ b/dist/icons/navigation-2.js
@@ -0,0 +1,37 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Polygon } from 'svgs';
+var Navigation2 = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Polygon, {
+ points: "12 2 19 21 12 17 5 21 12 2"
+ }));
+});
+Navigation2.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Navigation2.displayName = 'Navigation2';
+export default Navigation2;
\ No newline at end of file
diff --git a/dist/icons/navigation.js b/dist/icons/navigation.js
new file mode 100644
index 00000000..975f1b01
--- /dev/null
+++ b/dist/icons/navigation.js
@@ -0,0 +1,37 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Polygon } from 'svgs';
+var Navigation = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Polygon, {
+ points: "3 11 22 2 13 21 11 13 3 11"
+ }));
+});
+Navigation.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Navigation.displayName = 'Navigation';
+export default Navigation;
\ No newline at end of file
diff --git a/dist/icons/octagon.js b/dist/icons/octagon.js
new file mode 100644
index 00000000..c97ad82f
--- /dev/null
+++ b/dist/icons/octagon.js
@@ -0,0 +1,37 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Polygon } from 'svgs';
+var Octagon = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Polygon, {
+ points: "7.86 2 16.14 2 22 7.86 22 16.14 16.14 22 7.86 22 2 16.14 2 7.86 7.86 2"
+ }));
+});
+Octagon.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Octagon.displayName = 'Octagon';
+export default Octagon;
\ No newline at end of file
diff --git a/dist/icons/package.js b/dist/icons/package.js
new file mode 100644
index 00000000..fce0f9b6
--- /dev/null
+++ b/dist/icons/package.js
@@ -0,0 +1,49 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line, Path, Polyline } from 'svgs';
+var Package = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Line, {
+ x1: "16.5",
+ y1: "9.4",
+ x2: "7.5",
+ y2: "4.21"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z"
+ }), /*#__PURE__*/React.createElement(Polyline, {
+ points: "3.27 6.96 12 12.01 20.73 6.96"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "12",
+ y1: "22.08",
+ x2: "12",
+ y2: "12"
+ }));
+});
+Package.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Package.displayName = 'Package';
+export default Package;
\ No newline at end of file
diff --git a/dist/icons/paperclip.js b/dist/icons/paperclip.js
new file mode 100644
index 00000000..32e328f4
--- /dev/null
+++ b/dist/icons/paperclip.js
@@ -0,0 +1,37 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Path } from 'svgs';
+var Paperclip = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M21.44 11.05l-9.19 9.19a6 6 0 0 1-8.49-8.49l9.19-9.19a4 4 0 0 1 5.66 5.66l-9.2 9.19a2 2 0 0 1-2.83-2.83l8.49-8.48"
+ }));
+});
+Paperclip.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Paperclip.displayName = 'Paperclip';
+export default Paperclip;
\ No newline at end of file
diff --git a/dist/icons/pause-circle.js b/dist/icons/pause-circle.js
new file mode 100644
index 00000000..451e8278
--- /dev/null
+++ b/dist/icons/pause-circle.js
@@ -0,0 +1,49 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Circle, Line } from 'svgs';
+var PauseCircle = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Circle, {
+ cx: "12",
+ cy: "12",
+ r: "10"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "10",
+ y1: "15",
+ x2: "10",
+ y2: "9"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "14",
+ y1: "15",
+ x2: "14",
+ y2: "9"
+ }));
+});
+PauseCircle.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+PauseCircle.displayName = 'PauseCircle';
+export default PauseCircle;
\ No newline at end of file
diff --git a/dist/icons/pause.js b/dist/icons/pause.js
new file mode 100644
index 00000000..4375172c
--- /dev/null
+++ b/dist/icons/pause.js
@@ -0,0 +1,45 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Rect } from 'svgs';
+var Pause = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Rect, {
+ x: "6",
+ y: "4",
+ width: "4",
+ height: "16"
+ }), /*#__PURE__*/React.createElement(Rect, {
+ x: "14",
+ y: "4",
+ width: "4",
+ height: "16"
+ }));
+});
+Pause.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Pause.displayName = 'Pause';
+export default Pause;
\ No newline at end of file
diff --git a/dist/icons/pen-tool.js b/dist/icons/pen-tool.js
new file mode 100644
index 00000000..11f73c8e
--- /dev/null
+++ b/dist/icons/pen-tool.js
@@ -0,0 +1,45 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Circle, Path } from 'svgs';
+var PenTool = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M12 19l7-7 3 3-7 7-3-3z"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M18 13l-1.5-7.5L2 2l3.5 14.5L13 18l5-5z"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M2 2l7.586 7.586"
+ }), /*#__PURE__*/React.createElement(Circle, {
+ cx: "11",
+ cy: "11",
+ r: "2"
+ }));
+});
+PenTool.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+PenTool.displayName = 'PenTool';
+export default PenTool;
\ No newline at end of file
diff --git a/dist/icons/percent.js b/dist/icons/percent.js
new file mode 100644
index 00000000..5bce8b15
--- /dev/null
+++ b/dist/icons/percent.js
@@ -0,0 +1,48 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Circle, Line } from 'svgs';
+var Percent = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Line, {
+ x1: "19",
+ y1: "5",
+ x2: "5",
+ y2: "19"
+ }), /*#__PURE__*/React.createElement(Circle, {
+ cx: "6.5",
+ cy: "6.5",
+ r: "2.5"
+ }), /*#__PURE__*/React.createElement(Circle, {
+ cx: "17.5",
+ cy: "17.5",
+ r: "2.5"
+ }));
+});
+Percent.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Percent.displayName = 'Percent';
+export default Percent;
\ No newline at end of file
diff --git a/dist/icons/phone-call.js b/dist/icons/phone-call.js
new file mode 100644
index 00000000..3a10ed43
--- /dev/null
+++ b/dist/icons/phone-call.js
@@ -0,0 +1,37 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Path } from 'svgs';
+var PhoneCall = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M15.05 5A5 5 0 0 1 19 8.95M15.05 1A9 9 0 0 1 23 8.94m-1 7.98v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"
+ }));
+});
+PhoneCall.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+PhoneCall.displayName = 'PhoneCall';
+export default PhoneCall;
\ No newline at end of file
diff --git a/dist/icons/phone-forwarded.js b/dist/icons/phone-forwarded.js
new file mode 100644
index 00000000..4446f6a7
--- /dev/null
+++ b/dist/icons/phone-forwarded.js
@@ -0,0 +1,44 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line, Path, Polyline } from 'svgs';
+var PhoneForwarded = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Polyline, {
+ points: "19 1 23 5 19 9"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "15",
+ y1: "5",
+ x2: "23",
+ y2: "5"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"
+ }));
+});
+PhoneForwarded.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+PhoneForwarded.displayName = 'PhoneForwarded';
+export default PhoneForwarded;
\ No newline at end of file
diff --git a/dist/icons/phone-incoming.js b/dist/icons/phone-incoming.js
new file mode 100644
index 00000000..ddbcfc14
--- /dev/null
+++ b/dist/icons/phone-incoming.js
@@ -0,0 +1,44 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line, Path, Polyline } from 'svgs';
+var PhoneIncoming = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Polyline, {
+ points: "16 2 16 8 22 8"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "23",
+ y1: "1",
+ x2: "16",
+ y2: "8"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"
+ }));
+});
+PhoneIncoming.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+PhoneIncoming.displayName = 'PhoneIncoming';
+export default PhoneIncoming;
\ No newline at end of file
diff --git a/dist/icons/phone-missed.js b/dist/icons/phone-missed.js
new file mode 100644
index 00000000..e199d520
--- /dev/null
+++ b/dist/icons/phone-missed.js
@@ -0,0 +1,47 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line, Path } from 'svgs';
+var PhoneMissed = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Line, {
+ x1: "23",
+ y1: "1",
+ x2: "17",
+ y2: "7"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "17",
+ y1: "1",
+ x2: "23",
+ y2: "7"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"
+ }));
+});
+PhoneMissed.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+PhoneMissed.displayName = 'PhoneMissed';
+export default PhoneMissed;
\ No newline at end of file
diff --git a/dist/icons/phone-off.js b/dist/icons/phone-off.js
new file mode 100644
index 00000000..6a2366a8
--- /dev/null
+++ b/dist/icons/phone-off.js
@@ -0,0 +1,42 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line, Path } from 'svgs';
+var PhoneOff = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M10.68 13.31a16 16 0 0 0 3.41 2.6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7 2 2 0 0 1 1.72 2v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.42 19.42 0 0 1-3.33-2.67m-2.67-3.34a19.79 19.79 0 0 1-3.07-8.63A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "23",
+ y1: "1",
+ x2: "1",
+ y2: "23"
+ }));
+});
+PhoneOff.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+PhoneOff.displayName = 'PhoneOff';
+export default PhoneOff;
\ No newline at end of file
diff --git a/dist/icons/phone-outgoing.js b/dist/icons/phone-outgoing.js
new file mode 100644
index 00000000..b752c6d9
--- /dev/null
+++ b/dist/icons/phone-outgoing.js
@@ -0,0 +1,44 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line, Path, Polyline } from 'svgs';
+var PhoneOutgoing = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Polyline, {
+ points: "23 7 23 1 17 1"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "16",
+ y1: "8",
+ x2: "23",
+ y2: "1"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"
+ }));
+});
+PhoneOutgoing.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+PhoneOutgoing.displayName = 'PhoneOutgoing';
+export default PhoneOutgoing;
\ No newline at end of file
diff --git a/dist/icons/phone.js b/dist/icons/phone.js
new file mode 100644
index 00000000..7476e719
--- /dev/null
+++ b/dist/icons/phone.js
@@ -0,0 +1,37 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Path } from 'svgs';
+var Phone = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"
+ }));
+});
+Phone.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Phone.displayName = 'Phone';
+export default Phone;
\ No newline at end of file
diff --git a/dist/icons/pie-chart.js b/dist/icons/pie-chart.js
new file mode 100644
index 00000000..2d39b53b
--- /dev/null
+++ b/dist/icons/pie-chart.js
@@ -0,0 +1,39 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Path } from 'svgs';
+var PieChart = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M21.21 15.89A10 10 0 1 1 8 2.83"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M22 12A10 10 0 0 0 12 2v10z"
+ }));
+});
+PieChart.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+PieChart.displayName = 'PieChart';
+export default PieChart;
\ No newline at end of file
diff --git a/dist/icons/play-circle.js b/dist/icons/play-circle.js
new file mode 100644
index 00000000..f1455315
--- /dev/null
+++ b/dist/icons/play-circle.js
@@ -0,0 +1,41 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Circle, Polygon } from 'svgs';
+var PlayCircle = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Circle, {
+ cx: "12",
+ cy: "12",
+ r: "10"
+ }), /*#__PURE__*/React.createElement(Polygon, {
+ points: "10 8 16 12 10 16 10 8"
+ }));
+});
+PlayCircle.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+PlayCircle.displayName = 'PlayCircle';
+export default PlayCircle;
\ No newline at end of file
diff --git a/dist/icons/play.js b/dist/icons/play.js
new file mode 100644
index 00000000..4f1baf78
--- /dev/null
+++ b/dist/icons/play.js
@@ -0,0 +1,37 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Polygon } from 'svgs';
+var Play = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Polygon, {
+ points: "5 3 19 12 5 21 5 3"
+ }));
+});
+Play.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Play.displayName = 'Play';
+export default Play;
\ No newline at end of file
diff --git a/dist/icons/plus-circle.js b/dist/icons/plus-circle.js
new file mode 100644
index 00000000..551ece42
--- /dev/null
+++ b/dist/icons/plus-circle.js
@@ -0,0 +1,49 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Circle, Line } from 'svgs';
+var PlusCircle = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Circle, {
+ cx: "12",
+ cy: "12",
+ r: "10"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "12",
+ y1: "8",
+ x2: "12",
+ y2: "16"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "8",
+ y1: "12",
+ x2: "16",
+ y2: "12"
+ }));
+});
+PlusCircle.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+PlusCircle.displayName = 'PlusCircle';
+export default PlusCircle;
\ No newline at end of file
diff --git a/dist/icons/plus-square.js b/dist/icons/plus-square.js
new file mode 100644
index 00000000..32760fb1
--- /dev/null
+++ b/dist/icons/plus-square.js
@@ -0,0 +1,52 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line, Rect } from 'svgs';
+var PlusSquare = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Rect, {
+ x: "3",
+ y: "3",
+ width: "18",
+ height: "18",
+ rx: "2",
+ ry: "2"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "12",
+ y1: "8",
+ x2: "12",
+ y2: "16"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "8",
+ y1: "12",
+ x2: "16",
+ y2: "12"
+ }));
+});
+PlusSquare.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+PlusSquare.displayName = 'PlusSquare';
+export default PlusSquare;
\ No newline at end of file
diff --git a/dist/icons/plus.js b/dist/icons/plus.js
new file mode 100644
index 00000000..f5751635
--- /dev/null
+++ b/dist/icons/plus.js
@@ -0,0 +1,45 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line } from 'svgs';
+var Plus = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Line, {
+ x1: "12",
+ y1: "5",
+ x2: "12",
+ y2: "19"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "5",
+ y1: "12",
+ x2: "19",
+ y2: "12"
+ }));
+});
+Plus.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Plus.displayName = 'Plus';
+export default Plus;
\ No newline at end of file
diff --git a/dist/icons/pocket.js b/dist/icons/pocket.js
new file mode 100644
index 00000000..66aef095
--- /dev/null
+++ b/dist/icons/pocket.js
@@ -0,0 +1,39 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Path, Polyline } from 'svgs';
+var Pocket = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M4 3h16a2 2 0 0 1 2 2v6a10 10 0 0 1-10 10A10 10 0 0 1 2 11V5a2 2 0 0 1 2-2z"
+ }), /*#__PURE__*/React.createElement(Polyline, {
+ points: "8 10 12 14 16 10"
+ }));
+});
+Pocket.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Pocket.displayName = 'Pocket';
+export default Pocket;
\ No newline at end of file
diff --git a/dist/icons/power.js b/dist/icons/power.js
new file mode 100644
index 00000000..17600b29
--- /dev/null
+++ b/dist/icons/power.js
@@ -0,0 +1,42 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line, Path } from 'svgs';
+var Power = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M18.36 6.64a9 9 0 1 1-12.73 0"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "12",
+ y1: "2",
+ x2: "12",
+ y2: "12"
+ }));
+});
+Power.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Power.displayName = 'Power';
+export default Power;
\ No newline at end of file
diff --git a/dist/icons/printer.js b/dist/icons/printer.js
new file mode 100644
index 00000000..744e6f12
--- /dev/null
+++ b/dist/icons/printer.js
@@ -0,0 +1,44 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Path, Polyline, Rect } from 'svgs';
+var Printer = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Polyline, {
+ points: "6 9 6 2 18 2 18 9"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M6 18H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2"
+ }), /*#__PURE__*/React.createElement(Rect, {
+ x: "6",
+ y: "14",
+ width: "12",
+ height: "8"
+ }));
+});
+Printer.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Printer.displayName = 'Printer';
+export default Printer;
\ No newline at end of file
diff --git a/dist/icons/radio.js b/dist/icons/radio.js
new file mode 100644
index 00000000..41adc5d9
--- /dev/null
+++ b/dist/icons/radio.js
@@ -0,0 +1,41 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Circle, Path } from 'svgs';
+var Radio = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Circle, {
+ cx: "12",
+ cy: "12",
+ r: "2"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M16.24 7.76a6 6 0 0 1 0 8.49m-8.48-.01a6 6 0 0 1 0-8.49m11.31-2.82a10 10 0 0 1 0 14.14m-14.14 0a10 10 0 0 1 0-14.14"
+ }));
+});
+Radio.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Radio.displayName = 'Radio';
+export default Radio;
\ No newline at end of file
diff --git a/dist/icons/refresh-ccw.js b/dist/icons/refresh-ccw.js
new file mode 100644
index 00000000..43ef86b5
--- /dev/null
+++ b/dist/icons/refresh-ccw.js
@@ -0,0 +1,41 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Path, Polyline } from 'svgs';
+var RefreshCcw = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Polyline, {
+ points: "1 4 1 10 7 10"
+ }), /*#__PURE__*/React.createElement(Polyline, {
+ points: "23 20 23 14 17 14"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M20.49 9A9 9 0 0 0 5.64 5.64L1 10m22 4l-4.64 4.36A9 9 0 0 1 3.51 15"
+ }));
+});
+RefreshCcw.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+RefreshCcw.displayName = 'RefreshCcw';
+export default RefreshCcw;
\ No newline at end of file
diff --git a/dist/icons/refresh-cw.js b/dist/icons/refresh-cw.js
new file mode 100644
index 00000000..014074b5
--- /dev/null
+++ b/dist/icons/refresh-cw.js
@@ -0,0 +1,41 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Path, Polyline } from 'svgs';
+var RefreshCw = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Polyline, {
+ points: "23 4 23 10 17 10"
+ }), /*#__PURE__*/React.createElement(Polyline, {
+ points: "1 20 1 14 7 14"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M3.51 9a9 9 0 0 1 14.85-3.36L23 10M1 14l4.64 4.36A9 9 0 0 0 20.49 15"
+ }));
+});
+RefreshCw.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+RefreshCw.displayName = 'RefreshCw';
+export default RefreshCw;
\ No newline at end of file
diff --git a/dist/icons/repeat.js b/dist/icons/repeat.js
new file mode 100644
index 00000000..90570a5e
--- /dev/null
+++ b/dist/icons/repeat.js
@@ -0,0 +1,43 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Path, Polyline } from 'svgs';
+var Repeat = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Polyline, {
+ points: "17 1 21 5 17 9"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M3 11V9a4 4 0 0 1 4-4h14"
+ }), /*#__PURE__*/React.createElement(Polyline, {
+ points: "7 23 3 19 7 15"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M21 13v2a4 4 0 0 1-4 4H3"
+ }));
+});
+Repeat.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Repeat.displayName = 'Repeat';
+export default Repeat;
\ No newline at end of file
diff --git a/dist/icons/rewind.js b/dist/icons/rewind.js
new file mode 100644
index 00000000..850f355d
--- /dev/null
+++ b/dist/icons/rewind.js
@@ -0,0 +1,39 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Polygon } from 'svgs';
+var Rewind = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Polygon, {
+ points: "11 19 2 12 11 5 11 19"
+ }), /*#__PURE__*/React.createElement(Polygon, {
+ points: "22 19 13 12 22 5 22 19"
+ }));
+});
+Rewind.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Rewind.displayName = 'Rewind';
+export default Rewind;
\ No newline at end of file
diff --git a/dist/icons/rotate-ccw.js b/dist/icons/rotate-ccw.js
new file mode 100644
index 00000000..559b27fd
--- /dev/null
+++ b/dist/icons/rotate-ccw.js
@@ -0,0 +1,39 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Path, Polyline } from 'svgs';
+var RotateCcw = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Polyline, {
+ points: "1 4 1 10 7 10"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M3.51 15a9 9 0 1 0 2.13-9.36L1 10"
+ }));
+});
+RotateCcw.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+RotateCcw.displayName = 'RotateCcw';
+export default RotateCcw;
\ No newline at end of file
diff --git a/dist/icons/rotate-cw.js b/dist/icons/rotate-cw.js
new file mode 100644
index 00000000..4d145ca9
--- /dev/null
+++ b/dist/icons/rotate-cw.js
@@ -0,0 +1,39 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Path, Polyline } from 'svgs';
+var RotateCw = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Polyline, {
+ points: "23 4 23 10 17 10"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M20.49 15a9 9 0 1 1-2.12-9.36L23 10"
+ }));
+});
+RotateCw.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+RotateCw.displayName = 'RotateCw';
+export default RotateCw;
\ No newline at end of file
diff --git a/dist/icons/rss.js b/dist/icons/rss.js
new file mode 100644
index 00000000..317e9a0b
--- /dev/null
+++ b/dist/icons/rss.js
@@ -0,0 +1,43 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Circle, Path } from 'svgs';
+var Rss = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M4 11a9 9 0 0 1 9 9"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M4 4a16 16 0 0 1 16 16"
+ }), /*#__PURE__*/React.createElement(Circle, {
+ cx: "5",
+ cy: "19",
+ r: "1"
+ }));
+});
+Rss.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Rss.displayName = 'Rss';
+export default Rss;
\ No newline at end of file
diff --git a/dist/icons/save.js b/dist/icons/save.js
new file mode 100644
index 00000000..72294088
--- /dev/null
+++ b/dist/icons/save.js
@@ -0,0 +1,41 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Path, Polyline } from 'svgs';
+var Save = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M19 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11l5 5v11a2 2 0 0 1-2 2z"
+ }), /*#__PURE__*/React.createElement(Polyline, {
+ points: "17 21 17 13 7 13 7 21"
+ }), /*#__PURE__*/React.createElement(Polyline, {
+ points: "7 3 7 8 15 8"
+ }));
+});
+Save.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Save.displayName = 'Save';
+export default Save;
\ No newline at end of file
diff --git a/dist/icons/scissors.js b/dist/icons/scissors.js
new file mode 100644
index 00000000..34746fe2
--- /dev/null
+++ b/dist/icons/scissors.js
@@ -0,0 +1,58 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Circle, Line } from 'svgs';
+var Scissors = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Circle, {
+ cx: "6",
+ cy: "6",
+ r: "3"
+ }), /*#__PURE__*/React.createElement(Circle, {
+ cx: "6",
+ cy: "18",
+ r: "3"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "20",
+ y1: "4",
+ x2: "8.12",
+ y2: "15.88"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "14.47",
+ y1: "14.48",
+ x2: "20",
+ y2: "20"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "8.12",
+ y1: "8.12",
+ x2: "12",
+ y2: "12"
+ }));
+});
+Scissors.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Scissors.displayName = 'Scissors';
+export default Scissors;
\ No newline at end of file
diff --git a/dist/icons/search.js b/dist/icons/search.js
new file mode 100644
index 00000000..ca06464d
--- /dev/null
+++ b/dist/icons/search.js
@@ -0,0 +1,44 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Circle, Line } from 'svgs';
+var Search = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Circle, {
+ cx: "11",
+ cy: "11",
+ r: "8"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "21",
+ y1: "21",
+ x2: "16.65",
+ y2: "16.65"
+ }));
+});
+Search.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Search.displayName = 'Search';
+export default Search;
\ No newline at end of file
diff --git a/dist/icons/send.js b/dist/icons/send.js
new file mode 100644
index 00000000..5524d2ac
--- /dev/null
+++ b/dist/icons/send.js
@@ -0,0 +1,42 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line, Polygon } from 'svgs';
+var Send = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Line, {
+ x1: "22",
+ y1: "2",
+ x2: "11",
+ y2: "13"
+ }), /*#__PURE__*/React.createElement(Polygon, {
+ points: "22 2 15 22 11 13 2 9 22 2"
+ }));
+});
+Send.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Send.displayName = 'Send';
+export default Send;
\ No newline at end of file
diff --git a/dist/icons/server.js b/dist/icons/server.js
new file mode 100644
index 00000000..b2698879
--- /dev/null
+++ b/dist/icons/server.js
@@ -0,0 +1,59 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line, Rect } from 'svgs';
+var Server = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Rect, {
+ x: "2",
+ y: "2",
+ width: "20",
+ height: "8",
+ rx: "2",
+ ry: "2"
+ }), /*#__PURE__*/React.createElement(Rect, {
+ x: "2",
+ y: "14",
+ width: "20",
+ height: "8",
+ rx: "2",
+ ry: "2"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "6",
+ y1: "6",
+ x2: "6.01",
+ y2: "6"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "6",
+ y1: "18",
+ x2: "6.01",
+ y2: "18"
+ }));
+});
+Server.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Server.displayName = 'Server';
+export default Server;
\ No newline at end of file
diff --git a/dist/icons/settings.js b/dist/icons/settings.js
new file mode 100644
index 00000000..bb4a5c0f
--- /dev/null
+++ b/dist/icons/settings.js
@@ -0,0 +1,41 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Circle, Path } from 'svgs';
+var Settings = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Circle, {
+ cx: "12",
+ cy: "12",
+ r: "3"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 0 1 0 2.83 2 2 0 0 1-2.83 0l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-2 2 2 2 0 0 1-2-2v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 0 1-2.83 0 2 2 0 0 1 0-2.83l.06-.06a1.65 1.65 0 0 0 .33-1.82 1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1-2-2 2 2 0 0 1 2-2h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 0 1 0-2.83 2 2 0 0 1 2.83 0l.06.06a1.65 1.65 0 0 0 1.82.33H9a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 2-2 2 2 0 0 1 2 2v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 0 1 2.83 0 2 2 0 0 1 0 2.83l-.06.06a1.65 1.65 0 0 0-.33 1.82V9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 2 2 2 2 0 0 1-2 2h-.09a1.65 1.65 0 0 0-1.51 1z"
+ }));
+});
+Settings.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Settings.displayName = 'Settings';
+export default Settings;
\ No newline at end of file
diff --git a/dist/icons/share-2.js b/dist/icons/share-2.js
new file mode 100644
index 00000000..b7d6a34c
--- /dev/null
+++ b/dist/icons/share-2.js
@@ -0,0 +1,57 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Circle, Line } from 'svgs';
+var Share2 = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Circle, {
+ cx: "18",
+ cy: "5",
+ r: "3"
+ }), /*#__PURE__*/React.createElement(Circle, {
+ cx: "6",
+ cy: "12",
+ r: "3"
+ }), /*#__PURE__*/React.createElement(Circle, {
+ cx: "18",
+ cy: "19",
+ r: "3"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "8.59",
+ y1: "13.51",
+ x2: "15.42",
+ y2: "17.49"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "15.41",
+ y1: "6.51",
+ x2: "8.59",
+ y2: "10.49"
+ }));
+});
+Share2.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Share2.displayName = 'Share2';
+export default Share2;
\ No newline at end of file
diff --git a/dist/icons/share.js b/dist/icons/share.js
new file mode 100644
index 00000000..8ccce136
--- /dev/null
+++ b/dist/icons/share.js
@@ -0,0 +1,44 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line, Path, Polyline } from 'svgs';
+var Share = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M4 12v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8"
+ }), /*#__PURE__*/React.createElement(Polyline, {
+ points: "16 6 12 2 8 6"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "12",
+ y1: "2",
+ x2: "12",
+ y2: "15"
+ }));
+});
+Share.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Share.displayName = 'Share';
+export default Share;
\ No newline at end of file
diff --git a/dist/icons/shield-off.js b/dist/icons/shield-off.js
new file mode 100644
index 00000000..7150bd45
--- /dev/null
+++ b/dist/icons/shield-off.js
@@ -0,0 +1,44 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line, Path } from 'svgs';
+var ShieldOff = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M19.69 14a6.9 6.9 0 0 0 .31-2V5l-8-3-3.16 1.18"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M4.73 4.73L4 5v7c0 6 8 10 8 10a20.29 20.29 0 0 0 5.62-4.38"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "1",
+ y1: "1",
+ x2: "23",
+ y2: "23"
+ }));
+});
+ShieldOff.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+ShieldOff.displayName = 'ShieldOff';
+export default ShieldOff;
\ No newline at end of file
diff --git a/dist/icons/shield.js b/dist/icons/shield.js
new file mode 100644
index 00000000..b24ca8b9
--- /dev/null
+++ b/dist/icons/shield.js
@@ -0,0 +1,37 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Path } from 'svgs';
+var Shield = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"
+ }));
+});
+Shield.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Shield.displayName = 'Shield';
+export default Shield;
\ No newline at end of file
diff --git a/dist/icons/shopping-bag.js b/dist/icons/shopping-bag.js
new file mode 100644
index 00000000..ce88534a
--- /dev/null
+++ b/dist/icons/shopping-bag.js
@@ -0,0 +1,44 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line, Path } from 'svgs';
+var ShoppingBag = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M6 2L3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4z"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "3",
+ y1: "6",
+ x2: "21",
+ y2: "6"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M16 10a4 4 0 0 1-8 0"
+ }));
+});
+ShoppingBag.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+ShoppingBag.displayName = 'ShoppingBag';
+export default ShoppingBag;
\ No newline at end of file
diff --git a/dist/icons/shopping-cart.js b/dist/icons/shopping-cart.js
new file mode 100644
index 00000000..061bb883
--- /dev/null
+++ b/dist/icons/shopping-cart.js
@@ -0,0 +1,45 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Circle, Path } from 'svgs';
+var ShoppingCart = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Circle, {
+ cx: "9",
+ cy: "21",
+ r: "1"
+ }), /*#__PURE__*/React.createElement(Circle, {
+ cx: "20",
+ cy: "21",
+ r: "1"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M1 1h4l2.68 13.39a2 2 0 0 0 2 1.61h9.72a2 2 0 0 0 2-1.61L23 6H6"
+ }));
+});
+ShoppingCart.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+ShoppingCart.displayName = 'ShoppingCart';
+export default ShoppingCart;
\ No newline at end of file
diff --git a/dist/icons/shuffle.js b/dist/icons/shuffle.js
new file mode 100644
index 00000000..b57737fa
--- /dev/null
+++ b/dist/icons/shuffle.js
@@ -0,0 +1,54 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line, Polyline } from 'svgs';
+var Shuffle = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Polyline, {
+ points: "16 3 21 3 21 8"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "4",
+ y1: "20",
+ x2: "21",
+ y2: "3"
+ }), /*#__PURE__*/React.createElement(Polyline, {
+ points: "21 16 21 21 16 21"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "15",
+ y1: "15",
+ x2: "21",
+ y2: "21"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "4",
+ y1: "4",
+ x2: "9",
+ y2: "9"
+ }));
+});
+Shuffle.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Shuffle.displayName = 'Shuffle';
+export default Shuffle;
\ No newline at end of file
diff --git a/dist/icons/sidebar.js b/dist/icons/sidebar.js
new file mode 100644
index 00000000..4d0921e3
--- /dev/null
+++ b/dist/icons/sidebar.js
@@ -0,0 +1,47 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line, Rect } from 'svgs';
+var Sidebar = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Rect, {
+ x: "3",
+ y: "3",
+ width: "18",
+ height: "18",
+ rx: "2",
+ ry: "2"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "9",
+ y1: "3",
+ x2: "9",
+ y2: "21"
+ }));
+});
+Sidebar.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Sidebar.displayName = 'Sidebar';
+export default Sidebar;
\ No newline at end of file
diff --git a/dist/icons/skip-back.js b/dist/icons/skip-back.js
new file mode 100644
index 00000000..7b077ad4
--- /dev/null
+++ b/dist/icons/skip-back.js
@@ -0,0 +1,42 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line, Polygon } from 'svgs';
+var SkipBack = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Polygon, {
+ points: "19 20 9 12 19 4 19 20"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "5",
+ y1: "19",
+ x2: "5",
+ y2: "5"
+ }));
+});
+SkipBack.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+SkipBack.displayName = 'SkipBack';
+export default SkipBack;
\ No newline at end of file
diff --git a/dist/icons/skip-forward.js b/dist/icons/skip-forward.js
new file mode 100644
index 00000000..270fa581
--- /dev/null
+++ b/dist/icons/skip-forward.js
@@ -0,0 +1,42 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line, Polygon } from 'svgs';
+var SkipForward = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Polygon, {
+ points: "5 4 15 12 5 20 5 4"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "19",
+ y1: "5",
+ x2: "19",
+ y2: "19"
+ }));
+});
+SkipForward.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+SkipForward.displayName = 'SkipForward';
+export default SkipForward;
\ No newline at end of file
diff --git a/dist/icons/slack.js b/dist/icons/slack.js
new file mode 100644
index 00000000..580f1f1f
--- /dev/null
+++ b/dist/icons/slack.js
@@ -0,0 +1,51 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Path } from 'svgs';
+var Slack = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M14.5 10c-.83 0-1.5-.67-1.5-1.5v-5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5v5c0 .83-.67 1.5-1.5 1.5z"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M20.5 10H19V8.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5-.67 1.5-1.5 1.5z"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M9.5 14c.83 0 1.5.67 1.5 1.5v5c0 .83-.67 1.5-1.5 1.5S8 21.33 8 20.5v-5c0-.83.67-1.5 1.5-1.5z"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M3.5 14H5v1.5c0 .83-.67 1.5-1.5 1.5S2 16.33 2 15.5 2.67 14 3.5 14z"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M14 14.5c0-.83.67-1.5 1.5-1.5h5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5h-5c-.83 0-1.5-.67-1.5-1.5z"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M15.5 19H14v1.5c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5-.67-1.5-1.5-1.5z"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M10 9.5C10 8.67 9.33 8 8.5 8h-5C2.67 8 2 8.67 2 9.5S2.67 11 3.5 11h5c.83 0 1.5-.67 1.5-1.5z"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M8.5 5H10V3.5C10 2.67 9.33 2 8.5 2S7 2.67 7 3.5 7.67 5 8.5 5z"
+ }));
+});
+Slack.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Slack.displayName = 'Slack';
+export default Slack;
\ No newline at end of file
diff --git a/dist/icons/slash.js b/dist/icons/slash.js
new file mode 100644
index 00000000..24788377
--- /dev/null
+++ b/dist/icons/slash.js
@@ -0,0 +1,44 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Circle, Line } from 'svgs';
+var Slash = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Circle, {
+ cx: "12",
+ cy: "12",
+ r: "10"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "4.93",
+ y1: "4.93",
+ x2: "19.07",
+ y2: "19.07"
+ }));
+});
+Slash.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Slash.displayName = 'Slash';
+export default Slash;
\ No newline at end of file
diff --git a/dist/icons/sliders.js b/dist/icons/sliders.js
new file mode 100644
index 00000000..96bde43e
--- /dev/null
+++ b/dist/icons/sliders.js
@@ -0,0 +1,80 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line } from 'svgs';
+var Sliders = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Line, {
+ x1: "4",
+ y1: "21",
+ x2: "4",
+ y2: "14"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "4",
+ y1: "10",
+ x2: "4",
+ y2: "3"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "12",
+ y1: "21",
+ x2: "12",
+ y2: "12"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "12",
+ y1: "8",
+ x2: "12",
+ y2: "3"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "20",
+ y1: "21",
+ x2: "20",
+ y2: "16"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "20",
+ y1: "12",
+ x2: "20",
+ y2: "3"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "1",
+ y1: "14",
+ x2: "7",
+ y2: "14"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "9",
+ y1: "8",
+ x2: "15",
+ y2: "8"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "17",
+ y1: "16",
+ x2: "23",
+ y2: "16"
+ }));
+});
+Sliders.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Sliders.displayName = 'Sliders';
+export default Sliders;
\ No newline at end of file
diff --git a/dist/icons/smartphone.js b/dist/icons/smartphone.js
new file mode 100644
index 00000000..3cbf38cc
--- /dev/null
+++ b/dist/icons/smartphone.js
@@ -0,0 +1,47 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line, Rect } from 'svgs';
+var Smartphone = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Rect, {
+ x: "5",
+ y: "2",
+ width: "14",
+ height: "20",
+ rx: "2",
+ ry: "2"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "12",
+ y1: "18",
+ x2: "12.01",
+ y2: "18"
+ }));
+});
+Smartphone.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Smartphone.displayName = 'Smartphone';
+export default Smartphone;
\ No newline at end of file
diff --git a/dist/icons/smile.js b/dist/icons/smile.js
new file mode 100644
index 00000000..1c25af20
--- /dev/null
+++ b/dist/icons/smile.js
@@ -0,0 +1,51 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Circle, Line, Path } from 'svgs';
+var Smile = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Circle, {
+ cx: "12",
+ cy: "12",
+ r: "10"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M8 14s1.5 2 4 2 4-2 4-2"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "9",
+ y1: "9",
+ x2: "9.01",
+ y2: "9"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "15",
+ y1: "9",
+ x2: "15.01",
+ y2: "9"
+ }));
+});
+Smile.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Smile.displayName = 'Smile';
+export default Smile;
\ No newline at end of file
diff --git a/dist/icons/speaker.js b/dist/icons/speaker.js
new file mode 100644
index 00000000..01134c18
--- /dev/null
+++ b/dist/icons/speaker.js
@@ -0,0 +1,51 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Circle, Line, Rect } from 'svgs';
+var Speaker = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Rect, {
+ x: "4",
+ y: "2",
+ width: "16",
+ height: "20",
+ rx: "2",
+ ry: "2"
+ }), /*#__PURE__*/React.createElement(Circle, {
+ cx: "12",
+ cy: "14",
+ r: "4"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "12",
+ y1: "6",
+ x2: "12.01",
+ y2: "6"
+ }));
+});
+Speaker.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Speaker.displayName = 'Speaker';
+export default Speaker;
\ No newline at end of file
diff --git a/dist/icons/square.js b/dist/icons/square.js
new file mode 100644
index 00000000..6ee2e3f5
--- /dev/null
+++ b/dist/icons/square.js
@@ -0,0 +1,42 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Rect } from 'svgs';
+var Square = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Rect, {
+ x: "3",
+ y: "3",
+ width: "18",
+ height: "18",
+ rx: "2",
+ ry: "2"
+ }));
+});
+Square.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Square.displayName = 'Square';
+export default Square;
\ No newline at end of file
diff --git a/dist/icons/star.js b/dist/icons/star.js
new file mode 100644
index 00000000..ed5919a8
--- /dev/null
+++ b/dist/icons/star.js
@@ -0,0 +1,37 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Polygon } from 'svgs';
+var Star = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Polygon, {
+ points: "12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"
+ }));
+});
+Star.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Star.displayName = 'Star';
+export default Star;
\ No newline at end of file
diff --git a/dist/icons/stop-circle.js b/dist/icons/stop-circle.js
new file mode 100644
index 00000000..f7b68d16
--- /dev/null
+++ b/dist/icons/stop-circle.js
@@ -0,0 +1,44 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Circle, Rect } from 'svgs';
+var StopCircle = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Circle, {
+ cx: "12",
+ cy: "12",
+ r: "10"
+ }), /*#__PURE__*/React.createElement(Rect, {
+ x: "9",
+ y: "9",
+ width: "6",
+ height: "6"
+ }));
+});
+StopCircle.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+StopCircle.displayName = 'StopCircle';
+export default StopCircle;
\ No newline at end of file
diff --git a/dist/icons/sun.js b/dist/icons/sun.js
new file mode 100644
index 00000000..b14dcd06
--- /dev/null
+++ b/dist/icons/sun.js
@@ -0,0 +1,79 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Circle, Line } from 'svgs';
+var Sun = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Circle, {
+ cx: "12",
+ cy: "12",
+ r: "5"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "12",
+ y1: "1",
+ x2: "12",
+ y2: "3"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "12",
+ y1: "21",
+ x2: "12",
+ y2: "23"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "4.22",
+ y1: "4.22",
+ x2: "5.64",
+ y2: "5.64"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "18.36",
+ y1: "18.36",
+ x2: "19.78",
+ y2: "19.78"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "1",
+ y1: "12",
+ x2: "3",
+ y2: "12"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "21",
+ y1: "12",
+ x2: "23",
+ y2: "12"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "4.22",
+ y1: "19.78",
+ x2: "5.64",
+ y2: "18.36"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "18.36",
+ y1: "5.64",
+ x2: "19.78",
+ y2: "4.22"
+ }));
+});
+Sun.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Sun.displayName = 'Sun';
+export default Sun;
\ No newline at end of file
diff --git a/dist/icons/sunrise.js b/dist/icons/sunrise.js
new file mode 100644
index 00000000..ff40527f
--- /dev/null
+++ b/dist/icons/sunrise.js
@@ -0,0 +1,69 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line, Path, Polyline } from 'svgs';
+var Sunrise = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M17 18a5 5 0 0 0-10 0"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "12",
+ y1: "2",
+ x2: "12",
+ y2: "9"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "4.22",
+ y1: "10.22",
+ x2: "5.64",
+ y2: "11.64"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "1",
+ y1: "18",
+ x2: "3",
+ y2: "18"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "21",
+ y1: "18",
+ x2: "23",
+ y2: "18"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "18.36",
+ y1: "11.64",
+ x2: "19.78",
+ y2: "10.22"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "23",
+ y1: "22",
+ x2: "1",
+ y2: "22"
+ }), /*#__PURE__*/React.createElement(Polyline, {
+ points: "8 6 12 2 16 6"
+ }));
+});
+Sunrise.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Sunrise.displayName = 'Sunrise';
+export default Sunrise;
\ No newline at end of file
diff --git a/dist/icons/sunset.js b/dist/icons/sunset.js
new file mode 100644
index 00000000..c2427e35
--- /dev/null
+++ b/dist/icons/sunset.js
@@ -0,0 +1,69 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line, Path, Polyline } from 'svgs';
+var Sunset = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M17 18a5 5 0 0 0-10 0"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "12",
+ y1: "9",
+ x2: "12",
+ y2: "2"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "4.22",
+ y1: "10.22",
+ x2: "5.64",
+ y2: "11.64"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "1",
+ y1: "18",
+ x2: "3",
+ y2: "18"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "21",
+ y1: "18",
+ x2: "23",
+ y2: "18"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "18.36",
+ y1: "11.64",
+ x2: "19.78",
+ y2: "10.22"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "23",
+ y1: "22",
+ x2: "1",
+ y2: "22"
+ }), /*#__PURE__*/React.createElement(Polyline, {
+ points: "16 5 12 9 8 5"
+ }));
+});
+Sunset.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Sunset.displayName = 'Sunset';
+export default Sunset;
\ No newline at end of file
diff --git a/dist/icons/tablet.js b/dist/icons/tablet.js
new file mode 100644
index 00000000..d0e2ed83
--- /dev/null
+++ b/dist/icons/tablet.js
@@ -0,0 +1,47 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line, Rect } from 'svgs';
+var Tablet = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Rect, {
+ x: "4",
+ y: "2",
+ width: "16",
+ height: "20",
+ rx: "2",
+ ry: "2"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "12",
+ y1: "18",
+ x2: "12.01",
+ y2: "18"
+ }));
+});
+Tablet.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Tablet.displayName = 'Tablet';
+export default Tablet;
\ No newline at end of file
diff --git a/dist/icons/tag.js b/dist/icons/tag.js
new file mode 100644
index 00000000..3e11efd6
--- /dev/null
+++ b/dist/icons/tag.js
@@ -0,0 +1,42 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line, Path } from 'svgs';
+var Tag = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M20.59 13.41l-7.17 7.17a2 2 0 0 1-2.83 0L2 12V2h10l8.59 8.59a2 2 0 0 1 0 2.82z"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "7",
+ y1: "7",
+ x2: "7.01",
+ y2: "7"
+ }));
+});
+Tag.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Tag.displayName = 'Tag';
+export default Tag;
\ No newline at end of file
diff --git a/dist/icons/target.js b/dist/icons/target.js
new file mode 100644
index 00000000..a937780f
--- /dev/null
+++ b/dist/icons/target.js
@@ -0,0 +1,47 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Circle } from 'svgs';
+var Target = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Circle, {
+ cx: "12",
+ cy: "12",
+ r: "10"
+ }), /*#__PURE__*/React.createElement(Circle, {
+ cx: "12",
+ cy: "12",
+ r: "6"
+ }), /*#__PURE__*/React.createElement(Circle, {
+ cx: "12",
+ cy: "12",
+ r: "2"
+ }));
+});
+Target.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Target.displayName = 'Target';
+export default Target;
\ No newline at end of file
diff --git a/dist/icons/terminal.js b/dist/icons/terminal.js
new file mode 100644
index 00000000..858193f5
--- /dev/null
+++ b/dist/icons/terminal.js
@@ -0,0 +1,42 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line, Polyline } from 'svgs';
+var Terminal = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Polyline, {
+ points: "4 17 10 11 4 5"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "12",
+ y1: "19",
+ x2: "20",
+ y2: "19"
+ }));
+});
+Terminal.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Terminal.displayName = 'Terminal';
+export default Terminal;
\ No newline at end of file
diff --git a/dist/icons/thermometer.js b/dist/icons/thermometer.js
new file mode 100644
index 00000000..7200e6f3
--- /dev/null
+++ b/dist/icons/thermometer.js
@@ -0,0 +1,37 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Path } from 'svgs';
+var Thermometer = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M14 14.76V3.5a2.5 2.5 0 0 0-5 0v11.26a4.5 4.5 0 1 0 5 0z"
+ }));
+});
+Thermometer.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Thermometer.displayName = 'Thermometer';
+export default Thermometer;
\ No newline at end of file
diff --git a/dist/icons/thumbs-down.js b/dist/icons/thumbs-down.js
new file mode 100644
index 00000000..a0056d12
--- /dev/null
+++ b/dist/icons/thumbs-down.js
@@ -0,0 +1,37 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Path } from 'svgs';
+var ThumbsDown = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M10 15v4a3 3 0 0 0 3 3l4-9V2H5.72a2 2 0 0 0-2 1.7l-1.38 9a2 2 0 0 0 2 2.3zm7-13h2.67A2.31 2.31 0 0 1 22 4v7a2.31 2.31 0 0 1-2.33 2H17"
+ }));
+});
+ThumbsDown.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+ThumbsDown.displayName = 'ThumbsDown';
+export default ThumbsDown;
\ No newline at end of file
diff --git a/dist/icons/thumbs-up.js b/dist/icons/thumbs-up.js
new file mode 100644
index 00000000..02d7eab7
--- /dev/null
+++ b/dist/icons/thumbs-up.js
@@ -0,0 +1,37 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Path } from 'svgs';
+var ThumbsUp = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M14 9V5a3 3 0 0 0-3-3l-4 9v11h11.28a2 2 0 0 0 2-1.7l1.38-9a2 2 0 0 0-2-2.3zM7 22H4a2 2 0 0 1-2-2v-7a2 2 0 0 1 2-2h3"
+ }));
+});
+ThumbsUp.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+ThumbsUp.displayName = 'ThumbsUp';
+export default ThumbsUp;
\ No newline at end of file
diff --git a/dist/icons/toggle-left.js b/dist/icons/toggle-left.js
new file mode 100644
index 00000000..e10fb0cd
--- /dev/null
+++ b/dist/icons/toggle-left.js
@@ -0,0 +1,46 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Circle, Rect } from 'svgs';
+var ToggleLeft = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Rect, {
+ x: "1",
+ y: "5",
+ width: "22",
+ height: "14",
+ rx: "7",
+ ry: "7"
+ }), /*#__PURE__*/React.createElement(Circle, {
+ cx: "8",
+ cy: "12",
+ r: "3"
+ }));
+});
+ToggleLeft.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+ToggleLeft.displayName = 'ToggleLeft';
+export default ToggleLeft;
\ No newline at end of file
diff --git a/dist/icons/toggle-right.js b/dist/icons/toggle-right.js
new file mode 100644
index 00000000..6f439e9d
--- /dev/null
+++ b/dist/icons/toggle-right.js
@@ -0,0 +1,46 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Circle, Rect } from 'svgs';
+var ToggleRight = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Rect, {
+ x: "1",
+ y: "5",
+ width: "22",
+ height: "14",
+ rx: "7",
+ ry: "7"
+ }), /*#__PURE__*/React.createElement(Circle, {
+ cx: "16",
+ cy: "12",
+ r: "3"
+ }));
+});
+ToggleRight.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+ToggleRight.displayName = 'ToggleRight';
+export default ToggleRight;
\ No newline at end of file
diff --git a/dist/icons/tool.js b/dist/icons/tool.js
new file mode 100644
index 00000000..899a1d23
--- /dev/null
+++ b/dist/icons/tool.js
@@ -0,0 +1,37 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Path } from 'svgs';
+var Tool = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.77-3.77a6 6 0 0 1-7.94 7.94l-6.91 6.91a2.12 2.12 0 0 1-3-3l6.91-6.91a6 6 0 0 1 7.94-7.94l-3.76 3.76z"
+ }));
+});
+Tool.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Tool.displayName = 'Tool';
+export default Tool;
\ No newline at end of file
diff --git a/dist/icons/trash-2.js b/dist/icons/trash-2.js
new file mode 100644
index 00000000..11b8161c
--- /dev/null
+++ b/dist/icons/trash-2.js
@@ -0,0 +1,49 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line, Path, Polyline } from 'svgs';
+var Trash2 = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Polyline, {
+ points: "3 6 5 6 21 6"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6m3 0V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "10",
+ y1: "11",
+ x2: "10",
+ y2: "17"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "14",
+ y1: "11",
+ x2: "14",
+ y2: "17"
+ }));
+});
+Trash2.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Trash2.displayName = 'Trash2';
+export default Trash2;
\ No newline at end of file
diff --git a/dist/icons/trash.js b/dist/icons/trash.js
new file mode 100644
index 00000000..8ccea84c
--- /dev/null
+++ b/dist/icons/trash.js
@@ -0,0 +1,39 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Path, Polyline } from 'svgs';
+var Trash = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Polyline, {
+ points: "3 6 5 6 21 6"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6m3 0V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2"
+ }));
+});
+Trash.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Trash.displayName = 'Trash';
+export default Trash;
\ No newline at end of file
diff --git a/dist/icons/trello.js b/dist/icons/trello.js
new file mode 100644
index 00000000..307d7117
--- /dev/null
+++ b/dist/icons/trello.js
@@ -0,0 +1,52 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Rect } from 'svgs';
+var Trello = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Rect, {
+ x: "3",
+ y: "3",
+ width: "18",
+ height: "18",
+ rx: "2",
+ ry: "2"
+ }), /*#__PURE__*/React.createElement(Rect, {
+ x: "7",
+ y: "7",
+ width: "3",
+ height: "9"
+ }), /*#__PURE__*/React.createElement(Rect, {
+ x: "14",
+ y: "7",
+ width: "3",
+ height: "5"
+ }));
+});
+Trello.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Trello.displayName = 'Trello';
+export default Trello;
\ No newline at end of file
diff --git a/dist/icons/trending-down.js b/dist/icons/trending-down.js
new file mode 100644
index 00000000..ed9eb0f0
--- /dev/null
+++ b/dist/icons/trending-down.js
@@ -0,0 +1,39 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Polyline } from 'svgs';
+var TrendingDown = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Polyline, {
+ points: "23 18 13.5 8.5 8.5 13.5 1 6"
+ }), /*#__PURE__*/React.createElement(Polyline, {
+ points: "17 18 23 18 23 12"
+ }));
+});
+TrendingDown.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+TrendingDown.displayName = 'TrendingDown';
+export default TrendingDown;
\ No newline at end of file
diff --git a/dist/icons/trending-up.js b/dist/icons/trending-up.js
new file mode 100644
index 00000000..8feb4f25
--- /dev/null
+++ b/dist/icons/trending-up.js
@@ -0,0 +1,39 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Polyline } from 'svgs';
+var TrendingUp = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Polyline, {
+ points: "23 6 13.5 15.5 8.5 10.5 1 18"
+ }), /*#__PURE__*/React.createElement(Polyline, {
+ points: "17 6 23 6 23 12"
+ }));
+});
+TrendingUp.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+TrendingUp.displayName = 'TrendingUp';
+export default TrendingUp;
\ No newline at end of file
diff --git a/dist/icons/triangle.js b/dist/icons/triangle.js
new file mode 100644
index 00000000..13c2d272
--- /dev/null
+++ b/dist/icons/triangle.js
@@ -0,0 +1,37 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Path } from 'svgs';
+var Triangle = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z"
+ }));
+});
+Triangle.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Triangle.displayName = 'Triangle';
+export default Triangle;
\ No newline at end of file
diff --git a/dist/icons/truck.js b/dist/icons/truck.js
new file mode 100644
index 00000000..b3d20568
--- /dev/null
+++ b/dist/icons/truck.js
@@ -0,0 +1,50 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Circle, Polygon, Rect } from 'svgs';
+var Truck = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Rect, {
+ x: "1",
+ y: "3",
+ width: "15",
+ height: "13"
+ }), /*#__PURE__*/React.createElement(Polygon, {
+ points: "16 8 20 8 23 11 23 16 16 16 16 8"
+ }), /*#__PURE__*/React.createElement(Circle, {
+ cx: "5.5",
+ cy: "18.5",
+ r: "2.5"
+ }), /*#__PURE__*/React.createElement(Circle, {
+ cx: "18.5",
+ cy: "18.5",
+ r: "2.5"
+ }));
+});
+Truck.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Truck.displayName = 'Truck';
+export default Truck;
\ No newline at end of file
diff --git a/dist/icons/tv.js b/dist/icons/tv.js
new file mode 100644
index 00000000..43f568af
--- /dev/null
+++ b/dist/icons/tv.js
@@ -0,0 +1,44 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Polyline, Rect } from 'svgs';
+var Tv = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Rect, {
+ x: "2",
+ y: "7",
+ width: "20",
+ height: "15",
+ rx: "2",
+ ry: "2"
+ }), /*#__PURE__*/React.createElement(Polyline, {
+ points: "17 2 12 7 7 2"
+ }));
+});
+Tv.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Tv.displayName = 'Tv';
+export default Tv;
\ No newline at end of file
diff --git a/dist/icons/twitch.js b/dist/icons/twitch.js
new file mode 100644
index 00000000..e6a71ee6
--- /dev/null
+++ b/dist/icons/twitch.js
@@ -0,0 +1,37 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Path } from 'svgs';
+var Twitch = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M21 2H3v16h5v4l4-4h5l4-4V2zm-10 9V7m5 4V7"
+ }));
+});
+Twitch.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Twitch.displayName = 'Twitch';
+export default Twitch;
\ No newline at end of file
diff --git a/dist/icons/twitter.js b/dist/icons/twitter.js
new file mode 100644
index 00000000..6dbd982b
--- /dev/null
+++ b/dist/icons/twitter.js
@@ -0,0 +1,37 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Path } from 'svgs';
+var Twitter = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M23 3a10.9 10.9 0 0 1-3.14 1.53 4.48 4.48 0 0 0-7.86 3v1A10.66 10.66 0 0 1 3 4s-4 9 5 13a11.64 11.64 0 0 1-7 2c9 5 20 0 20-11.5a4.5 4.5 0 0 0-.08-.83A7.72 7.72 0 0 0 23 3z"
+ }));
+});
+Twitter.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Twitter.displayName = 'Twitter';
+export default Twitter;
\ No newline at end of file
diff --git a/dist/icons/type.js b/dist/icons/type.js
new file mode 100644
index 00000000..66321803
--- /dev/null
+++ b/dist/icons/type.js
@@ -0,0 +1,47 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line, Polyline } from 'svgs';
+var Type = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Polyline, {
+ points: "4 7 4 4 20 4 20 7"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "9",
+ y1: "20",
+ x2: "15",
+ y2: "20"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "12",
+ y1: "4",
+ x2: "12",
+ y2: "20"
+ }));
+});
+Type.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Type.displayName = 'Type';
+export default Type;
\ No newline at end of file
diff --git a/dist/icons/umbrella.js b/dist/icons/umbrella.js
new file mode 100644
index 00000000..c6112a39
--- /dev/null
+++ b/dist/icons/umbrella.js
@@ -0,0 +1,37 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Path } from 'svgs';
+var Umbrella = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M23 12a11.05 11.05 0 0 0-22 0zm-5 7a3 3 0 0 1-6 0v-7"
+ }));
+});
+Umbrella.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Umbrella.displayName = 'Umbrella';
+export default Umbrella;
\ No newline at end of file
diff --git a/dist/icons/underline.js b/dist/icons/underline.js
new file mode 100644
index 00000000..d9fff593
--- /dev/null
+++ b/dist/icons/underline.js
@@ -0,0 +1,42 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line, Path } from 'svgs';
+var Underline = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M6 3v7a6 6 0 0 0 6 6 6 6 0 0 0 6-6V3"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "4",
+ y1: "21",
+ x2: "20",
+ y2: "21"
+ }));
+});
+Underline.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Underline.displayName = 'Underline';
+export default Underline;
\ No newline at end of file
diff --git a/dist/icons/unlock.js b/dist/icons/unlock.js
new file mode 100644
index 00000000..a354fee7
--- /dev/null
+++ b/dist/icons/unlock.js
@@ -0,0 +1,44 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Path, Rect } from 'svgs';
+var Unlock = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Rect, {
+ x: "3",
+ y: "11",
+ width: "18",
+ height: "11",
+ rx: "2",
+ ry: "2"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M7 11V7a5 5 0 0 1 9.9-1"
+ }));
+});
+Unlock.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Unlock.displayName = 'Unlock';
+export default Unlock;
\ No newline at end of file
diff --git a/dist/icons/upload-cloud.js b/dist/icons/upload-cloud.js
new file mode 100644
index 00000000..c00b79c8
--- /dev/null
+++ b/dist/icons/upload-cloud.js
@@ -0,0 +1,46 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line, Path, Polyline } from 'svgs';
+var UploadCloud = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Polyline, {
+ points: "16 16 12 12 8 16"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "12",
+ y1: "12",
+ x2: "12",
+ y2: "21"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M20.39 18.39A5 5 0 0 0 18 9h-1.26A8 8 0 1 0 3 16.3"
+ }), /*#__PURE__*/React.createElement(Polyline, {
+ points: "16 16 12 12 8 16"
+ }));
+});
+UploadCloud.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+UploadCloud.displayName = 'UploadCloud';
+export default UploadCloud;
\ No newline at end of file
diff --git a/dist/icons/upload.js b/dist/icons/upload.js
new file mode 100644
index 00000000..9cc5d480
--- /dev/null
+++ b/dist/icons/upload.js
@@ -0,0 +1,44 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line, Path, Polyline } from 'svgs';
+var Upload = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"
+ }), /*#__PURE__*/React.createElement(Polyline, {
+ points: "17 8 12 3 7 8"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "12",
+ y1: "3",
+ x2: "12",
+ y2: "15"
+ }));
+});
+Upload.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Upload.displayName = 'Upload';
+export default Upload;
\ No newline at end of file
diff --git a/dist/icons/user-check.js b/dist/icons/user-check.js
new file mode 100644
index 00000000..77822de2
--- /dev/null
+++ b/dist/icons/user-check.js
@@ -0,0 +1,43 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Circle, Path, Polyline } from 'svgs';
+var UserCheck = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M16 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"
+ }), /*#__PURE__*/React.createElement(Circle, {
+ cx: "8.5",
+ cy: "7",
+ r: "4"
+ }), /*#__PURE__*/React.createElement(Polyline, {
+ points: "17 11 19 13 23 9"
+ }));
+});
+UserCheck.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+UserCheck.displayName = 'UserCheck';
+export default UserCheck;
\ No newline at end of file
diff --git a/dist/icons/user-minus.js b/dist/icons/user-minus.js
new file mode 100644
index 00000000..92113c53
--- /dev/null
+++ b/dist/icons/user-minus.js
@@ -0,0 +1,46 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Circle, Line, Path } from 'svgs';
+var UserMinus = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M16 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"
+ }), /*#__PURE__*/React.createElement(Circle, {
+ cx: "8.5",
+ cy: "7",
+ r: "4"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "23",
+ y1: "11",
+ x2: "17",
+ y2: "11"
+ }));
+});
+UserMinus.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+UserMinus.displayName = 'UserMinus';
+export default UserMinus;
\ No newline at end of file
diff --git a/dist/icons/user-plus.js b/dist/icons/user-plus.js
new file mode 100644
index 00000000..c137e1e6
--- /dev/null
+++ b/dist/icons/user-plus.js
@@ -0,0 +1,51 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Circle, Line, Path } from 'svgs';
+var UserPlus = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M16 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"
+ }), /*#__PURE__*/React.createElement(Circle, {
+ cx: "8.5",
+ cy: "7",
+ r: "4"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "20",
+ y1: "8",
+ x2: "20",
+ y2: "14"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "23",
+ y1: "11",
+ x2: "17",
+ y2: "11"
+ }));
+});
+UserPlus.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+UserPlus.displayName = 'UserPlus';
+export default UserPlus;
\ No newline at end of file
diff --git a/dist/icons/user-x.js b/dist/icons/user-x.js
new file mode 100644
index 00000000..d9d0bc09
--- /dev/null
+++ b/dist/icons/user-x.js
@@ -0,0 +1,51 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Circle, Line, Path } from 'svgs';
+var UserX = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M16 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"
+ }), /*#__PURE__*/React.createElement(Circle, {
+ cx: "8.5",
+ cy: "7",
+ r: "4"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "18",
+ y1: "8",
+ x2: "23",
+ y2: "13"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "23",
+ y1: "8",
+ x2: "18",
+ y2: "13"
+ }));
+});
+UserX.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+UserX.displayName = 'UserX';
+export default UserX;
\ No newline at end of file
diff --git a/dist/icons/user.js b/dist/icons/user.js
new file mode 100644
index 00000000..27db63e6
--- /dev/null
+++ b/dist/icons/user.js
@@ -0,0 +1,41 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Circle, Path } from 'svgs';
+var User = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"
+ }), /*#__PURE__*/React.createElement(Circle, {
+ cx: "12",
+ cy: "7",
+ r: "4"
+ }));
+});
+User.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+User.displayName = 'User';
+export default User;
\ No newline at end of file
diff --git a/dist/icons/users.js b/dist/icons/users.js
new file mode 100644
index 00000000..17de3b92
--- /dev/null
+++ b/dist/icons/users.js
@@ -0,0 +1,45 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Circle, Path } from 'svgs';
+var Users = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"
+ }), /*#__PURE__*/React.createElement(Circle, {
+ cx: "9",
+ cy: "7",
+ r: "4"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M23 21v-2a4 4 0 0 0-3-3.87"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M16 3.13a4 4 0 0 1 0 7.75"
+ }));
+});
+Users.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Users.displayName = 'Users';
+export default Users;
\ No newline at end of file
diff --git a/dist/icons/video-off.js b/dist/icons/video-off.js
new file mode 100644
index 00000000..a01e9350
--- /dev/null
+++ b/dist/icons/video-off.js
@@ -0,0 +1,42 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line, Path } from 'svgs';
+var VideoOff = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M16 16v1a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2h2m5.66 0H14a2 2 0 0 1 2 2v3.34l1 1L23 7v10"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "1",
+ y1: "1",
+ x2: "23",
+ y2: "23"
+ }));
+});
+VideoOff.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+VideoOff.displayName = 'VideoOff';
+export default VideoOff;
\ No newline at end of file
diff --git a/dist/icons/video.js b/dist/icons/video.js
new file mode 100644
index 00000000..36b571dd
--- /dev/null
+++ b/dist/icons/video.js
@@ -0,0 +1,44 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Polygon, Rect } from 'svgs';
+var Video = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Polygon, {
+ points: "23 7 16 12 23 17 23 7"
+ }), /*#__PURE__*/React.createElement(Rect, {
+ x: "1",
+ y: "5",
+ width: "15",
+ height: "14",
+ rx: "2",
+ ry: "2"
+ }));
+});
+Video.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Video.displayName = 'Video';
+export default Video;
\ No newline at end of file
diff --git a/dist/icons/voicemail.js b/dist/icons/voicemail.js
new file mode 100644
index 00000000..66e4afaa
--- /dev/null
+++ b/dist/icons/voicemail.js
@@ -0,0 +1,48 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Circle, Line } from 'svgs';
+var Voicemail = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Circle, {
+ cx: "5.5",
+ cy: "11.5",
+ r: "4.5"
+ }), /*#__PURE__*/React.createElement(Circle, {
+ cx: "18.5",
+ cy: "11.5",
+ r: "4.5"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "5.5",
+ y1: "16",
+ x2: "18.5",
+ y2: "16"
+ }));
+});
+Voicemail.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Voicemail.displayName = 'Voicemail';
+export default Voicemail;
\ No newline at end of file
diff --git a/dist/icons/volume-1.js b/dist/icons/volume-1.js
new file mode 100644
index 00000000..b0016b2d
--- /dev/null
+++ b/dist/icons/volume-1.js
@@ -0,0 +1,39 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Path, Polygon } from 'svgs';
+var Volume1 = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Polygon, {
+ points: "11 5 6 9 2 9 2 15 6 15 11 19 11 5"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M15.54 8.46a5 5 0 0 1 0 7.07"
+ }));
+});
+Volume1.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Volume1.displayName = 'Volume1';
+export default Volume1;
\ No newline at end of file
diff --git a/dist/icons/volume-2.js b/dist/icons/volume-2.js
new file mode 100644
index 00000000..34386009
--- /dev/null
+++ b/dist/icons/volume-2.js
@@ -0,0 +1,39 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Path, Polygon } from 'svgs';
+var Volume2 = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Polygon, {
+ points: "11 5 6 9 2 9 2 15 6 15 11 19 11 5"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M19.07 4.93a10 10 0 0 1 0 14.14M15.54 8.46a5 5 0 0 1 0 7.07"
+ }));
+});
+Volume2.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Volume2.displayName = 'Volume2';
+export default Volume2;
\ No newline at end of file
diff --git a/dist/icons/volume-x.js b/dist/icons/volume-x.js
new file mode 100644
index 00000000..9ad10aac
--- /dev/null
+++ b/dist/icons/volume-x.js
@@ -0,0 +1,47 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line, Polygon } from 'svgs';
+var VolumeX = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Polygon, {
+ points: "11 5 6 9 2 9 2 15 6 15 11 19 11 5"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "23",
+ y1: "9",
+ x2: "17",
+ y2: "15"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "17",
+ y1: "9",
+ x2: "23",
+ y2: "15"
+ }));
+});
+VolumeX.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+VolumeX.displayName = 'VolumeX';
+export default VolumeX;
\ No newline at end of file
diff --git a/dist/icons/volume.js b/dist/icons/volume.js
new file mode 100644
index 00000000..17afaf82
--- /dev/null
+++ b/dist/icons/volume.js
@@ -0,0 +1,37 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Polygon } from 'svgs';
+var Volume = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Polygon, {
+ points: "11 5 6 9 2 9 2 15 6 15 11 19 11 5"
+ }));
+});
+Volume.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Volume.displayName = 'Volume';
+export default Volume;
\ No newline at end of file
diff --git a/dist/icons/watch.js b/dist/icons/watch.js
new file mode 100644
index 00000000..c39cc430
--- /dev/null
+++ b/dist/icons/watch.js
@@ -0,0 +1,43 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Circle, Path, Polyline } from 'svgs';
+var Watch = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Circle, {
+ cx: "12",
+ cy: "12",
+ r: "7"
+ }), /*#__PURE__*/React.createElement(Polyline, {
+ points: "12 9 12 12 13.5 13.5"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M16.51 17.35l-.35 3.83a2 2 0 0 1-2 1.82H9.83a2 2 0 0 1-2-1.82l-.35-3.83m.01-10.7l.35-3.83A2 2 0 0 1 9.83 1h4.35a2 2 0 0 1 2 1.82l.35 3.83"
+ }));
+});
+Watch.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Watch.displayName = 'Watch';
+export default Watch;
\ No newline at end of file
diff --git a/dist/icons/wifi-off.js b/dist/icons/wifi-off.js
new file mode 100644
index 00000000..621690a5
--- /dev/null
+++ b/dist/icons/wifi-off.js
@@ -0,0 +1,55 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line, Path } from 'svgs';
+var WifiOff = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Line, {
+ x1: "1",
+ y1: "1",
+ x2: "23",
+ y2: "23"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M16.72 11.06A10.94 10.94 0 0 1 19 12.55"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M5 12.55a10.94 10.94 0 0 1 5.17-2.39"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M10.71 5.05A16 16 0 0 1 22.58 9"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M1.42 9a15.91 15.91 0 0 1 4.7-2.88"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M8.53 16.11a6 6 0 0 1 6.95 0"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "12",
+ y1: "20",
+ x2: "12.01",
+ y2: "20"
+ }));
+});
+WifiOff.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+WifiOff.displayName = 'WifiOff';
+export default WifiOff;
\ No newline at end of file
diff --git a/dist/icons/wifi.js b/dist/icons/wifi.js
new file mode 100644
index 00000000..5d8a09e0
--- /dev/null
+++ b/dist/icons/wifi.js
@@ -0,0 +1,46 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line, Path } from 'svgs';
+var Wifi = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M5 12.55a11 11 0 0 1 14.08 0"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M1.42 9a16 16 0 0 1 21.16 0"
+ }), /*#__PURE__*/React.createElement(Path, {
+ d: "M8.53 16.11a6 6 0 0 1 6.95 0"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "12",
+ y1: "20",
+ x2: "12.01",
+ y2: "20"
+ }));
+});
+Wifi.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Wifi.displayName = 'Wifi';
+export default Wifi;
\ No newline at end of file
diff --git a/dist/icons/wind.js b/dist/icons/wind.js
new file mode 100644
index 00000000..2e7ddc49
--- /dev/null
+++ b/dist/icons/wind.js
@@ -0,0 +1,37 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Path } from 'svgs';
+var Wind = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M9.59 4.59A2 2 0 1 1 11 8H2m10.59 11.41A2 2 0 1 0 14 16H2m15.73-8.27A2.5 2.5 0 1 1 19.5 12H2"
+ }));
+});
+Wind.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Wind.displayName = 'Wind';
+export default Wind;
\ No newline at end of file
diff --git a/dist/icons/x-circle.js b/dist/icons/x-circle.js
new file mode 100644
index 00000000..120606ae
--- /dev/null
+++ b/dist/icons/x-circle.js
@@ -0,0 +1,49 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Circle, Line } from 'svgs';
+var XCircle = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Circle, {
+ cx: "12",
+ cy: "12",
+ r: "10"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "15",
+ y1: "9",
+ x2: "9",
+ y2: "15"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "9",
+ y1: "9",
+ x2: "15",
+ y2: "15"
+ }));
+});
+XCircle.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+XCircle.displayName = 'XCircle';
+export default XCircle;
\ No newline at end of file
diff --git a/dist/icons/x-octagon.js b/dist/icons/x-octagon.js
new file mode 100644
index 00000000..ef809811
--- /dev/null
+++ b/dist/icons/x-octagon.js
@@ -0,0 +1,47 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line, Polygon } from 'svgs';
+var XOctagon = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Polygon, {
+ points: "7.86 2 16.14 2 22 7.86 22 16.14 16.14 22 7.86 22 2 16.14 2 7.86 7.86 2"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "15",
+ y1: "9",
+ x2: "9",
+ y2: "15"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "9",
+ y1: "9",
+ x2: "15",
+ y2: "15"
+ }));
+});
+XOctagon.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+XOctagon.displayName = 'XOctagon';
+export default XOctagon;
\ No newline at end of file
diff --git a/dist/icons/x-square.js b/dist/icons/x-square.js
new file mode 100644
index 00000000..17a284e4
--- /dev/null
+++ b/dist/icons/x-square.js
@@ -0,0 +1,52 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line, Rect } from 'svgs';
+var XSquare = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Rect, {
+ x: "3",
+ y: "3",
+ width: "18",
+ height: "18",
+ rx: "2",
+ ry: "2"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "9",
+ y1: "9",
+ x2: "15",
+ y2: "15"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "15",
+ y1: "9",
+ x2: "9",
+ y2: "15"
+ }));
+});
+XSquare.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+XSquare.displayName = 'XSquare';
+export default XSquare;
\ No newline at end of file
diff --git a/dist/icons/x.js b/dist/icons/x.js
new file mode 100644
index 00000000..d5839a1e
--- /dev/null
+++ b/dist/icons/x.js
@@ -0,0 +1,45 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line } from 'svgs';
+var X = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Line, {
+ x1: "18",
+ y1: "6",
+ x2: "6",
+ y2: "18"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "6",
+ y1: "6",
+ x2: "18",
+ y2: "18"
+ }));
+});
+X.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+X.displayName = 'X';
+export default X;
\ No newline at end of file
diff --git a/dist/icons/youtube.js b/dist/icons/youtube.js
new file mode 100644
index 00000000..a447e96f
--- /dev/null
+++ b/dist/icons/youtube.js
@@ -0,0 +1,39 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Path, Polygon } from 'svgs';
+var Youtube = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Path, {
+ d: "M22.54 6.42a2.78 2.78 0 0 0-1.94-2C18.88 4 12 4 12 4s-6.88 0-8.6.46a2.78 2.78 0 0 0-1.94 2A29 29 0 0 0 1 11.75a29 29 0 0 0 .46 5.33A2.78 2.78 0 0 0 3.4 19c1.72.46 8.6.46 8.6.46s6.88 0 8.6-.46a2.78 2.78 0 0 0 1.94-2 29 29 0 0 0 .46-5.25 29 29 0 0 0-.46-5.33z"
+ }), /*#__PURE__*/React.createElement(Polygon, {
+ points: "9.75 15.02 15.5 11.75 9.75 8.48 9.75 15.02"
+ }));
+});
+Youtube.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Youtube.displayName = 'Youtube';
+export default Youtube;
\ No newline at end of file
diff --git a/dist/icons/zap-off.js b/dist/icons/zap-off.js
new file mode 100644
index 00000000..85069629
--- /dev/null
+++ b/dist/icons/zap-off.js
@@ -0,0 +1,46 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Line, Polyline } from 'svgs';
+var ZapOff = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Polyline, {
+ points: "12.41 6.75 13 2 10.57 4.92"
+ }), /*#__PURE__*/React.createElement(Polyline, {
+ points: "18.57 12.91 21 10 15.66 10"
+ }), /*#__PURE__*/React.createElement(Polyline, {
+ points: "8 8 3 14 12 14 11 22 16 16"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "1",
+ y1: "1",
+ x2: "23",
+ y2: "23"
+ }));
+});
+ZapOff.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+ZapOff.displayName = 'ZapOff';
+export default ZapOff;
\ No newline at end of file
diff --git a/dist/icons/zap.js b/dist/icons/zap.js
new file mode 100644
index 00000000..2af40c1b
--- /dev/null
+++ b/dist/icons/zap.js
@@ -0,0 +1,37 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Polygon } from 'svgs';
+var Zap = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Polygon, {
+ points: "13 2 3 14 12 14 11 22 21 10 12 10 13 2"
+ }));
+});
+Zap.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+Zap.displayName = 'Zap';
+export default Zap;
\ No newline at end of file
diff --git a/dist/icons/zoom-in.js b/dist/icons/zoom-in.js
new file mode 100644
index 00000000..9e23793d
--- /dev/null
+++ b/dist/icons/zoom-in.js
@@ -0,0 +1,54 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Circle, Line } from 'svgs';
+var ZoomIn = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Circle, {
+ cx: "11",
+ cy: "11",
+ r: "8"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "21",
+ y1: "21",
+ x2: "16.65",
+ y2: "16.65"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "11",
+ y1: "8",
+ x2: "11",
+ y2: "14"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "8",
+ y1: "11",
+ x2: "14",
+ y2: "11"
+ }));
+});
+ZoomIn.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+ZoomIn.displayName = 'ZoomIn';
+export default ZoomIn;
\ No newline at end of file
diff --git a/dist/icons/zoom-out.js b/dist/icons/zoom-out.js
new file mode 100644
index 00000000..4508ac77
--- /dev/null
+++ b/dist/icons/zoom-out.js
@@ -0,0 +1,49 @@
+function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+import React, { forwardRef } from 'react';
+import PropTypes from 'prop-types';
+import Svg, { Circle, Line } from 'svgs';
+var ZoomOut = forwardRef(function (_ref, ref) {
+ var _ref$color = _ref.color,
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
+ _ref$size = _ref.size,
+ size = _ref$size === void 0 ? 24 : _ref$size,
+ rest = _objectWithoutProperties(_ref, ["color", "size"]);
+
+ return /*#__PURE__*/React.createElement(Svg, _extends({
+ ref: ref,
+ xmlns: "http://www.w3.org/2000/svg",
+ width: size,
+ height: size,
+ viewBox: "0 0 24 24",
+ fill: "none",
+ stroke: color,
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round"
+ }, rest), /*#__PURE__*/React.createElement(Circle, {
+ cx: "11",
+ cy: "11",
+ r: "8"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "21",
+ y1: "21",
+ x2: "16.65",
+ y2: "16.65"
+ }), /*#__PURE__*/React.createElement(Line, {
+ x1: "8",
+ y1: "11",
+ x2: "14",
+ y2: "11"
+ }));
+});
+ZoomOut.propTypes = {
+ color: PropTypes.string,
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
+};
+ZoomOut.displayName = 'ZoomOut';
+export default ZoomOut;
\ No newline at end of file
diff --git a/dist/index.d.ts b/dist/index.d.ts
new file mode 100644
index 00000000..ae32e9e6
--- /dev/null
+++ b/dist/index.d.ts
@@ -0,0 +1,295 @@
+///
+import { FC, SVGAttributes } from 'react';
+
+interface Props extends SVGAttributes {
+ color?: string;
+ size?: string | number;
+}
+
+type Icon = FC;
+export const Activity: Icon;
+export const Airplay: Icon;
+export const AlertCircle: Icon;
+export const AlertOctagon: Icon;
+export const AlertTriangle: Icon;
+export const AlignCenter: Icon;
+export const AlignJustify: Icon;
+export const AlignLeft: Icon;
+export const AlignRight: Icon;
+export const Anchor: Icon;
+export const Aperture: Icon;
+export const Archive: Icon;
+export const ArrowDownCircle: Icon;
+export const ArrowDownLeft: Icon;
+export const ArrowDownRight: Icon;
+export const ArrowDown: Icon;
+export const ArrowLeftCircle: Icon;
+export const ArrowLeft: Icon;
+export const ArrowRightCircle: Icon;
+export const ArrowRight: Icon;
+export const ArrowUpCircle: Icon;
+export const ArrowUpLeft: Icon;
+export const ArrowUpRight: Icon;
+export const ArrowUp: Icon;
+export const AtSign: Icon;
+export const Award: Icon;
+export const BarChart2: Icon;
+export const BarChart: Icon;
+export const BatteryCharging: Icon;
+export const Battery: Icon;
+export const BellOff: Icon;
+export const Bell: Icon;
+export const Bluetooth: Icon;
+export const Bold: Icon;
+export const BookOpen: Icon;
+export const Book: Icon;
+export const Bookmark: Icon;
+export const Box: Icon;
+export const Briefcase: Icon;
+export const Calendar: Icon;
+export const CameraOff: Icon;
+export const Camera: Icon;
+export const Cast: Icon;
+export const CheckCircle: Icon;
+export const CheckSquare: Icon;
+export const Check: Icon;
+export const ChevronDown: Icon;
+export const ChevronLeft: Icon;
+export const ChevronRight: Icon;
+export const ChevronUp: Icon;
+export const ChevronsDown: Icon;
+export const ChevronsLeft: Icon;
+export const ChevronsRight: Icon;
+export const ChevronsUp: Icon;
+export const Chrome: Icon;
+export const Circle: Icon;
+export const Clipboard: Icon;
+export const Clock: Icon;
+export const CloudDrizzle: Icon;
+export const CloudLightning: Icon;
+export const CloudOff: Icon;
+export const CloudRain: Icon;
+export const CloudSnow: Icon;
+export const Cloud: Icon;
+export const Code: Icon;
+export const Codepen: Icon;
+export const Codesandbox: Icon;
+export const Coffee: Icon;
+export const Columns: Icon;
+export const Command: Icon;
+export const Compass: Icon;
+export const Copy: Icon;
+export const CornerDownLeft: Icon;
+export const CornerDownRight: Icon;
+export const CornerLeftDown: Icon;
+export const CornerLeftUp: Icon;
+export const CornerRightDown: Icon;
+export const CornerRightUp: Icon;
+export const CornerUpLeft: Icon;
+export const CornerUpRight: Icon;
+export const Cpu: Icon;
+export const CreditCard: Icon;
+export const Crop: Icon;
+export const Crosshair: Icon;
+export const Database: Icon;
+export const Delete: Icon;
+export const Disc: Icon;
+export const DivideCircle: Icon;
+export const DivideSquare: Icon;
+export const Divide: Icon;
+export const DollarSign: Icon;
+export const DownloadCloud: Icon;
+export const Download: Icon;
+export const Dribbble: Icon;
+export const Droplet: Icon;
+export const Edit2: Icon;
+export const Edit3: Icon;
+export const Edit: Icon;
+export const ExternalLink: Icon;
+export const EyeOff: Icon;
+export const Eye: Icon;
+export const Facebook: Icon;
+export const FastForward: Icon;
+export const Feather: Icon;
+export const Figma: Icon;
+export const FileMinus: Icon;
+export const FilePlus: Icon;
+export const FileText: Icon;
+export const File: Icon;
+export const Film: Icon;
+export const Filter: Icon;
+export const Flag: Icon;
+export const FolderMinus: Icon;
+export const FolderPlus: Icon;
+export const Folder: Icon;
+export const Framer: Icon;
+export const Frown: Icon;
+export const Gift: Icon;
+export const GitBranch: Icon;
+export const GitCommit: Icon;
+export const GitMerge: Icon;
+export const GitPullRequest: Icon;
+export const GitHub: Icon;
+export const Gitlab: Icon;
+export const Globe: Icon;
+export const Grid: Icon;
+export const HardDrive: Icon;
+export const Hash: Icon;
+export const Headphones: Icon;
+export const Heart: Icon;
+export const HelpCircle: Icon;
+export const Hexagon: Icon;
+export const Home: Icon;
+export const Image: Icon;
+export const Inbox: Icon;
+export const Info: Icon;
+export const Instagram: Icon;
+export const Italic: Icon;
+export const Key: Icon;
+export const Layers: Icon;
+export const Layout: Icon;
+export const LifeBuoy: Icon;
+export const Link2: Icon;
+export const Link: Icon;
+export const Linkedin: Icon;
+export const List: Icon;
+export const Loader: Icon;
+export const Lock: Icon;
+export const LogIn: Icon;
+export const LogOut: Icon;
+export const Mail: Icon;
+export const MapPin: Icon;
+export const Map: Icon;
+export const Maximize2: Icon;
+export const Maximize: Icon;
+export const Meh: Icon;
+export const Menu: Icon;
+export const MessageCircle: Icon;
+export const MessageSquare: Icon;
+export const MicOff: Icon;
+export const Mic: Icon;
+export const Minimize2: Icon;
+export const Minimize: Icon;
+export const MinusCircle: Icon;
+export const MinusSquare: Icon;
+export const Minus: Icon;
+export const Monitor: Icon;
+export const Moon: Icon;
+export const MoreHorizontal: Icon;
+export const MoreVertical: Icon;
+export const MousePointer: Icon;
+export const Move: Icon;
+export const Music: Icon;
+export const Navigation2: Icon;
+export const Navigation: Icon;
+export const Octagon: Icon;
+export const Package: Icon;
+export const Paperclip: Icon;
+export const PauseCircle: Icon;
+export const Pause: Icon;
+export const PenTool: Icon;
+export const Percent: Icon;
+export const PhoneCall: Icon;
+export const PhoneForwarded: Icon;
+export const PhoneIncoming: Icon;
+export const PhoneMissed: Icon;
+export const PhoneOff: Icon;
+export const PhoneOutgoing: Icon;
+export const Phone: Icon;
+export const PieChart: Icon;
+export const PlayCircle: Icon;
+export const Play: Icon;
+export const PlusCircle: Icon;
+export const PlusSquare: Icon;
+export const Plus: Icon;
+export const Pocket: Icon;
+export const Power: Icon;
+export const Printer: Icon;
+export const Radio: Icon;
+export const RefreshCcw: Icon;
+export const RefreshCw: Icon;
+export const Repeat: Icon;
+export const Rewind: Icon;
+export const RotateCcw: Icon;
+export const RotateCw: Icon;
+export const Rss: Icon;
+export const Save: Icon;
+export const Scissors: Icon;
+export const Search: Icon;
+export const Send: Icon;
+export const Server: Icon;
+export const Settings: Icon;
+export const Share2: Icon;
+export const Share: Icon;
+export const ShieldOff: Icon;
+export const Shield: Icon;
+export const ShoppingBag: Icon;
+export const ShoppingCart: Icon;
+export const Shuffle: Icon;
+export const Sidebar: Icon;
+export const SkipBack: Icon;
+export const SkipForward: Icon;
+export const Slack: Icon;
+export const Slash: Icon;
+export const Sliders: Icon;
+export const Smartphone: Icon;
+export const Smile: Icon;
+export const Speaker: Icon;
+export const Square: Icon;
+export const Star: Icon;
+export const StopCircle: Icon;
+export const Sun: Icon;
+export const Sunrise: Icon;
+export const Sunset: Icon;
+export const Tablet: Icon;
+export const Tag: Icon;
+export const Target: Icon;
+export const Terminal: Icon;
+export const Thermometer: Icon;
+export const ThumbsDown: Icon;
+export const ThumbsUp: Icon;
+export const ToggleLeft: Icon;
+export const ToggleRight: Icon;
+export const Tool: Icon;
+export const Trash2: Icon;
+export const Trash: Icon;
+export const Trello: Icon;
+export const TrendingDown: Icon;
+export const TrendingUp: Icon;
+export const Triangle: Icon;
+export const Truck: Icon;
+export const Tv: Icon;
+export const Twitch: Icon;
+export const Twitter: Icon;
+export const Type: Icon;
+export const Umbrella: Icon;
+export const Underline: Icon;
+export const Unlock: Icon;
+export const UploadCloud: Icon;
+export const Upload: Icon;
+export const UserCheck: Icon;
+export const UserMinus: Icon;
+export const UserPlus: Icon;
+export const UserX: Icon;
+export const User: Icon;
+export const Users: Icon;
+export const VideoOff: Icon;
+export const Video: Icon;
+export const Voicemail: Icon;
+export const Volume1: Icon;
+export const Volume2: Icon;
+export const VolumeX: Icon;
+export const Volume: Icon;
+export const Watch: Icon;
+export const WifiOff: Icon;
+export const Wifi: Icon;
+export const Wind: Icon;
+export const XCircle: Icon;
+export const XOctagon: Icon;
+export const XSquare: Icon;
+export const X: Icon;
+export const Youtube: Icon;
+export const ZapOff: Icon;
+export const Zap: Icon;
+export const ZoomIn: Icon;
+export const ZoomOut: Icon;
diff --git a/dist/index.js b/dist/index.js
new file mode 100644
index 00000000..f60b5e2f
--- /dev/null
+++ b/dist/index.js
@@ -0,0 +1,286 @@
+export { default as Activity } from './icons/activity';
+export { default as Airplay } from './icons/airplay';
+export { default as AlertCircle } from './icons/alert-circle';
+export { default as AlertOctagon } from './icons/alert-octagon';
+export { default as AlertTriangle } from './icons/alert-triangle';
+export { default as AlignCenter } from './icons/align-center';
+export { default as AlignJustify } from './icons/align-justify';
+export { default as AlignLeft } from './icons/align-left';
+export { default as AlignRight } from './icons/align-right';
+export { default as Anchor } from './icons/anchor';
+export { default as Aperture } from './icons/aperture';
+export { default as Archive } from './icons/archive';
+export { default as ArrowDownCircle } from './icons/arrow-down-circle';
+export { default as ArrowDownLeft } from './icons/arrow-down-left';
+export { default as ArrowDownRight } from './icons/arrow-down-right';
+export { default as ArrowDown } from './icons/arrow-down';
+export { default as ArrowLeftCircle } from './icons/arrow-left-circle';
+export { default as ArrowLeft } from './icons/arrow-left';
+export { default as ArrowRightCircle } from './icons/arrow-right-circle';
+export { default as ArrowRight } from './icons/arrow-right';
+export { default as ArrowUpCircle } from './icons/arrow-up-circle';
+export { default as ArrowUpLeft } from './icons/arrow-up-left';
+export { default as ArrowUpRight } from './icons/arrow-up-right';
+export { default as ArrowUp } from './icons/arrow-up';
+export { default as AtSign } from './icons/at-sign';
+export { default as Award } from './icons/award';
+export { default as BarChart2 } from './icons/bar-chart-2';
+export { default as BarChart } from './icons/bar-chart';
+export { default as BatteryCharging } from './icons/battery-charging';
+export { default as Battery } from './icons/battery';
+export { default as BellOff } from './icons/bell-off';
+export { default as Bell } from './icons/bell';
+export { default as Bluetooth } from './icons/bluetooth';
+export { default as Bold } from './icons/bold';
+export { default as BookOpen } from './icons/book-open';
+export { default as Book } from './icons/book';
+export { default as Bookmark } from './icons/bookmark';
+export { default as Box } from './icons/box';
+export { default as Briefcase } from './icons/briefcase';
+export { default as Calendar } from './icons/calendar';
+export { default as CameraOff } from './icons/camera-off';
+export { default as Camera } from './icons/camera';
+export { default as Cast } from './icons/cast';
+export { default as CheckCircle } from './icons/check-circle';
+export { default as CheckSquare } from './icons/check-square';
+export { default as Check } from './icons/check';
+export { default as ChevronDown } from './icons/chevron-down';
+export { default as ChevronLeft } from './icons/chevron-left';
+export { default as ChevronRight } from './icons/chevron-right';
+export { default as ChevronUp } from './icons/chevron-up';
+export { default as ChevronsDown } from './icons/chevrons-down';
+export { default as ChevronsLeft } from './icons/chevrons-left';
+export { default as ChevronsRight } from './icons/chevrons-right';
+export { default as ChevronsUp } from './icons/chevrons-up';
+export { default as Chrome } from './icons/chrome';
+export { default as Circle } from './icons/circle';
+export { default as Clipboard } from './icons/clipboard';
+export { default as Clock } from './icons/clock';
+export { default as CloudDrizzle } from './icons/cloud-drizzle';
+export { default as CloudLightning } from './icons/cloud-lightning';
+export { default as CloudOff } from './icons/cloud-off';
+export { default as CloudRain } from './icons/cloud-rain';
+export { default as CloudSnow } from './icons/cloud-snow';
+export { default as Cloud } from './icons/cloud';
+export { default as Code } from './icons/code';
+export { default as Codepen } from './icons/codepen';
+export { default as Codesandbox } from './icons/codesandbox';
+export { default as Coffee } from './icons/coffee';
+export { default as Columns } from './icons/columns';
+export { default as Command } from './icons/command';
+export { default as Compass } from './icons/compass';
+export { default as Copy } from './icons/copy';
+export { default as CornerDownLeft } from './icons/corner-down-left';
+export { default as CornerDownRight } from './icons/corner-down-right';
+export { default as CornerLeftDown } from './icons/corner-left-down';
+export { default as CornerLeftUp } from './icons/corner-left-up';
+export { default as CornerRightDown } from './icons/corner-right-down';
+export { default as CornerRightUp } from './icons/corner-right-up';
+export { default as CornerUpLeft } from './icons/corner-up-left';
+export { default as CornerUpRight } from './icons/corner-up-right';
+export { default as Cpu } from './icons/cpu';
+export { default as CreditCard } from './icons/credit-card';
+export { default as Crop } from './icons/crop';
+export { default as Crosshair } from './icons/crosshair';
+export { default as Database } from './icons/database';
+export { default as Delete } from './icons/delete';
+export { default as Disc } from './icons/disc';
+export { default as DivideCircle } from './icons/divide-circle';
+export { default as DivideSquare } from './icons/divide-square';
+export { default as Divide } from './icons/divide';
+export { default as DollarSign } from './icons/dollar-sign';
+export { default as DownloadCloud } from './icons/download-cloud';
+export { default as Download } from './icons/download';
+export { default as Dribbble } from './icons/dribbble';
+export { default as Droplet } from './icons/droplet';
+export { default as Edit2 } from './icons/edit-2';
+export { default as Edit3 } from './icons/edit-3';
+export { default as Edit } from './icons/edit';
+export { default as ExternalLink } from './icons/external-link';
+export { default as EyeOff } from './icons/eye-off';
+export { default as Eye } from './icons/eye';
+export { default as Facebook } from './icons/facebook';
+export { default as FastForward } from './icons/fast-forward';
+export { default as Feather } from './icons/feather';
+export { default as Figma } from './icons/figma';
+export { default as FileMinus } from './icons/file-minus';
+export { default as FilePlus } from './icons/file-plus';
+export { default as FileText } from './icons/file-text';
+export { default as File } from './icons/file';
+export { default as Film } from './icons/film';
+export { default as Filter } from './icons/filter';
+export { default as Flag } from './icons/flag';
+export { default as FolderMinus } from './icons/folder-minus';
+export { default as FolderPlus } from './icons/folder-plus';
+export { default as Folder } from './icons/folder';
+export { default as Framer } from './icons/framer';
+export { default as Frown } from './icons/frown';
+export { default as Gift } from './icons/gift';
+export { default as GitBranch } from './icons/git-branch';
+export { default as GitCommit } from './icons/git-commit';
+export { default as GitMerge } from './icons/git-merge';
+export { default as GitPullRequest } from './icons/git-pull-request';
+export { default as GitHub } from './icons/github';
+export { default as Gitlab } from './icons/gitlab';
+export { default as Globe } from './icons/globe';
+export { default as Grid } from './icons/grid';
+export { default as HardDrive } from './icons/hard-drive';
+export { default as Hash } from './icons/hash';
+export { default as Headphones } from './icons/headphones';
+export { default as Heart } from './icons/heart';
+export { default as HelpCircle } from './icons/help-circle';
+export { default as Hexagon } from './icons/hexagon';
+export { default as Home } from './icons/home';
+export { default as Image } from './icons/image';
+export { default as Inbox } from './icons/inbox';
+export { default as Info } from './icons/info';
+export { default as Instagram } from './icons/instagram';
+export { default as Italic } from './icons/italic';
+export { default as Key } from './icons/key';
+export { default as Layers } from './icons/layers';
+export { default as Layout } from './icons/layout';
+export { default as LifeBuoy } from './icons/life-buoy';
+export { default as Link2 } from './icons/link-2';
+export { default as Link } from './icons/link';
+export { default as Linkedin } from './icons/linkedin';
+export { default as List } from './icons/list';
+export { default as Loader } from './icons/loader';
+export { default as Lock } from './icons/lock';
+export { default as LogIn } from './icons/log-in';
+export { default as LogOut } from './icons/log-out';
+export { default as Mail } from './icons/mail';
+export { default as MapPin } from './icons/map-pin';
+export { default as Map } from './icons/map';
+export { default as Maximize2 } from './icons/maximize-2';
+export { default as Maximize } from './icons/maximize';
+export { default as Meh } from './icons/meh';
+export { default as Menu } from './icons/menu';
+export { default as MessageCircle } from './icons/message-circle';
+export { default as MessageSquare } from './icons/message-square';
+export { default as MicOff } from './icons/mic-off';
+export { default as Mic } from './icons/mic';
+export { default as Minimize2 } from './icons/minimize-2';
+export { default as Minimize } from './icons/minimize';
+export { default as MinusCircle } from './icons/minus-circle';
+export { default as MinusSquare } from './icons/minus-square';
+export { default as Minus } from './icons/minus';
+export { default as Monitor } from './icons/monitor';
+export { default as Moon } from './icons/moon';
+export { default as MoreHorizontal } from './icons/more-horizontal';
+export { default as MoreVertical } from './icons/more-vertical';
+export { default as MousePointer } from './icons/mouse-pointer';
+export { default as Move } from './icons/move';
+export { default as Music } from './icons/music';
+export { default as Navigation2 } from './icons/navigation-2';
+export { default as Navigation } from './icons/navigation';
+export { default as Octagon } from './icons/octagon';
+export { default as Package } from './icons/package';
+export { default as Paperclip } from './icons/paperclip';
+export { default as PauseCircle } from './icons/pause-circle';
+export { default as Pause } from './icons/pause';
+export { default as PenTool } from './icons/pen-tool';
+export { default as Percent } from './icons/percent';
+export { default as PhoneCall } from './icons/phone-call';
+export { default as PhoneForwarded } from './icons/phone-forwarded';
+export { default as PhoneIncoming } from './icons/phone-incoming';
+export { default as PhoneMissed } from './icons/phone-missed';
+export { default as PhoneOff } from './icons/phone-off';
+export { default as PhoneOutgoing } from './icons/phone-outgoing';
+export { default as Phone } from './icons/phone';
+export { default as PieChart } from './icons/pie-chart';
+export { default as PlayCircle } from './icons/play-circle';
+export { default as Play } from './icons/play';
+export { default as PlusCircle } from './icons/plus-circle';
+export { default as PlusSquare } from './icons/plus-square';
+export { default as Plus } from './icons/plus';
+export { default as Pocket } from './icons/pocket';
+export { default as Power } from './icons/power';
+export { default as Printer } from './icons/printer';
+export { default as Radio } from './icons/radio';
+export { default as RefreshCcw } from './icons/refresh-ccw';
+export { default as RefreshCw } from './icons/refresh-cw';
+export { default as Repeat } from './icons/repeat';
+export { default as Rewind } from './icons/rewind';
+export { default as RotateCcw } from './icons/rotate-ccw';
+export { default as RotateCw } from './icons/rotate-cw';
+export { default as Rss } from './icons/rss';
+export { default as Save } from './icons/save';
+export { default as Scissors } from './icons/scissors';
+export { default as Search } from './icons/search';
+export { default as Send } from './icons/send';
+export { default as Server } from './icons/server';
+export { default as Settings } from './icons/settings';
+export { default as Share2 } from './icons/share-2';
+export { default as Share } from './icons/share';
+export { default as ShieldOff } from './icons/shield-off';
+export { default as Shield } from './icons/shield';
+export { default as ShoppingBag } from './icons/shopping-bag';
+export { default as ShoppingCart } from './icons/shopping-cart';
+export { default as Shuffle } from './icons/shuffle';
+export { default as Sidebar } from './icons/sidebar';
+export { default as SkipBack } from './icons/skip-back';
+export { default as SkipForward } from './icons/skip-forward';
+export { default as Slack } from './icons/slack';
+export { default as Slash } from './icons/slash';
+export { default as Sliders } from './icons/sliders';
+export { default as Smartphone } from './icons/smartphone';
+export { default as Smile } from './icons/smile';
+export { default as Speaker } from './icons/speaker';
+export { default as Square } from './icons/square';
+export { default as Star } from './icons/star';
+export { default as StopCircle } from './icons/stop-circle';
+export { default as Sun } from './icons/sun';
+export { default as Sunrise } from './icons/sunrise';
+export { default as Sunset } from './icons/sunset';
+export { default as Tablet } from './icons/tablet';
+export { default as Tag } from './icons/tag';
+export { default as Target } from './icons/target';
+export { default as Terminal } from './icons/terminal';
+export { default as Thermometer } from './icons/thermometer';
+export { default as ThumbsDown } from './icons/thumbs-down';
+export { default as ThumbsUp } from './icons/thumbs-up';
+export { default as ToggleLeft } from './icons/toggle-left';
+export { default as ToggleRight } from './icons/toggle-right';
+export { default as Tool } from './icons/tool';
+export { default as Trash2 } from './icons/trash-2';
+export { default as Trash } from './icons/trash';
+export { default as Trello } from './icons/trello';
+export { default as TrendingDown } from './icons/trending-down';
+export { default as TrendingUp } from './icons/trending-up';
+export { default as Triangle } from './icons/triangle';
+export { default as Truck } from './icons/truck';
+export { default as Tv } from './icons/tv';
+export { default as Twitch } from './icons/twitch';
+export { default as Twitter } from './icons/twitter';
+export { default as Type } from './icons/type';
+export { default as Umbrella } from './icons/umbrella';
+export { default as Underline } from './icons/underline';
+export { default as Unlock } from './icons/unlock';
+export { default as UploadCloud } from './icons/upload-cloud';
+export { default as Upload } from './icons/upload';
+export { default as UserCheck } from './icons/user-check';
+export { default as UserMinus } from './icons/user-minus';
+export { default as UserPlus } from './icons/user-plus';
+export { default as UserX } from './icons/user-x';
+export { default as User } from './icons/user';
+export { default as Users } from './icons/users';
+export { default as VideoOff } from './icons/video-off';
+export { default as Video } from './icons/video';
+export { default as Voicemail } from './icons/voicemail';
+export { default as Volume1 } from './icons/volume-1';
+export { default as Volume2 } from './icons/volume-2';
+export { default as VolumeX } from './icons/volume-x';
+export { default as Volume } from './icons/volume';
+export { default as Watch } from './icons/watch';
+export { default as WifiOff } from './icons/wifi-off';
+export { default as Wifi } from './icons/wifi';
+export { default as Wind } from './icons/wind';
+export { default as XCircle } from './icons/x-circle';
+export { default as XOctagon } from './icons/x-octagon';
+export { default as XSquare } from './icons/x-square';
+export { default as X } from './icons/x';
+export { default as Youtube } from './icons/youtube';
+export { default as ZapOff } from './icons/zap-off';
+export { default as Zap } from './icons/zap';
+export { default as ZoomIn } from './icons/zoom-in';
+export { default as ZoomOut } from './icons/zoom-out';
\ No newline at end of file
diff --git a/mock.js b/mock.js
new file mode 100644
index 00000000..531dc4e2
--- /dev/null
+++ b/mock.js
@@ -0,0 +1,301 @@
+/**
+ * Mock implementation for test runners.
+ *
+ * Example:
+ *
+ * ```js
+ * jest.mock('react-feather', () => require('react-feather/mock'));
+ * ```
+ */
+
+const Svg = require('svgs');
+
+module.exports = {
+ __esModule: true,
+ Activity: Svg,
+ Airplay: Svg,
+ AlertCircle: Svg,
+ AlertOctagon: Svg,
+ AlertTriangle: Svg,
+ AlignCenter: Svg,
+ AlignJustify: Svg,
+ AlignLeft: Svg,
+ AlignRight: Svg,
+ Anchor: Svg,
+ Aperture: Svg,
+ Archive: Svg,
+ ArrowDownCircle: Svg,
+ ArrowDownLeft: Svg,
+ ArrowDownRight: Svg,
+ ArrowDown: Svg,
+ ArrowLeftCircle: Svg,
+ ArrowLeft: Svg,
+ ArrowRightCircle: Svg,
+ ArrowRight: Svg,
+ ArrowUpCircle: Svg,
+ ArrowUpLeft: Svg,
+ ArrowUpRight: Svg,
+ ArrowUp: Svg,
+ AtSign: Svg,
+ Award: Svg,
+ BarChart2: Svg,
+ BarChart: Svg,
+ BatteryCharging: Svg,
+ Battery: Svg,
+ BellOff: Svg,
+ Bell: Svg,
+ Bluetooth: Svg,
+ Bold: Svg,
+ BookOpen: Svg,
+ Book: Svg,
+ Bookmark: Svg,
+ Box: Svg,
+ Briefcase: Svg,
+ Calendar: Svg,
+ CameraOff: Svg,
+ Camera: Svg,
+ Cast: Svg,
+ CheckCircle: Svg,
+ CheckSquare: Svg,
+ Check: Svg,
+ ChevronDown: Svg,
+ ChevronLeft: Svg,
+ ChevronRight: Svg,
+ ChevronUp: Svg,
+ ChevronsDown: Svg,
+ ChevronsLeft: Svg,
+ ChevronsRight: Svg,
+ ChevronsUp: Svg,
+ Chrome: Svg,
+ Circle: Svg,
+ Clipboard: Svg,
+ Clock: Svg,
+ CloudDrizzle: Svg,
+ CloudLightning: Svg,
+ CloudOff: Svg,
+ CloudRain: Svg,
+ CloudSnow: Svg,
+ Cloud: Svg,
+ Code: Svg,
+ Codepen: Svg,
+ Codesandbox: Svg,
+ Coffee: Svg,
+ Columns: Svg,
+ Command: Svg,
+ Compass: Svg,
+ Copy: Svg,
+ CornerDownLeft: Svg,
+ CornerDownRight: Svg,
+ CornerLeftDown: Svg,
+ CornerLeftUp: Svg,
+ CornerRightDown: Svg,
+ CornerRightUp: Svg,
+ CornerUpLeft: Svg,
+ CornerUpRight: Svg,
+ Cpu: Svg,
+ CreditCard: Svg,
+ Crop: Svg,
+ Crosshair: Svg,
+ Database: Svg,
+ Delete: Svg,
+ Disc: Svg,
+ DivideCircle: Svg,
+ DivideSquare: Svg,
+ Divide: Svg,
+ DollarSign: Svg,
+ DownloadCloud: Svg,
+ Download: Svg,
+ Dribbble: Svg,
+ Droplet: Svg,
+ Edit2: Svg,
+ Edit3: Svg,
+ Edit: Svg,
+ ExternalLink: Svg,
+ EyeOff: Svg,
+ Eye: Svg,
+ Facebook: Svg,
+ FastForward: Svg,
+ Feather: Svg,
+ Figma: Svg,
+ FileMinus: Svg,
+ FilePlus: Svg,
+ FileText: Svg,
+ File: Svg,
+ Film: Svg,
+ Filter: Svg,
+ Flag: Svg,
+ FolderMinus: Svg,
+ FolderPlus: Svg,
+ Folder: Svg,
+ Framer: Svg,
+ Frown: Svg,
+ Gift: Svg,
+ GitBranch: Svg,
+ GitCommit: Svg,
+ GitMerge: Svg,
+ GitPullRequest: Svg,
+ GitHub: Svg,
+ Gitlab: Svg,
+ Globe: Svg,
+ Grid: Svg,
+ HardDrive: Svg,
+ Hash: Svg,
+ Headphones: Svg,
+ Heart: Svg,
+ HelpCircle: Svg,
+ Hexagon: Svg,
+ Home: Svg,
+ Image: Svg,
+ Inbox: Svg,
+ Info: Svg,
+ Instagram: Svg,
+ Italic: Svg,
+ Key: Svg,
+ Layers: Svg,
+ Layout: Svg,
+ LifeBuoy: Svg,
+ Link2: Svg,
+ Link: Svg,
+ Linkedin: Svg,
+ List: Svg,
+ Loader: Svg,
+ Lock: Svg,
+ LogIn: Svg,
+ LogOut: Svg,
+ Mail: Svg,
+ MapPin: Svg,
+ Map: Svg,
+ Maximize2: Svg,
+ Maximize: Svg,
+ Meh: Svg,
+ Menu: Svg,
+ MessageCircle: Svg,
+ MessageSquare: Svg,
+ MicOff: Svg,
+ Mic: Svg,
+ Minimize2: Svg,
+ Minimize: Svg,
+ MinusCircle: Svg,
+ MinusSquare: Svg,
+ Minus: Svg,
+ Monitor: Svg,
+ Moon: Svg,
+ MoreHorizontal: Svg,
+ MoreVertical: Svg,
+ MousePointer: Svg,
+ Move: Svg,
+ Music: Svg,
+ Navigation2: Svg,
+ Navigation: Svg,
+ Octagon: Svg,
+ Package: Svg,
+ Paperclip: Svg,
+ PauseCircle: Svg,
+ Pause: Svg,
+ PenTool: Svg,
+ Percent: Svg,
+ PhoneCall: Svg,
+ PhoneForwarded: Svg,
+ PhoneIncoming: Svg,
+ PhoneMissed: Svg,
+ PhoneOff: Svg,
+ PhoneOutgoing: Svg,
+ Phone: Svg,
+ PieChart: Svg,
+ PlayCircle: Svg,
+ Play: Svg,
+ PlusCircle: Svg,
+ PlusSquare: Svg,
+ Plus: Svg,
+ Pocket: Svg,
+ Power: Svg,
+ Printer: Svg,
+ Radio: Svg,
+ RefreshCcw: Svg,
+ RefreshCw: Svg,
+ Repeat: Svg,
+ Rewind: Svg,
+ RotateCcw: Svg,
+ RotateCw: Svg,
+ Rss: Svg,
+ Save: Svg,
+ Scissors: Svg,
+ Search: Svg,
+ Send: Svg,
+ Server: Svg,
+ Settings: Svg,
+ Share2: Svg,
+ Share: Svg,
+ ShieldOff: Svg,
+ Shield: Svg,
+ ShoppingBag: Svg,
+ ShoppingCart: Svg,
+ Shuffle: Svg,
+ Sidebar: Svg,
+ SkipBack: Svg,
+ SkipForward: Svg,
+ Slack: Svg,
+ Slash: Svg,
+ Sliders: Svg,
+ Smartphone: Svg,
+ Smile: Svg,
+ Speaker: Svg,
+ Square: Svg,
+ Star: Svg,
+ StopCircle: Svg,
+ Sun: Svg,
+ Sunrise: Svg,
+ Sunset: Svg,
+ Tablet: Svg,
+ Tag: Svg,
+ Target: Svg,
+ Terminal: Svg,
+ Thermometer: Svg,
+ ThumbsDown: Svg,
+ ThumbsUp: Svg,
+ ToggleLeft: Svg,
+ ToggleRight: Svg,
+ Tool: Svg,
+ Trash2: Svg,
+ Trash: Svg,
+ Trello: Svg,
+ TrendingDown: Svg,
+ TrendingUp: Svg,
+ Triangle: Svg,
+ Truck: Svg,
+ Tv: Svg,
+ Twitch: Svg,
+ Twitter: Svg,
+ Type: Svg,
+ Umbrella: Svg,
+ Underline: Svg,
+ Unlock: Svg,
+ UploadCloud: Svg,
+ Upload: Svg,
+ UserCheck: Svg,
+ UserMinus: Svg,
+ UserPlus: Svg,
+ UserX: Svg,
+ User: Svg,
+ Users: Svg,
+ VideoOff: Svg,
+ Video: Svg,
+ Voicemail: Svg,
+ Volume1: Svg,
+ Volume2: Svg,
+ VolumeX: Svg,
+ Volume: Svg,
+ Watch: Svg,
+ WifiOff: Svg,
+ Wifi: Svg,
+ Wind: Svg,
+ XCircle: Svg,
+ XOctagon: Svg,
+ XSquare: Svg,
+ X: Svg,
+ Youtube: Svg,
+ ZapOff: Svg,
+ Zap: Svg,
+ ZoomIn: Svg,
+ ZoomOut: Svg,
+}
diff --git a/package-lock.json b/package-lock.json
index c81a6b3b..bd9a6aab 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -5670,6 +5670,11 @@
"glob": "^7.1.3"
}
},
+ "rip-out": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/rip-out/-/rip-out-1.0.0.tgz",
+ "integrity": "sha1-1iKntgfhza3IsHm/n7PaQsE7mOM="
+ },
"rollup": {
"version": "2.3.3",
"resolved": "https://registry.npmjs.org/rollup/-/rollup-2.3.3.tgz",
@@ -6365,6 +6370,15 @@
"has-flag": "^3.0.0"
}
},
+ "svgs": {
+ "version": "4.1.1",
+ "resolved": "https://registry.npmjs.org/svgs/-/svgs-4.1.1.tgz",
+ "integrity": "sha512-5QDy6nu4EcBvebNoRQ6iiXfqt/IB2hKdeh5rXwEuoywKX/YtfK8xFggQWSwR24dKpK+C1n7kzBAhPa0bUOrV6A==",
+ "requires": {
+ "prop-types": "^15.5.10",
+ "rip-out": "^1.0.0"
+ }
+ },
"table": {
"version": "5.4.6",
"resolved": "https://registry.npmjs.org/table/-/table-5.4.6.tgz",
diff --git a/package.json b/package.json
index 87628231..fa7a4ff4 100644
--- a/package.json
+++ b/package.json
@@ -1,8 +1,8 @@
{
"name": "react-feather",
- "version": "2.0.8",
+ "version": "2.0.12",
"description": "React component for Feather icons",
- "main": "build/index.js",
+ "main": "src/index.js",
"module": "dist/index.js",
"sideEffects": false,
"typings": "dist/index.d.ts",
@@ -59,6 +59,7 @@
"react": "^16.8.6"
},
"dependencies": {
- "prop-types": "^15.7.2"
+ "prop-types": "^15.7.2",
+ "svgs": "^4.1.1"
}
}
diff --git a/rollup.config.js b/rollup.config.js
index f6773dac..435a96e0 100644
--- a/rollup.config.js
+++ b/rollup.config.js
@@ -6,7 +6,7 @@ export default {
file: 'build/index.js',
format: 'cjs',
},
- external: ['react', 'prop-types'],
+ external: ['react', 'prop-types', 'svgs'],
plugins: [
babel({
exclude: 'node_modules/**',
diff --git a/src/icons/activity.js b/src/icons/activity.js
index ed1d9187..981a92d8 100644
--- a/src/icons/activity.js
+++ b/src/icons/activity.js
@@ -1,9 +1,12 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Polyline,
+} from 'svgs';
const Activity = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
);
});
diff --git a/src/icons/airplay.js b/src/icons/airplay.js
index 8cdba4ed..7799ddba 100644
--- a/src/icons/airplay.js
+++ b/src/icons/airplay.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Path,
+ Polygon,
+} from 'svgs';
const Airplay = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/alert-circle.js b/src/icons/alert-circle.js
index 57de0e75..5366fc53 100644
--- a/src/icons/alert-circle.js
+++ b/src/icons/alert-circle.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Circle,
+ Line,
+} from 'svgs';
const AlertCircle = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
);
});
diff --git a/src/icons/alert-octagon.js b/src/icons/alert-octagon.js
index d86f7114..d53781d7 100644
--- a/src/icons/alert-octagon.js
+++ b/src/icons/alert-octagon.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+ Polygon,
+} from 'svgs';
const AlertOctagon = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
);
});
diff --git a/src/icons/alert-triangle.js b/src/icons/alert-triangle.js
index 5a1c373d..f224280e 100644
--- a/src/icons/alert-triangle.js
+++ b/src/icons/alert-triangle.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+ Path,
+} from 'svgs';
const AlertTriangle = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
);
});
diff --git a/src/icons/align-center.js b/src/icons/align-center.js
index e0dd2cde..91d5c6cf 100644
--- a/src/icons/align-center.js
+++ b/src/icons/align-center.js
@@ -1,9 +1,12 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+} from 'svgs';
const AlignCenter = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
+
);
});
diff --git a/src/icons/align-justify.js b/src/icons/align-justify.js
index c638b961..df1ff770 100644
--- a/src/icons/align-justify.js
+++ b/src/icons/align-justify.js
@@ -1,9 +1,12 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+} from 'svgs';
const AlignJustify = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
+
);
});
diff --git a/src/icons/align-left.js b/src/icons/align-left.js
index 755c5b1f..70902949 100644
--- a/src/icons/align-left.js
+++ b/src/icons/align-left.js
@@ -1,9 +1,12 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+} from 'svgs';
const AlignLeft = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
+
);
});
diff --git a/src/icons/align-right.js b/src/icons/align-right.js
index 13309cd9..c2cbbcb9 100644
--- a/src/icons/align-right.js
+++ b/src/icons/align-right.js
@@ -1,9 +1,12 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+} from 'svgs';
const AlignRight = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
+
);
});
diff --git a/src/icons/anchor.js b/src/icons/anchor.js
index b3006cc5..2bc5cab6 100644
--- a/src/icons/anchor.js
+++ b/src/icons/anchor.js
@@ -1,9 +1,14 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Circle,
+ Line,
+ Path,
+} from 'svgs';
const Anchor = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
);
});
diff --git a/src/icons/aperture.js b/src/icons/aperture.js
index b94cdd1e..3688476e 100644
--- a/src/icons/aperture.js
+++ b/src/icons/aperture.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Circle,
+ Line,
+} from 'svgs';
const Aperture = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
+
+
+
+
);
});
diff --git a/src/icons/archive.js b/src/icons/archive.js
index 150c633d..9907e380 100644
--- a/src/icons/archive.js
+++ b/src/icons/archive.js
@@ -1,9 +1,14 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+ Polyline,
+ Rect,
+} from 'svgs';
const Archive = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
);
});
diff --git a/src/icons/arrow-down-circle.js b/src/icons/arrow-down-circle.js
index 3c7f7a9b..8b1a4d7e 100644
--- a/src/icons/arrow-down-circle.js
+++ b/src/icons/arrow-down-circle.js
@@ -1,9 +1,14 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Circle,
+ Line,
+ Polyline,
+} from 'svgs';
const ArrowDownCircle = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
);
});
diff --git a/src/icons/arrow-down-left.js b/src/icons/arrow-down-left.js
index 68737b75..9c7feb08 100644
--- a/src/icons/arrow-down-left.js
+++ b/src/icons/arrow-down-left.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+ Polyline,
+} from 'svgs';
const ArrowDownLeft = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/arrow-down-right.js b/src/icons/arrow-down-right.js
index bc3a89db..aac8f26b 100644
--- a/src/icons/arrow-down-right.js
+++ b/src/icons/arrow-down-right.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+ Polyline,
+} from 'svgs';
const ArrowDownRight = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/arrow-down.js b/src/icons/arrow-down.js
index 679a41db..effeed8a 100644
--- a/src/icons/arrow-down.js
+++ b/src/icons/arrow-down.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+ Polyline,
+} from 'svgs';
const ArrowDown = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/arrow-left-circle.js b/src/icons/arrow-left-circle.js
index 617e9c08..0e282ee5 100644
--- a/src/icons/arrow-left-circle.js
+++ b/src/icons/arrow-left-circle.js
@@ -1,9 +1,14 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Circle,
+ Line,
+ Polyline,
+} from 'svgs';
const ArrowLeftCircle = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
);
});
diff --git a/src/icons/arrow-left.js b/src/icons/arrow-left.js
index 2026cf71..cca9f51a 100644
--- a/src/icons/arrow-left.js
+++ b/src/icons/arrow-left.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+ Polyline,
+} from 'svgs';
const ArrowLeft = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/arrow-right-circle.js b/src/icons/arrow-right-circle.js
index 0ef0e2d5..4f7808ad 100644
--- a/src/icons/arrow-right-circle.js
+++ b/src/icons/arrow-right-circle.js
@@ -1,9 +1,14 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Circle,
+ Line,
+ Polyline,
+} from 'svgs';
const ArrowRightCircle = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
);
});
diff --git a/src/icons/arrow-right.js b/src/icons/arrow-right.js
index b6183235..37ce3224 100644
--- a/src/icons/arrow-right.js
+++ b/src/icons/arrow-right.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+ Polyline,
+} from 'svgs';
const ArrowRight = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/arrow-up-circle.js b/src/icons/arrow-up-circle.js
index 2decd5af..f68b487f 100644
--- a/src/icons/arrow-up-circle.js
+++ b/src/icons/arrow-up-circle.js
@@ -1,9 +1,14 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Circle,
+ Line,
+ Polyline,
+} from 'svgs';
const ArrowUpCircle = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
);
});
diff --git a/src/icons/arrow-up-left.js b/src/icons/arrow-up-left.js
index bbb91d96..c5a0ceb3 100644
--- a/src/icons/arrow-up-left.js
+++ b/src/icons/arrow-up-left.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+ Polyline,
+} from 'svgs';
const ArrowUpLeft = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/arrow-up-right.js b/src/icons/arrow-up-right.js
index 2d055686..475c92ef 100644
--- a/src/icons/arrow-up-right.js
+++ b/src/icons/arrow-up-right.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+ Polyline,
+} from 'svgs';
const ArrowUpRight = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/arrow-up.js b/src/icons/arrow-up.js
index e93e08e6..3f63a714 100644
--- a/src/icons/arrow-up.js
+++ b/src/icons/arrow-up.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+ Polyline,
+} from 'svgs';
const ArrowUp = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/at-sign.js b/src/icons/at-sign.js
index 2f0e3c40..716d2db9 100644
--- a/src/icons/at-sign.js
+++ b/src/icons/at-sign.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Circle,
+ Path,
+} from 'svgs';
const AtSign = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/award.js b/src/icons/award.js
index 7a3c6c8e..11e21119 100644
--- a/src/icons/award.js
+++ b/src/icons/award.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Circle,
+ Polyline,
+} from 'svgs';
const Award = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/bar-chart-2.js b/src/icons/bar-chart-2.js
index 93082281..c99b9bd8 100644
--- a/src/icons/bar-chart-2.js
+++ b/src/icons/bar-chart-2.js
@@ -1,9 +1,12 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+} from 'svgs';
const BarChart2 = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
);
});
diff --git a/src/icons/bar-chart.js b/src/icons/bar-chart.js
index cacb58a1..193b182f 100644
--- a/src/icons/bar-chart.js
+++ b/src/icons/bar-chart.js
@@ -1,9 +1,12 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+} from 'svgs';
const BarChart = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
);
});
diff --git a/src/icons/battery-charging.js b/src/icons/battery-charging.js
index 99c3efa6..a690a034 100644
--- a/src/icons/battery-charging.js
+++ b/src/icons/battery-charging.js
@@ -1,9 +1,14 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+ Path,
+ Polyline,
+} from 'svgs';
const BatteryCharging = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
);
});
diff --git a/src/icons/battery.js b/src/icons/battery.js
index 1427cd3d..e85590a8 100644
--- a/src/icons/battery.js
+++ b/src/icons/battery.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+ Rect,
+} from 'svgs';
const Battery = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/bell-off.js b/src/icons/bell-off.js
index 616e0513..3e8def75 100644
--- a/src/icons/bell-off.js
+++ b/src/icons/bell-off.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+ Path,
+} from 'svgs';
const BellOff = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
+
+
);
});
diff --git a/src/icons/bell.js b/src/icons/bell.js
index 92bbb58f..2b822644 100644
--- a/src/icons/bell.js
+++ b/src/icons/bell.js
@@ -1,9 +1,12 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Path,
+} from 'svgs';
const Bell = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/bluetooth.js b/src/icons/bluetooth.js
index de35a75b..4b040644 100644
--- a/src/icons/bluetooth.js
+++ b/src/icons/bluetooth.js
@@ -1,9 +1,12 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Polyline,
+} from 'svgs';
const Bluetooth = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
);
});
diff --git a/src/icons/bold.js b/src/icons/bold.js
index 1f99fa00..b6e94099 100644
--- a/src/icons/bold.js
+++ b/src/icons/bold.js
@@ -1,9 +1,12 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Path,
+} from 'svgs';
const Bold = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/book-open.js b/src/icons/book-open.js
index d4ddbcc8..22314273 100644
--- a/src/icons/book-open.js
+++ b/src/icons/book-open.js
@@ -1,9 +1,12 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Path,
+} from 'svgs';
const BookOpen = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/book.js b/src/icons/book.js
index 22b5e8ad..4bafc98a 100644
--- a/src/icons/book.js
+++ b/src/icons/book.js
@@ -1,9 +1,12 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Path,
+} from 'svgs';
const Book = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/bookmark.js b/src/icons/bookmark.js
index 6f456636..65f79372 100644
--- a/src/icons/bookmark.js
+++ b/src/icons/bookmark.js
@@ -1,9 +1,12 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Path,
+} from 'svgs';
const Bookmark = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
);
});
diff --git a/src/icons/box.js b/src/icons/box.js
index c4d35946..97922537 100644
--- a/src/icons/box.js
+++ b/src/icons/box.js
@@ -1,9 +1,14 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+ Path,
+ Polyline,
+} from 'svgs';
const Box = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
);
});
diff --git a/src/icons/briefcase.js b/src/icons/briefcase.js
index 290b054b..1ff44a2c 100644
--- a/src/icons/briefcase.js
+++ b/src/icons/briefcase.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Path,
+ Rect,
+} from 'svgs';
const Briefcase = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/calendar.js b/src/icons/calendar.js
index 9f6399fc..58586fe3 100644
--- a/src/icons/calendar.js
+++ b/src/icons/calendar.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+ Rect,
+} from 'svgs';
const Calendar = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
+
);
});
diff --git a/src/icons/camera-off.js b/src/icons/camera-off.js
index aaa12a1b..f063f356 100644
--- a/src/icons/camera-off.js
+++ b/src/icons/camera-off.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+ Path,
+} from 'svgs';
const CameraOff = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/camera.js b/src/icons/camera.js
index 949999c2..117f63df 100644
--- a/src/icons/camera.js
+++ b/src/icons/camera.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Circle,
+ Path,
+} from 'svgs';
const Camera = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/cast.js b/src/icons/cast.js
index ad07242a..6cf95a76 100644
--- a/src/icons/cast.js
+++ b/src/icons/cast.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+ Path,
+} from 'svgs';
const Cast = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/check-circle.js b/src/icons/check-circle.js
index 1ffde159..f2a2e70e 100644
--- a/src/icons/check-circle.js
+++ b/src/icons/check-circle.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Path,
+ Polyline,
+} from 'svgs';
const CheckCircle = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/check-square.js b/src/icons/check-square.js
index 65e14e3c..4750e272 100644
--- a/src/icons/check-square.js
+++ b/src/icons/check-square.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Path,
+ Polyline,
+} from 'svgs';
const CheckSquare = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/check.js b/src/icons/check.js
index c1e075a8..6f4d55ea 100644
--- a/src/icons/check.js
+++ b/src/icons/check.js
@@ -1,9 +1,12 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Polyline,
+} from 'svgs';
const Check = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
);
});
diff --git a/src/icons/chevron-down.js b/src/icons/chevron-down.js
index ed266b92..67d6f21c 100644
--- a/src/icons/chevron-down.js
+++ b/src/icons/chevron-down.js
@@ -1,9 +1,12 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Polyline,
+} from 'svgs';
const ChevronDown = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
);
});
diff --git a/src/icons/chevron-left.js b/src/icons/chevron-left.js
index e0d21188..e968e444 100644
--- a/src/icons/chevron-left.js
+++ b/src/icons/chevron-left.js
@@ -1,9 +1,12 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Polyline,
+} from 'svgs';
const ChevronLeft = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
);
});
diff --git a/src/icons/chevron-right.js b/src/icons/chevron-right.js
index dea073d8..f3de6055 100644
--- a/src/icons/chevron-right.js
+++ b/src/icons/chevron-right.js
@@ -1,9 +1,12 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Polyline,
+} from 'svgs';
const ChevronRight = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
);
});
diff --git a/src/icons/chevron-up.js b/src/icons/chevron-up.js
index 9aefed45..5e704974 100644
--- a/src/icons/chevron-up.js
+++ b/src/icons/chevron-up.js
@@ -1,9 +1,12 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Polyline,
+} from 'svgs';
const ChevronUp = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
);
});
diff --git a/src/icons/chevrons-down.js b/src/icons/chevrons-down.js
index 2efedc11..6d335e1d 100644
--- a/src/icons/chevrons-down.js
+++ b/src/icons/chevrons-down.js
@@ -1,9 +1,12 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Polyline,
+} from 'svgs';
const ChevronsDown = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/chevrons-left.js b/src/icons/chevrons-left.js
index 340b3833..1b70dcde 100644
--- a/src/icons/chevrons-left.js
+++ b/src/icons/chevrons-left.js
@@ -1,9 +1,12 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Polyline,
+} from 'svgs';
const ChevronsLeft = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/chevrons-right.js b/src/icons/chevrons-right.js
index 8643d55f..6c9c9e66 100644
--- a/src/icons/chevrons-right.js
+++ b/src/icons/chevrons-right.js
@@ -1,9 +1,12 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Polyline,
+} from 'svgs';
const ChevronsRight = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/chevrons-up.js b/src/icons/chevrons-up.js
index 28ee4c71..f3e4b3e0 100644
--- a/src/icons/chevrons-up.js
+++ b/src/icons/chevrons-up.js
@@ -1,9 +1,12 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Polyline,
+} from 'svgs';
const ChevronsUp = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/chrome.js b/src/icons/chrome.js
index 963e88a8..dc11985a 100644
--- a/src/icons/chrome.js
+++ b/src/icons/chrome.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Circle,
+ Line,
+} from 'svgs';
const Chrome = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
+
+
);
});
diff --git a/src/icons/circle.js b/src/icons/circle.js
index acea4cfc..9bb40f08 100644
--- a/src/icons/circle.js
+++ b/src/icons/circle.js
@@ -1,9 +1,12 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Circle as SvgCircle,
+} from 'svgs';
const Circle = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
);
});
diff --git a/src/icons/clipboard.js b/src/icons/clipboard.js
index 88d2479a..f09773c8 100644
--- a/src/icons/clipboard.js
+++ b/src/icons/clipboard.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Path,
+ Rect,
+} from 'svgs';
const Clipboard = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/clock.js b/src/icons/clock.js
index f2a19dcf..b03aa968 100644
--- a/src/icons/clock.js
+++ b/src/icons/clock.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Circle,
+ Polyline,
+} from 'svgs';
const Clock = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/cloud-drizzle.js b/src/icons/cloud-drizzle.js
index c9f988ff..7ef13d18 100644
--- a/src/icons/cloud-drizzle.js
+++ b/src/icons/cloud-drizzle.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+ Path,
+} from 'svgs';
const CloudDrizzle = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
+
+
+
+
);
});
diff --git a/src/icons/cloud-lightning.js b/src/icons/cloud-lightning.js
index 1d602e4a..12736591 100644
--- a/src/icons/cloud-lightning.js
+++ b/src/icons/cloud-lightning.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Path,
+ Polyline,
+} from 'svgs';
const CloudLightning = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/cloud-off.js b/src/icons/cloud-off.js
index 1888fa0c..6c8f4b29 100644
--- a/src/icons/cloud-off.js
+++ b/src/icons/cloud-off.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+ Path,
+} from 'svgs';
const CloudOff = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/cloud-rain.js b/src/icons/cloud-rain.js
index 443641b4..8b586e7f 100644
--- a/src/icons/cloud-rain.js
+++ b/src/icons/cloud-rain.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+ Path,
+} from 'svgs';
const CloudRain = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
+
);
});
diff --git a/src/icons/cloud-snow.js b/src/icons/cloud-snow.js
index e3d71a54..fe2313ac 100644
--- a/src/icons/cloud-snow.js
+++ b/src/icons/cloud-snow.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+ Path,
+} from 'svgs';
const CloudSnow = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
+
+
+
+
);
});
diff --git a/src/icons/cloud.js b/src/icons/cloud.js
index d11a6dd3..50af25c9 100644
--- a/src/icons/cloud.js
+++ b/src/icons/cloud.js
@@ -1,9 +1,12 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Path,
+} from 'svgs';
const Cloud = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
);
});
diff --git a/src/icons/code.js b/src/icons/code.js
index a3d2bac0..b201f53f 100644
--- a/src/icons/code.js
+++ b/src/icons/code.js
@@ -1,9 +1,12 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Polyline,
+} from 'svgs';
const Code = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/codepen.js b/src/icons/codepen.js
index dd8f1def..4503f34a 100644
--- a/src/icons/codepen.js
+++ b/src/icons/codepen.js
@@ -1,9 +1,14 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+ Polygon,
+ Polyline,
+} from 'svgs';
const Codepen = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
+
+
);
});
diff --git a/src/icons/codesandbox.js b/src/icons/codesandbox.js
index 01d6119a..74a19d5c 100644
--- a/src/icons/codesandbox.js
+++ b/src/icons/codesandbox.js
@@ -1,9 +1,14 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+ Path,
+ Polyline,
+} from 'svgs';
const Codesandbox = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
+
+
+
);
});
diff --git a/src/icons/coffee.js b/src/icons/coffee.js
index 7a0a287b..79ddc164 100644
--- a/src/icons/coffee.js
+++ b/src/icons/coffee.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+ Path,
+} from 'svgs';
const Coffee = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
+
+
);
});
diff --git a/src/icons/columns.js b/src/icons/columns.js
index 4a1acafd..4759eede 100644
--- a/src/icons/columns.js
+++ b/src/icons/columns.js
@@ -1,9 +1,12 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Path,
+} from 'svgs';
const Columns = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
);
});
diff --git a/src/icons/command.js b/src/icons/command.js
index 64e00a29..1fc82015 100644
--- a/src/icons/command.js
+++ b/src/icons/command.js
@@ -1,9 +1,12 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Path,
+} from 'svgs';
const Command = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
);
});
diff --git a/src/icons/compass.js b/src/icons/compass.js
index d608971d..ea063d81 100644
--- a/src/icons/compass.js
+++ b/src/icons/compass.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Circle,
+ Polygon,
+} from 'svgs';
const Compass = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/copy.js b/src/icons/copy.js
index 428ed7ff..3181adcc 100644
--- a/src/icons/copy.js
+++ b/src/icons/copy.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Path,
+ Rect,
+} from 'svgs';
const Copy = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/corner-down-left.js b/src/icons/corner-down-left.js
index 28ab46cc..9bd64510 100644
--- a/src/icons/corner-down-left.js
+++ b/src/icons/corner-down-left.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Path,
+ Polyline,
+} from 'svgs';
const CornerDownLeft = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/corner-down-right.js b/src/icons/corner-down-right.js
index f2ce5690..4c7a6151 100644
--- a/src/icons/corner-down-right.js
+++ b/src/icons/corner-down-right.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Path,
+ Polyline,
+} from 'svgs';
const CornerDownRight = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/corner-left-down.js b/src/icons/corner-left-down.js
index 5e44e592..6789e6fc 100644
--- a/src/icons/corner-left-down.js
+++ b/src/icons/corner-left-down.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Path,
+ Polyline,
+} from 'svgs';
const CornerLeftDown = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/corner-left-up.js b/src/icons/corner-left-up.js
index 9ea0701c..6a577e35 100644
--- a/src/icons/corner-left-up.js
+++ b/src/icons/corner-left-up.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Path,
+ Polyline,
+} from 'svgs';
const CornerLeftUp = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/corner-right-down.js b/src/icons/corner-right-down.js
index 469e9909..77e8c3e4 100644
--- a/src/icons/corner-right-down.js
+++ b/src/icons/corner-right-down.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Path,
+ Polyline,
+} from 'svgs';
const CornerRightDown = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/corner-right-up.js b/src/icons/corner-right-up.js
index b12ab258..4c0a166a 100644
--- a/src/icons/corner-right-up.js
+++ b/src/icons/corner-right-up.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Path,
+ Polyline,
+} from 'svgs';
const CornerRightUp = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/corner-up-left.js b/src/icons/corner-up-left.js
index bee7efa6..8d6de2ab 100644
--- a/src/icons/corner-up-left.js
+++ b/src/icons/corner-up-left.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Path,
+ Polyline,
+} from 'svgs';
const CornerUpLeft = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/corner-up-right.js b/src/icons/corner-up-right.js
index 2caa42a2..3d067925 100644
--- a/src/icons/corner-up-right.js
+++ b/src/icons/corner-up-right.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Path,
+ Polyline,
+} from 'svgs';
const CornerUpRight = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/cpu.js b/src/icons/cpu.js
index f1fd6dd7..15de5373 100644
--- a/src/icons/cpu.js
+++ b/src/icons/cpu.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+ Rect,
+} from 'svgs';
const Cpu = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
+
+
+
+
+
+
+
);
});
diff --git a/src/icons/credit-card.js b/src/icons/credit-card.js
index 0ef82c96..917b0a0b 100644
--- a/src/icons/credit-card.js
+++ b/src/icons/credit-card.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+ Rect,
+} from 'svgs';
const CreditCard = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/crop.js b/src/icons/crop.js
index be26e004..cd9032ab 100644
--- a/src/icons/crop.js
+++ b/src/icons/crop.js
@@ -1,9 +1,12 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Path,
+} from 'svgs';
const Crop = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/crosshair.js b/src/icons/crosshair.js
index 3b893834..f8dff0ba 100644
--- a/src/icons/crosshair.js
+++ b/src/icons/crosshair.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Circle,
+ Line,
+} from 'svgs';
const Crosshair = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
+
+
);
});
diff --git a/src/icons/database.js b/src/icons/database.js
index 7e248d90..d158b27e 100644
--- a/src/icons/database.js
+++ b/src/icons/database.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Ellipse,
+ Path,
+} from 'svgs';
const Database = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
);
});
diff --git a/src/icons/delete.js b/src/icons/delete.js
index a02994d6..d8ed98f2 100644
--- a/src/icons/delete.js
+++ b/src/icons/delete.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+ Path,
+} from 'svgs';
const Delete = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
);
});
diff --git a/src/icons/disc.js b/src/icons/disc.js
index fae2b5c2..b1bf3926 100644
--- a/src/icons/disc.js
+++ b/src/icons/disc.js
@@ -1,9 +1,12 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Circle,
+} from 'svgs';
const Disc = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/divide-circle.js b/src/icons/divide-circle.js
index b690c65a..ed624665 100644
--- a/src/icons/divide-circle.js
+++ b/src/icons/divide-circle.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Circle,
+ Line,
+} from 'svgs';
const DivideCircle = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
+
);
});
diff --git a/src/icons/divide-square.js b/src/icons/divide-square.js
index 52ed598b..c0d2e1f9 100644
--- a/src/icons/divide-square.js
+++ b/src/icons/divide-square.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+ Rect,
+} from 'svgs';
const DivideSquare = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
+
);
});
diff --git a/src/icons/divide.js b/src/icons/divide.js
index a00c63fc..86658719 100644
--- a/src/icons/divide.js
+++ b/src/icons/divide.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Circle,
+ Line,
+} from 'svgs';
const Divide = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
);
});
diff --git a/src/icons/dollar-sign.js b/src/icons/dollar-sign.js
index a1f4fa65..22c30e88 100644
--- a/src/icons/dollar-sign.js
+++ b/src/icons/dollar-sign.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+ Path,
+} from 'svgs';
const DollarSign = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/download-cloud.js b/src/icons/download-cloud.js
index 2db09b20..26a2878b 100644
--- a/src/icons/download-cloud.js
+++ b/src/icons/download-cloud.js
@@ -1,9 +1,14 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+ Path,
+ Polyline,
+} from 'svgs';
const DownloadCloud = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
);
});
diff --git a/src/icons/download.js b/src/icons/download.js
index fdb1066d..52cfd6a3 100644
--- a/src/icons/download.js
+++ b/src/icons/download.js
@@ -1,9 +1,14 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+ Path,
+ Polyline,
+} from 'svgs';
const Download = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
);
});
diff --git a/src/icons/dribbble.js b/src/icons/dribbble.js
index e867dd2e..c00c4dbd 100644
--- a/src/icons/dribbble.js
+++ b/src/icons/dribbble.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Circle,
+ Path,
+} from 'svgs';
const Dribbble = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/droplet.js b/src/icons/droplet.js
index e32369c8..fef0d8da 100644
--- a/src/icons/droplet.js
+++ b/src/icons/droplet.js
@@ -1,9 +1,12 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Path,
+} from 'svgs';
const Droplet = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
);
});
diff --git a/src/icons/edit-2.js b/src/icons/edit-2.js
index cd9cd002..9080395f 100644
--- a/src/icons/edit-2.js
+++ b/src/icons/edit-2.js
@@ -1,9 +1,12 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Path,
+} from 'svgs';
const Edit2 = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
);
});
diff --git a/src/icons/edit-3.js b/src/icons/edit-3.js
index c28a5ecd..276b648e 100644
--- a/src/icons/edit-3.js
+++ b/src/icons/edit-3.js
@@ -1,9 +1,12 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Path,
+} from 'svgs';
const Edit3 = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/edit.js b/src/icons/edit.js
index 28579470..b78a935c 100644
--- a/src/icons/edit.js
+++ b/src/icons/edit.js
@@ -1,9 +1,12 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Path,
+} from 'svgs';
const Edit = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/external-link.js b/src/icons/external-link.js
index 8f894e6e..4d700e52 100644
--- a/src/icons/external-link.js
+++ b/src/icons/external-link.js
@@ -1,9 +1,14 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+ Path,
+ Polyline,
+} from 'svgs';
const ExternalLink = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
);
});
diff --git a/src/icons/eye-off.js b/src/icons/eye-off.js
index 3cf70003..3b1b3212 100644
--- a/src/icons/eye-off.js
+++ b/src/icons/eye-off.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+ Path,
+} from 'svgs';
const EyeOff = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/eye.js b/src/icons/eye.js
index 5975969d..0f636381 100644
--- a/src/icons/eye.js
+++ b/src/icons/eye.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Circle,
+ Path,
+} from 'svgs';
const Eye = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/facebook.js b/src/icons/facebook.js
index e26d38a9..9f1c3031 100644
--- a/src/icons/facebook.js
+++ b/src/icons/facebook.js
@@ -1,9 +1,12 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Path,
+} from 'svgs';
const Facebook = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
);
});
diff --git a/src/icons/fast-forward.js b/src/icons/fast-forward.js
index 8c4faacf..3f77edbd 100644
--- a/src/icons/fast-forward.js
+++ b/src/icons/fast-forward.js
@@ -1,9 +1,12 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Polygon,
+} from 'svgs';
const FastForward = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/feather.js b/src/icons/feather.js
index ce167bf8..9a57e4e5 100644
--- a/src/icons/feather.js
+++ b/src/icons/feather.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+ Path,
+} from 'svgs';
const Feather = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
);
});
diff --git a/src/icons/figma.js b/src/icons/figma.js
index 9bcd6083..2a94cfc0 100644
--- a/src/icons/figma.js
+++ b/src/icons/figma.js
@@ -1,9 +1,12 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Path,
+} from 'svgs';
const Figma = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
+
+
);
});
diff --git a/src/icons/file-minus.js b/src/icons/file-minus.js
index 873d442f..b78876ab 100644
--- a/src/icons/file-minus.js
+++ b/src/icons/file-minus.js
@@ -1,9 +1,14 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+ Path,
+ Polyline,
+} from 'svgs';
const FileMinus = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
);
});
diff --git a/src/icons/file-plus.js b/src/icons/file-plus.js
index dd95849c..68ebb594 100644
--- a/src/icons/file-plus.js
+++ b/src/icons/file-plus.js
@@ -1,9 +1,14 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+ Path,
+ Polyline,
+} from 'svgs';
const FilePlus = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
+
);
});
diff --git a/src/icons/file-text.js b/src/icons/file-text.js
index 6719c625..6e62fd9c 100644
--- a/src/icons/file-text.js
+++ b/src/icons/file-text.js
@@ -1,9 +1,14 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+ Path,
+ Polyline,
+} from 'svgs';
const FileText = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
+
+
);
});
diff --git a/src/icons/file.js b/src/icons/file.js
index 0f215ae7..6c2afda1 100644
--- a/src/icons/file.js
+++ b/src/icons/file.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Path,
+ Polyline,
+} from 'svgs';
const File = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/film.js b/src/icons/film.js
index d9c8ff8d..08f7a8e9 100644
--- a/src/icons/film.js
+++ b/src/icons/film.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+ Rect,
+} from 'svgs';
const Film = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
+
+
+
+
+
);
});
diff --git a/src/icons/filter.js b/src/icons/filter.js
index b337d619..9bc75bac 100644
--- a/src/icons/filter.js
+++ b/src/icons/filter.js
@@ -1,9 +1,12 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Polygon,
+} from 'svgs';
const Filter = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
);
});
diff --git a/src/icons/flag.js b/src/icons/flag.js
index f80dbc93..9185b162 100644
--- a/src/icons/flag.js
+++ b/src/icons/flag.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+ Path,
+} from 'svgs';
const Flag = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/folder-minus.js b/src/icons/folder-minus.js
index f25516ac..7c7ba8cb 100644
--- a/src/icons/folder-minus.js
+++ b/src/icons/folder-minus.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+ Path,
+} from 'svgs';
const FolderMinus = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/folder-plus.js b/src/icons/folder-plus.js
index 0c99032d..506817bc 100644
--- a/src/icons/folder-plus.js
+++ b/src/icons/folder-plus.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+ Path,
+} from 'svgs';
const FolderPlus = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
);
});
diff --git a/src/icons/folder.js b/src/icons/folder.js
index 757b735f..e4625553 100644
--- a/src/icons/folder.js
+++ b/src/icons/folder.js
@@ -1,9 +1,12 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Path,
+} from 'svgs';
const Folder = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
);
});
diff --git a/src/icons/framer.js b/src/icons/framer.js
index 59961503..66158ac1 100644
--- a/src/icons/framer.js
+++ b/src/icons/framer.js
@@ -1,9 +1,12 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Path,
+} from 'svgs';
const Framer = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
);
});
diff --git a/src/icons/frown.js b/src/icons/frown.js
index 7589e791..09eab31b 100644
--- a/src/icons/frown.js
+++ b/src/icons/frown.js
@@ -1,9 +1,14 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Circle,
+ Line,
+ Path,
+} from 'svgs';
const Frown = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
+
);
});
diff --git a/src/icons/gift.js b/src/icons/gift.js
index 76110196..a0b1427c 100644
--- a/src/icons/gift.js
+++ b/src/icons/gift.js
@@ -1,9 +1,15 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+ Path,
+ Polyline,
+ Rect,
+} from 'svgs';
const Gift = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
+
+
);
});
diff --git a/src/icons/git-branch.js b/src/icons/git-branch.js
index c486b96a..a6802858 100644
--- a/src/icons/git-branch.js
+++ b/src/icons/git-branch.js
@@ -1,9 +1,14 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Circle,
+ Line,
+ Path,
+} from 'svgs';
const GitBranch = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
+
);
});
diff --git a/src/icons/git-commit.js b/src/icons/git-commit.js
index d710a8d0..8fecd3b1 100644
--- a/src/icons/git-commit.js
+++ b/src/icons/git-commit.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Circle,
+ Line,
+} from 'svgs';
const GitCommit = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
);
});
diff --git a/src/icons/git-merge.js b/src/icons/git-merge.js
index 7124b9ab..a0f0bc84 100644
--- a/src/icons/git-merge.js
+++ b/src/icons/git-merge.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Circle,
+ Path,
+} from 'svgs';
const GitMerge = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
);
});
diff --git a/src/icons/git-pull-request.js b/src/icons/git-pull-request.js
index 8f0c3b99..22a9c756 100644
--- a/src/icons/git-pull-request.js
+++ b/src/icons/git-pull-request.js
@@ -1,9 +1,14 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Circle,
+ Line,
+ Path,
+} from 'svgs';
const GitPullRequest = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
+
);
});
diff --git a/src/icons/github.js b/src/icons/github.js
index 7260419a..b961f37d 100644
--- a/src/icons/github.js
+++ b/src/icons/github.js
@@ -1,9 +1,12 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Path,
+} from 'svgs';
const GitHub = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
);
});
diff --git a/src/icons/gitlab.js b/src/icons/gitlab.js
index 7d091da4..ad706dd5 100644
--- a/src/icons/gitlab.js
+++ b/src/icons/gitlab.js
@@ -1,9 +1,12 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Path,
+} from 'svgs';
const Gitlab = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
);
});
diff --git a/src/icons/globe.js b/src/icons/globe.js
index f0f398b0..9bca84e2 100644
--- a/src/icons/globe.js
+++ b/src/icons/globe.js
@@ -1,9 +1,14 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Circle,
+ Line,
+ Path,
+} from 'svgs';
const Globe = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
);
});
diff --git a/src/icons/grid.js b/src/icons/grid.js
index e184e189..52710a85 100644
--- a/src/icons/grid.js
+++ b/src/icons/grid.js
@@ -1,9 +1,12 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Rect,
+} from 'svgs';
const Grid = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
+
);
});
diff --git a/src/icons/hard-drive.js b/src/icons/hard-drive.js
index 354a051b..2041a726 100644
--- a/src/icons/hard-drive.js
+++ b/src/icons/hard-drive.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+ Path,
+} from 'svgs';
const HardDrive = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
+
);
});
diff --git a/src/icons/hash.js b/src/icons/hash.js
index f9d08a77..9498eb0e 100644
--- a/src/icons/hash.js
+++ b/src/icons/hash.js
@@ -1,9 +1,12 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+} from 'svgs';
const Hash = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
+
);
});
diff --git a/src/icons/headphones.js b/src/icons/headphones.js
index de941ea3..7b3a6446 100644
--- a/src/icons/headphones.js
+++ b/src/icons/headphones.js
@@ -1,9 +1,12 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Path,
+} from 'svgs';
const Headphones = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/heart.js b/src/icons/heart.js
index 284215d1..0edeb76b 100644
--- a/src/icons/heart.js
+++ b/src/icons/heart.js
@@ -1,9 +1,12 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Path,
+} from 'svgs';
const Heart = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
);
});
diff --git a/src/icons/help-circle.js b/src/icons/help-circle.js
index a76290ec..862000d5 100644
--- a/src/icons/help-circle.js
+++ b/src/icons/help-circle.js
@@ -1,9 +1,14 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Circle,
+ Line,
+ Path,
+} from 'svgs';
const HelpCircle = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
);
});
diff --git a/src/icons/hexagon.js b/src/icons/hexagon.js
index 4149ca49..d4eb12e8 100644
--- a/src/icons/hexagon.js
+++ b/src/icons/hexagon.js
@@ -1,9 +1,12 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Path,
+} from 'svgs';
const Hexagon = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
);
});
diff --git a/src/icons/home.js b/src/icons/home.js
index 3a0e773d..b93ef554 100644
--- a/src/icons/home.js
+++ b/src/icons/home.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Path,
+ Polyline,
+} from 'svgs';
const Home = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/image.js b/src/icons/image.js
index 28b185d0..1dc02794 100644
--- a/src/icons/image.js
+++ b/src/icons/image.js
@@ -1,9 +1,14 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Circle,
+ Polyline,
+ Rect,
+} from 'svgs';
const Image = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
);
});
diff --git a/src/icons/inbox.js b/src/icons/inbox.js
index 08972cea..3321b993 100644
--- a/src/icons/inbox.js
+++ b/src/icons/inbox.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Path,
+ Polyline,
+} from 'svgs';
const Inbox = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/info.js b/src/icons/info.js
index d1aa2855..999e401b 100644
--- a/src/icons/info.js
+++ b/src/icons/info.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Circle,
+ Line,
+} from 'svgs';
const Info = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
);
});
diff --git a/src/icons/instagram.js b/src/icons/instagram.js
index 390bf4e1..832a5bfa 100644
--- a/src/icons/instagram.js
+++ b/src/icons/instagram.js
@@ -1,9 +1,14 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+ Path,
+ Rect,
+} from 'svgs';
const Instagram = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
);
});
diff --git a/src/icons/italic.js b/src/icons/italic.js
index 2ba6c3ed..87c067d9 100644
--- a/src/icons/italic.js
+++ b/src/icons/italic.js
@@ -1,9 +1,12 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+} from 'svgs';
const Italic = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
);
});
diff --git a/src/icons/key.js b/src/icons/key.js
index 772bd154..da485492 100644
--- a/src/icons/key.js
+++ b/src/icons/key.js
@@ -1,9 +1,12 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Path,
+} from 'svgs';
const Key = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
);
});
diff --git a/src/icons/layers.js b/src/icons/layers.js
index 015dd706..32d1f722 100644
--- a/src/icons/layers.js
+++ b/src/icons/layers.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Polygon,
+ Polyline,
+} from 'svgs';
const Layers = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
);
});
diff --git a/src/icons/layout.js b/src/icons/layout.js
index 691aa4bd..99e2e4c4 100644
--- a/src/icons/layout.js
+++ b/src/icons/layout.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+ Rect,
+} from 'svgs';
const Layout = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
);
});
diff --git a/src/icons/life-buoy.js b/src/icons/life-buoy.js
index 84215115..be9859a7 100644
--- a/src/icons/life-buoy.js
+++ b/src/icons/life-buoy.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Circle,
+ Line,
+} from 'svgs';
const LifeBuoy = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
+
+
+
+
);
});
diff --git a/src/icons/link-2.js b/src/icons/link-2.js
index 15e75b64..6f25b562 100644
--- a/src/icons/link-2.js
+++ b/src/icons/link-2.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+ Path,
+} from 'svgs';
const Link2 = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/link.js b/src/icons/link.js
index cb8c9894..2794ec17 100644
--- a/src/icons/link.js
+++ b/src/icons/link.js
@@ -1,9 +1,12 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Path,
+} from 'svgs';
const Link = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/linkedin.js b/src/icons/linkedin.js
index e58d8732..3aad1209 100644
--- a/src/icons/linkedin.js
+++ b/src/icons/linkedin.js
@@ -1,9 +1,14 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Circle,
+ Path,
+ Rect,
+} from 'svgs';
const Linkedin = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
);
});
diff --git a/src/icons/list.js b/src/icons/list.js
index 3e82eb6c..980f0de8 100644
--- a/src/icons/list.js
+++ b/src/icons/list.js
@@ -1,9 +1,12 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+} from 'svgs';
const List = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
+
+
+
);
});
diff --git a/src/icons/loader.js b/src/icons/loader.js
index d292cfe8..2cdff318 100644
--- a/src/icons/loader.js
+++ b/src/icons/loader.js
@@ -1,9 +1,12 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+} from 'svgs';
const Loader = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
+
+
+
+
+
);
});
diff --git a/src/icons/lock.js b/src/icons/lock.js
index 87790746..d14a45b7 100644
--- a/src/icons/lock.js
+++ b/src/icons/lock.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Path,
+ Rect,
+} from 'svgs';
const Lock = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/log-in.js b/src/icons/log-in.js
index 68230b6f..1a6f8b94 100644
--- a/src/icons/log-in.js
+++ b/src/icons/log-in.js
@@ -1,9 +1,14 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+ Path,
+ Polyline,
+} from 'svgs';
const LogIn = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
);
});
diff --git a/src/icons/log-out.js b/src/icons/log-out.js
index 85dbaf73..2321d5e9 100644
--- a/src/icons/log-out.js
+++ b/src/icons/log-out.js
@@ -1,9 +1,14 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+ Path,
+ Polyline,
+} from 'svgs';
const LogOut = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
);
});
diff --git a/src/icons/mail.js b/src/icons/mail.js
index bc6ddae1..3b744367 100644
--- a/src/icons/mail.js
+++ b/src/icons/mail.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Path,
+ Polyline,
+} from 'svgs';
const Mail = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/map-pin.js b/src/icons/map-pin.js
index 6207d45b..9789f176 100644
--- a/src/icons/map-pin.js
+++ b/src/icons/map-pin.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Circle,
+ Path,
+} from 'svgs';
const MapPin = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/map.js b/src/icons/map.js
index 614858e6..858d971a 100644
--- a/src/icons/map.js
+++ b/src/icons/map.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+ Polygon,
+} from 'svgs';
const Map = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
);
});
diff --git a/src/icons/maximize-2.js b/src/icons/maximize-2.js
index 039eb771..e812f5c0 100644
--- a/src/icons/maximize-2.js
+++ b/src/icons/maximize-2.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+ Polyline,
+} from 'svgs';
const Maximize2 = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
+
);
});
diff --git a/src/icons/maximize.js b/src/icons/maximize.js
index 151c0893..43e87dcb 100644
--- a/src/icons/maximize.js
+++ b/src/icons/maximize.js
@@ -1,9 +1,12 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Path,
+} from 'svgs';
const Maximize = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
);
});
diff --git a/src/icons/meh.js b/src/icons/meh.js
index 253f21ab..f4b3255d 100644
--- a/src/icons/meh.js
+++ b/src/icons/meh.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Circle,
+ Line,
+} from 'svgs';
const Meh = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
+
);
});
diff --git a/src/icons/menu.js b/src/icons/menu.js
index 6d61e7a0..a6a0838c 100644
--- a/src/icons/menu.js
+++ b/src/icons/menu.js
@@ -1,9 +1,12 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+} from 'svgs';
const Menu = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
);
});
diff --git a/src/icons/message-circle.js b/src/icons/message-circle.js
index a148d412..23fca4ce 100644
--- a/src/icons/message-circle.js
+++ b/src/icons/message-circle.js
@@ -1,9 +1,12 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Path,
+} from 'svgs';
const MessageCircle = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
);
});
diff --git a/src/icons/message-square.js b/src/icons/message-square.js
index ccbfdee0..b7e7672a 100644
--- a/src/icons/message-square.js
+++ b/src/icons/message-square.js
@@ -1,9 +1,12 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Path,
+} from 'svgs';
const MessageSquare = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
);
});
diff --git a/src/icons/mic-off.js b/src/icons/mic-off.js
index b3768bc6..7899bf36 100644
--- a/src/icons/mic-off.js
+++ b/src/icons/mic-off.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+ Path,
+} from 'svgs';
const MicOff = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
+
+
);
});
diff --git a/src/icons/mic.js b/src/icons/mic.js
index 930a2000..8035448b 100644
--- a/src/icons/mic.js
+++ b/src/icons/mic.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+ Path,
+} from 'svgs';
const Mic = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
+
);
});
diff --git a/src/icons/minimize-2.js b/src/icons/minimize-2.js
index 32279bb8..2f44df4c 100644
--- a/src/icons/minimize-2.js
+++ b/src/icons/minimize-2.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+ Polyline,
+} from 'svgs';
const Minimize2 = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
+
);
});
diff --git a/src/icons/minimize.js b/src/icons/minimize.js
index bcc4fd0a..2bf4bdb4 100644
--- a/src/icons/minimize.js
+++ b/src/icons/minimize.js
@@ -1,9 +1,12 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Path,
+} from 'svgs';
const Minimize = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
);
});
diff --git a/src/icons/minus-circle.js b/src/icons/minus-circle.js
index 5ceabf1a..567ed95f 100644
--- a/src/icons/minus-circle.js
+++ b/src/icons/minus-circle.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Circle,
+ Line,
+} from 'svgs';
const MinusCircle = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/minus-square.js b/src/icons/minus-square.js
index f6c66e8d..0a2ebe77 100644
--- a/src/icons/minus-square.js
+++ b/src/icons/minus-square.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+ Rect,
+} from 'svgs';
const MinusSquare = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/minus.js b/src/icons/minus.js
index 61d3969d..2d3a1828 100644
--- a/src/icons/minus.js
+++ b/src/icons/minus.js
@@ -1,9 +1,12 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+} from 'svgs';
const Minus = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
);
});
diff --git a/src/icons/monitor.js b/src/icons/monitor.js
index 71a702d4..4fa7535e 100644
--- a/src/icons/monitor.js
+++ b/src/icons/monitor.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+ Rect,
+} from 'svgs';
const Monitor = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
);
});
diff --git a/src/icons/moon.js b/src/icons/moon.js
index c3a1a8aa..5a42e97a 100644
--- a/src/icons/moon.js
+++ b/src/icons/moon.js
@@ -1,9 +1,12 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Path,
+} from 'svgs';
const Moon = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
);
});
diff --git a/src/icons/more-horizontal.js b/src/icons/more-horizontal.js
index 4dcb480c..ef338f62 100644
--- a/src/icons/more-horizontal.js
+++ b/src/icons/more-horizontal.js
@@ -1,9 +1,12 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Circle,
+} from 'svgs';
const MoreHorizontal = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
);
});
diff --git a/src/icons/more-vertical.js b/src/icons/more-vertical.js
index 8d50e567..a7608106 100644
--- a/src/icons/more-vertical.js
+++ b/src/icons/more-vertical.js
@@ -1,9 +1,12 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Circle,
+} from 'svgs';
const MoreVertical = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
);
});
diff --git a/src/icons/mouse-pointer.js b/src/icons/mouse-pointer.js
index 24182c06..4af9786a 100644
--- a/src/icons/mouse-pointer.js
+++ b/src/icons/mouse-pointer.js
@@ -1,9 +1,12 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Path,
+} from 'svgs';
const MousePointer = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/move.js b/src/icons/move.js
index b2c32776..9ef301b9 100644
--- a/src/icons/move.js
+++ b/src/icons/move.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+ Polyline,
+} from 'svgs';
const Move = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
+
+
+
);
});
diff --git a/src/icons/music.js b/src/icons/music.js
index e9a7d9f5..e7e32fe8 100644
--- a/src/icons/music.js
+++ b/src/icons/music.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Circle,
+ Path,
+} from 'svgs';
const Music = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
);
});
diff --git a/src/icons/navigation-2.js b/src/icons/navigation-2.js
index 74757a22..d514fc3f 100644
--- a/src/icons/navigation-2.js
+++ b/src/icons/navigation-2.js
@@ -1,9 +1,12 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Polygon,
+} from 'svgs';
const Navigation2 = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
);
});
diff --git a/src/icons/navigation.js b/src/icons/navigation.js
index ac7748a3..89f6e007 100644
--- a/src/icons/navigation.js
+++ b/src/icons/navigation.js
@@ -1,9 +1,12 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Polygon,
+} from 'svgs';
const Navigation = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
);
});
diff --git a/src/icons/octagon.js b/src/icons/octagon.js
index 9223fdc6..289b32c0 100644
--- a/src/icons/octagon.js
+++ b/src/icons/octagon.js
@@ -1,9 +1,12 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Polygon,
+} from 'svgs';
const Octagon = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
);
});
diff --git a/src/icons/package.js b/src/icons/package.js
index 0c651919..03953d00 100644
--- a/src/icons/package.js
+++ b/src/icons/package.js
@@ -1,9 +1,14 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+ Path,
+ Polyline,
+} from 'svgs';
const Package = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
+
);
});
diff --git a/src/icons/paperclip.js b/src/icons/paperclip.js
index f2c715bf..31dc6aad 100644
--- a/src/icons/paperclip.js
+++ b/src/icons/paperclip.js
@@ -1,9 +1,12 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Path,
+} from 'svgs';
const Paperclip = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
);
});
diff --git a/src/icons/pause-circle.js b/src/icons/pause-circle.js
index 489c112b..2d5f2e7a 100644
--- a/src/icons/pause-circle.js
+++ b/src/icons/pause-circle.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Circle,
+ Line,
+} from 'svgs';
const PauseCircle = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
);
});
diff --git a/src/icons/pause.js b/src/icons/pause.js
index c39b17d0..697bd73c 100644
--- a/src/icons/pause.js
+++ b/src/icons/pause.js
@@ -1,9 +1,12 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Rect,
+} from 'svgs';
const Pause = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/pen-tool.js b/src/icons/pen-tool.js
index 3a18ecb3..17d31b9a 100644
--- a/src/icons/pen-tool.js
+++ b/src/icons/pen-tool.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Circle,
+ Path,
+} from 'svgs';
const PenTool = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
+
);
});
diff --git a/src/icons/percent.js b/src/icons/percent.js
index 83bc8eb0..bbe08790 100644
--- a/src/icons/percent.js
+++ b/src/icons/percent.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Circle,
+ Line,
+} from 'svgs';
const Percent = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
);
});
diff --git a/src/icons/phone-call.js b/src/icons/phone-call.js
index 8a8c25c3..0de2da29 100644
--- a/src/icons/phone-call.js
+++ b/src/icons/phone-call.js
@@ -1,9 +1,12 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Path,
+} from 'svgs';
const PhoneCall = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
);
});
diff --git a/src/icons/phone-forwarded.js b/src/icons/phone-forwarded.js
index 03329286..b5bda5b7 100644
--- a/src/icons/phone-forwarded.js
+++ b/src/icons/phone-forwarded.js
@@ -1,9 +1,14 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+ Path,
+ Polyline,
+} from 'svgs';
const PhoneForwarded = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
);
});
diff --git a/src/icons/phone-incoming.js b/src/icons/phone-incoming.js
index 0706817c..889cddf2 100644
--- a/src/icons/phone-incoming.js
+++ b/src/icons/phone-incoming.js
@@ -1,9 +1,14 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+ Path,
+ Polyline,
+} from 'svgs';
const PhoneIncoming = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
);
});
diff --git a/src/icons/phone-missed.js b/src/icons/phone-missed.js
index f71dc65a..eba2e2f4 100644
--- a/src/icons/phone-missed.js
+++ b/src/icons/phone-missed.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+ Path,
+} from 'svgs';
const PhoneMissed = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
);
});
diff --git a/src/icons/phone-off.js b/src/icons/phone-off.js
index 051bc52f..2385739a 100644
--- a/src/icons/phone-off.js
+++ b/src/icons/phone-off.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+ Path,
+} from 'svgs';
const PhoneOff = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/phone-outgoing.js b/src/icons/phone-outgoing.js
index 143672ff..d3966d51 100644
--- a/src/icons/phone-outgoing.js
+++ b/src/icons/phone-outgoing.js
@@ -1,9 +1,14 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+ Path,
+ Polyline,
+} from 'svgs';
const PhoneOutgoing = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
);
});
diff --git a/src/icons/phone.js b/src/icons/phone.js
index 1907b680..4cef350c 100644
--- a/src/icons/phone.js
+++ b/src/icons/phone.js
@@ -1,9 +1,12 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Path,
+} from 'svgs';
const Phone = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
);
});
diff --git a/src/icons/pie-chart.js b/src/icons/pie-chart.js
index faaa283d..6d72f17d 100644
--- a/src/icons/pie-chart.js
+++ b/src/icons/pie-chart.js
@@ -1,9 +1,12 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Path,
+} from 'svgs';
const PieChart = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/play-circle.js b/src/icons/play-circle.js
index 4e42737a..8163ba74 100644
--- a/src/icons/play-circle.js
+++ b/src/icons/play-circle.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Circle,
+ Polygon,
+} from 'svgs';
const PlayCircle = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/play.js b/src/icons/play.js
index 348a565b..602f36f6 100644
--- a/src/icons/play.js
+++ b/src/icons/play.js
@@ -1,9 +1,12 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Polygon,
+} from 'svgs';
const Play = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
);
});
diff --git a/src/icons/plus-circle.js b/src/icons/plus-circle.js
index 50f2191c..6ea9e9b5 100644
--- a/src/icons/plus-circle.js
+++ b/src/icons/plus-circle.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Circle,
+ Line,
+} from 'svgs';
const PlusCircle = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
);
});
diff --git a/src/icons/plus-square.js b/src/icons/plus-square.js
index fe1385e7..856eda30 100644
--- a/src/icons/plus-square.js
+++ b/src/icons/plus-square.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+ Rect,
+} from 'svgs';
const PlusSquare = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
);
});
diff --git a/src/icons/plus.js b/src/icons/plus.js
index e7230638..7ac68283 100644
--- a/src/icons/plus.js
+++ b/src/icons/plus.js
@@ -1,9 +1,12 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+} from 'svgs';
const Plus = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/pocket.js b/src/icons/pocket.js
index 95661e93..574fe56a 100644
--- a/src/icons/pocket.js
+++ b/src/icons/pocket.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Path,
+ Polyline,
+} from 'svgs';
const Pocket = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/power.js b/src/icons/power.js
index d1dc0493..b2ac0c90 100644
--- a/src/icons/power.js
+++ b/src/icons/power.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+ Path,
+} from 'svgs';
const Power = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/printer.js b/src/icons/printer.js
index d427fb4f..7722862d 100644
--- a/src/icons/printer.js
+++ b/src/icons/printer.js
@@ -1,9 +1,14 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Path,
+ Polyline,
+ Rect,
+} from 'svgs';
const Printer = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
);
});
diff --git a/src/icons/radio.js b/src/icons/radio.js
index cb61203e..feac4cc5 100644
--- a/src/icons/radio.js
+++ b/src/icons/radio.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Circle,
+ Path,
+} from 'svgs';
const Radio = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/refresh-ccw.js b/src/icons/refresh-ccw.js
index d82b4a33..b7d3c505 100644
--- a/src/icons/refresh-ccw.js
+++ b/src/icons/refresh-ccw.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Path,
+ Polyline,
+} from 'svgs';
const RefreshCcw = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
);
});
diff --git a/src/icons/refresh-cw.js b/src/icons/refresh-cw.js
index b990c342..24d3f003 100644
--- a/src/icons/refresh-cw.js
+++ b/src/icons/refresh-cw.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Path,
+ Polyline,
+} from 'svgs';
const RefreshCw = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
);
});
diff --git a/src/icons/repeat.js b/src/icons/repeat.js
index 073597c6..9f585c9b 100644
--- a/src/icons/repeat.js
+++ b/src/icons/repeat.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Path,
+ Polyline,
+} from 'svgs';
const Repeat = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
+
);
});
diff --git a/src/icons/rewind.js b/src/icons/rewind.js
index 1164287e..39457bc9 100644
--- a/src/icons/rewind.js
+++ b/src/icons/rewind.js
@@ -1,9 +1,12 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Polygon,
+} from 'svgs';
const Rewind = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/rotate-ccw.js b/src/icons/rotate-ccw.js
index c6ade073..b202d642 100644
--- a/src/icons/rotate-ccw.js
+++ b/src/icons/rotate-ccw.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Path,
+ Polyline,
+} from 'svgs';
const RotateCcw = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/rotate-cw.js b/src/icons/rotate-cw.js
index a43a6f55..31874a46 100644
--- a/src/icons/rotate-cw.js
+++ b/src/icons/rotate-cw.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Path,
+ Polyline,
+} from 'svgs';
const RotateCw = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/rss.js b/src/icons/rss.js
index a5013c66..f48e96f3 100644
--- a/src/icons/rss.js
+++ b/src/icons/rss.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Circle,
+ Path,
+} from 'svgs';
const Rss = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
);
});
diff --git a/src/icons/save.js b/src/icons/save.js
index a6b31ad9..84e7b3c7 100644
--- a/src/icons/save.js
+++ b/src/icons/save.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Path,
+ Polyline,
+} from 'svgs';
const Save = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
);
});
diff --git a/src/icons/scissors.js b/src/icons/scissors.js
index b97c0ba0..b1768f40 100644
--- a/src/icons/scissors.js
+++ b/src/icons/scissors.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Circle,
+ Line,
+} from 'svgs';
const Scissors = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
+
+
);
});
diff --git a/src/icons/search.js b/src/icons/search.js
index 03c8e149..7ed9d3f8 100644
--- a/src/icons/search.js
+++ b/src/icons/search.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Circle,
+ Line,
+} from 'svgs';
const Search = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/send.js b/src/icons/send.js
index 3188bd98..95c07f73 100644
--- a/src/icons/send.js
+++ b/src/icons/send.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+ Polygon,
+} from 'svgs';
const Send = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/server.js b/src/icons/server.js
index 1d961365..15ca15cd 100644
--- a/src/icons/server.js
+++ b/src/icons/server.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+ Rect,
+} from 'svgs';
const Server = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
+
);
});
diff --git a/src/icons/settings.js b/src/icons/settings.js
index f9b99f36..0896dbe1 100644
--- a/src/icons/settings.js
+++ b/src/icons/settings.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Circle,
+ Path,
+} from 'svgs';
const Settings = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/share-2.js b/src/icons/share-2.js
index fcbd38ca..54acb22e 100644
--- a/src/icons/share-2.js
+++ b/src/icons/share-2.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Circle,
+ Line,
+} from 'svgs';
const Share2 = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
+
+
);
});
diff --git a/src/icons/share.js b/src/icons/share.js
index 5c8bb35c..e2b41c0f 100644
--- a/src/icons/share.js
+++ b/src/icons/share.js
@@ -1,9 +1,14 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+ Path,
+ Polyline,
+} from 'svgs';
const Share = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
);
});
diff --git a/src/icons/shield-off.js b/src/icons/shield-off.js
index e64898ab..bb029935 100644
--- a/src/icons/shield-off.js
+++ b/src/icons/shield-off.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+ Path,
+} from 'svgs';
const ShieldOff = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
);
});
diff --git a/src/icons/shield.js b/src/icons/shield.js
index 16dc590c..06903555 100644
--- a/src/icons/shield.js
+++ b/src/icons/shield.js
@@ -1,9 +1,12 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Path,
+} from 'svgs';
const Shield = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
);
});
diff --git a/src/icons/shopping-bag.js b/src/icons/shopping-bag.js
index 14a8b49d..6d4b314c 100644
--- a/src/icons/shopping-bag.js
+++ b/src/icons/shopping-bag.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+ Path,
+} from 'svgs';
const ShoppingBag = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
);
});
diff --git a/src/icons/shopping-cart.js b/src/icons/shopping-cart.js
index 39f87c6b..6b2c6b25 100644
--- a/src/icons/shopping-cart.js
+++ b/src/icons/shopping-cart.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Circle,
+ Path,
+} from 'svgs';
const ShoppingCart = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
);
});
diff --git a/src/icons/shuffle.js b/src/icons/shuffle.js
index 3fee34f7..491c738a 100644
--- a/src/icons/shuffle.js
+++ b/src/icons/shuffle.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+ Polyline,
+} from 'svgs';
const Shuffle = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
+
+
);
});
diff --git a/src/icons/sidebar.js b/src/icons/sidebar.js
index addd322a..40200d15 100644
--- a/src/icons/sidebar.js
+++ b/src/icons/sidebar.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+ Rect,
+} from 'svgs';
const Sidebar = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/skip-back.js b/src/icons/skip-back.js
index ccb6d16f..8ca4eb60 100644
--- a/src/icons/skip-back.js
+++ b/src/icons/skip-back.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+ Polygon,
+} from 'svgs';
const SkipBack = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/skip-forward.js b/src/icons/skip-forward.js
index 354d8d33..e045a5a3 100644
--- a/src/icons/skip-forward.js
+++ b/src/icons/skip-forward.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+ Polygon,
+} from 'svgs';
const SkipForward = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/slack.js b/src/icons/slack.js
index 4a357e83..1230bf94 100644
--- a/src/icons/slack.js
+++ b/src/icons/slack.js
@@ -1,9 +1,12 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Path,
+} from 'svgs';
const Slack = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
+
+
+
+
+
);
});
diff --git a/src/icons/slash.js b/src/icons/slash.js
index 1c9b78cd..82d9805f 100644
--- a/src/icons/slash.js
+++ b/src/icons/slash.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Circle,
+ Line,
+} from 'svgs';
const Slash = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/sliders.js b/src/icons/sliders.js
index 70475ee7..b828ec00 100644
--- a/src/icons/sliders.js
+++ b/src/icons/sliders.js
@@ -1,9 +1,12 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+} from 'svgs';
const Sliders = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
+
+
+
+
+
+
);
});
diff --git a/src/icons/smartphone.js b/src/icons/smartphone.js
index 6d337fd3..0ff1f2c2 100644
--- a/src/icons/smartphone.js
+++ b/src/icons/smartphone.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+ Rect,
+} from 'svgs';
const Smartphone = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/smile.js b/src/icons/smile.js
index 0352b03c..4d55a9c7 100644
--- a/src/icons/smile.js
+++ b/src/icons/smile.js
@@ -1,9 +1,14 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Circle,
+ Line,
+ Path,
+} from 'svgs';
const Smile = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
+
);
});
diff --git a/src/icons/speaker.js b/src/icons/speaker.js
index 317a7282..9a77dd7c 100644
--- a/src/icons/speaker.js
+++ b/src/icons/speaker.js
@@ -1,9 +1,14 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Circle,
+ Line,
+ Rect,
+} from 'svgs';
const Speaker = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
);
});
diff --git a/src/icons/square.js b/src/icons/square.js
index c4963054..999109c3 100644
--- a/src/icons/square.js
+++ b/src/icons/square.js
@@ -1,9 +1,12 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Rect,
+} from 'svgs';
const Square = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
);
});
diff --git a/src/icons/star.js b/src/icons/star.js
index b7f84bea..d9939260 100644
--- a/src/icons/star.js
+++ b/src/icons/star.js
@@ -1,9 +1,12 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Polygon,
+} from 'svgs';
const Star = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
);
});
diff --git a/src/icons/stop-circle.js b/src/icons/stop-circle.js
index 58802d4d..47f8fcf4 100644
--- a/src/icons/stop-circle.js
+++ b/src/icons/stop-circle.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Circle,
+ Rect,
+} from 'svgs';
const StopCircle = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/sun.js b/src/icons/sun.js
index d05f4bc4..48bb1916 100644
--- a/src/icons/sun.js
+++ b/src/icons/sun.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Circle,
+ Line,
+} from 'svgs';
const Sun = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
+
+
+
+
+
+
);
});
diff --git a/src/icons/sunrise.js b/src/icons/sunrise.js
index d3265bcf..f13ee406 100644
--- a/src/icons/sunrise.js
+++ b/src/icons/sunrise.js
@@ -1,9 +1,14 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+ Path,
+ Polyline,
+} from 'svgs';
const Sunrise = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
+
+
+
+
+
);
});
diff --git a/src/icons/sunset.js b/src/icons/sunset.js
index 280d30f1..1437902a 100644
--- a/src/icons/sunset.js
+++ b/src/icons/sunset.js
@@ -1,9 +1,14 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+ Path,
+ Polyline,
+} from 'svgs';
const Sunset = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
+
+
+
+
+
);
});
diff --git a/src/icons/tablet.js b/src/icons/tablet.js
index e3102721..89ebcb56 100644
--- a/src/icons/tablet.js
+++ b/src/icons/tablet.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+ Rect,
+} from 'svgs';
const Tablet = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/tag.js b/src/icons/tag.js
index 5572303b..d3f34a51 100644
--- a/src/icons/tag.js
+++ b/src/icons/tag.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+ Path,
+} from 'svgs';
const Tag = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/target.js b/src/icons/target.js
index 503d4f4d..136ae669 100644
--- a/src/icons/target.js
+++ b/src/icons/target.js
@@ -1,9 +1,12 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Circle,
+} from 'svgs';
const Target = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
);
});
diff --git a/src/icons/terminal.js b/src/icons/terminal.js
index caf6c283..477812a7 100644
--- a/src/icons/terminal.js
+++ b/src/icons/terminal.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+ Polyline,
+} from 'svgs';
const Terminal = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/thermometer.js b/src/icons/thermometer.js
index 1511983c..f0e1e776 100644
--- a/src/icons/thermometer.js
+++ b/src/icons/thermometer.js
@@ -1,9 +1,12 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Path,
+} from 'svgs';
const Thermometer = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
);
});
diff --git a/src/icons/thumbs-down.js b/src/icons/thumbs-down.js
index c4e794ce..ab0411c5 100644
--- a/src/icons/thumbs-down.js
+++ b/src/icons/thumbs-down.js
@@ -1,9 +1,12 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Path,
+} from 'svgs';
const ThumbsDown = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
);
});
diff --git a/src/icons/thumbs-up.js b/src/icons/thumbs-up.js
index 8fb5de8e..cd3f6133 100644
--- a/src/icons/thumbs-up.js
+++ b/src/icons/thumbs-up.js
@@ -1,9 +1,12 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Path,
+} from 'svgs';
const ThumbsUp = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
);
});
diff --git a/src/icons/toggle-left.js b/src/icons/toggle-left.js
index 7b8e6a88..13af4b2c 100644
--- a/src/icons/toggle-left.js
+++ b/src/icons/toggle-left.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Circle,
+ Rect,
+} from 'svgs';
const ToggleLeft = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/toggle-right.js b/src/icons/toggle-right.js
index 60af8dc9..e1971d46 100644
--- a/src/icons/toggle-right.js
+++ b/src/icons/toggle-right.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Circle,
+ Rect,
+} from 'svgs';
const ToggleRight = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/tool.js b/src/icons/tool.js
index e97ad12f..05bc4e2f 100644
--- a/src/icons/tool.js
+++ b/src/icons/tool.js
@@ -1,9 +1,12 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Path,
+} from 'svgs';
const Tool = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
);
});
diff --git a/src/icons/trash-2.js b/src/icons/trash-2.js
index 9313c094..f864b59f 100644
--- a/src/icons/trash-2.js
+++ b/src/icons/trash-2.js
@@ -1,9 +1,14 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+ Path,
+ Polyline,
+} from 'svgs';
const Trash2 = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
+
);
});
diff --git a/src/icons/trash.js b/src/icons/trash.js
index fb049e9a..5fe4ac6e 100644
--- a/src/icons/trash.js
+++ b/src/icons/trash.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Path,
+ Polyline,
+} from 'svgs';
const Trash = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/trello.js b/src/icons/trello.js
index 73fb289b..706bded7 100644
--- a/src/icons/trello.js
+++ b/src/icons/trello.js
@@ -1,9 +1,12 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Rect,
+} from 'svgs';
const Trello = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
);
});
diff --git a/src/icons/trending-down.js b/src/icons/trending-down.js
index a3d8e28f..c20248a1 100644
--- a/src/icons/trending-down.js
+++ b/src/icons/trending-down.js
@@ -1,9 +1,12 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Polyline,
+} from 'svgs';
const TrendingDown = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/trending-up.js b/src/icons/trending-up.js
index 35e66e59..6e5966f6 100644
--- a/src/icons/trending-up.js
+++ b/src/icons/trending-up.js
@@ -1,9 +1,12 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Polyline,
+} from 'svgs';
const TrendingUp = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/triangle.js b/src/icons/triangle.js
index 396e0202..0fa59e13 100644
--- a/src/icons/triangle.js
+++ b/src/icons/triangle.js
@@ -1,9 +1,12 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Path,
+} from 'svgs';
const Triangle = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
);
});
diff --git a/src/icons/truck.js b/src/icons/truck.js
index f140ef7a..bf600b9e 100644
--- a/src/icons/truck.js
+++ b/src/icons/truck.js
@@ -1,9 +1,14 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Circle,
+ Polygon,
+ Rect,
+} from 'svgs';
const Truck = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
+
);
});
diff --git a/src/icons/tv.js b/src/icons/tv.js
index d008b05a..43cbc62f 100644
--- a/src/icons/tv.js
+++ b/src/icons/tv.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Polyline,
+ Rect,
+} from 'svgs';
const Tv = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/twitch.js b/src/icons/twitch.js
index 57d41532..ff67339f 100644
--- a/src/icons/twitch.js
+++ b/src/icons/twitch.js
@@ -1,9 +1,12 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Path,
+} from 'svgs';
const Twitch = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
);
});
diff --git a/src/icons/twitter.js b/src/icons/twitter.js
index 2828da19..21d5c3ef 100644
--- a/src/icons/twitter.js
+++ b/src/icons/twitter.js
@@ -1,9 +1,12 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Path,
+} from 'svgs';
const Twitter = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
);
});
diff --git a/src/icons/type.js b/src/icons/type.js
index e6f9029c..864bfba9 100644
--- a/src/icons/type.js
+++ b/src/icons/type.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+ Polyline,
+} from 'svgs';
const Type = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
);
});
diff --git a/src/icons/umbrella.js b/src/icons/umbrella.js
index aae4a4ae..5375097e 100644
--- a/src/icons/umbrella.js
+++ b/src/icons/umbrella.js
@@ -1,9 +1,12 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Path,
+} from 'svgs';
const Umbrella = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
);
});
diff --git a/src/icons/underline.js b/src/icons/underline.js
index 5062088f..478ec43d 100644
--- a/src/icons/underline.js
+++ b/src/icons/underline.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+ Path,
+} from 'svgs';
const Underline = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/unlock.js b/src/icons/unlock.js
index 15df0f6c..3b0c7f1c 100644
--- a/src/icons/unlock.js
+++ b/src/icons/unlock.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Path,
+ Rect,
+} from 'svgs';
const Unlock = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/upload-cloud.js b/src/icons/upload-cloud.js
index 655b600c..0a06dbd1 100644
--- a/src/icons/upload-cloud.js
+++ b/src/icons/upload-cloud.js
@@ -1,9 +1,14 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+ Path,
+ Polyline,
+} from 'svgs';
const UploadCloud = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
+
);
});
diff --git a/src/icons/upload.js b/src/icons/upload.js
index 2e027348..08ce973e 100644
--- a/src/icons/upload.js
+++ b/src/icons/upload.js
@@ -1,9 +1,14 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+ Path,
+ Polyline,
+} from 'svgs';
const Upload = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
);
});
diff --git a/src/icons/user-check.js b/src/icons/user-check.js
index 2295490d..25c786df 100644
--- a/src/icons/user-check.js
+++ b/src/icons/user-check.js
@@ -1,9 +1,14 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Circle,
+ Path,
+ Polyline,
+} from 'svgs';
const UserCheck = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
);
});
diff --git a/src/icons/user-minus.js b/src/icons/user-minus.js
index ef725ea8..bff30f60 100644
--- a/src/icons/user-minus.js
+++ b/src/icons/user-minus.js
@@ -1,9 +1,14 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Circle,
+ Line,
+ Path,
+} from 'svgs';
const UserMinus = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
);
});
diff --git a/src/icons/user-plus.js b/src/icons/user-plus.js
index 8b78e179..8dbda118 100644
--- a/src/icons/user-plus.js
+++ b/src/icons/user-plus.js
@@ -1,9 +1,14 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Circle,
+ Line,
+ Path,
+} from 'svgs';
const UserPlus = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
+
);
});
diff --git a/src/icons/user-x.js b/src/icons/user-x.js
index bd6b35c7..bbe1b8dd 100644
--- a/src/icons/user-x.js
+++ b/src/icons/user-x.js
@@ -1,9 +1,14 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Circle,
+ Line,
+ Path,
+} from 'svgs';
const UserX = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
+
);
});
diff --git a/src/icons/user.js b/src/icons/user.js
index f0a1b89a..11b3ccab 100644
--- a/src/icons/user.js
+++ b/src/icons/user.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Circle,
+ Path,
+} from 'svgs';
const User = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/users.js b/src/icons/users.js
index 2acd351b..95df686d 100644
--- a/src/icons/users.js
+++ b/src/icons/users.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Circle,
+ Path,
+} from 'svgs';
const Users = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
+
);
});
diff --git a/src/icons/video-off.js b/src/icons/video-off.js
index 14a6d24e..391ba52e 100644
--- a/src/icons/video-off.js
+++ b/src/icons/video-off.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+ Path,
+} from 'svgs';
const VideoOff = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/video.js b/src/icons/video.js
index b6001f84..d929beb6 100644
--- a/src/icons/video.js
+++ b/src/icons/video.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Polygon,
+ Rect,
+} from 'svgs';
const Video = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/voicemail.js b/src/icons/voicemail.js
index 2e87a05c..a8af7984 100644
--- a/src/icons/voicemail.js
+++ b/src/icons/voicemail.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Circle,
+ Line,
+} from 'svgs';
const Voicemail = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
);
});
diff --git a/src/icons/volume-1.js b/src/icons/volume-1.js
index d7dde9e0..af7187b8 100644
--- a/src/icons/volume-1.js
+++ b/src/icons/volume-1.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Path,
+ Polygon,
+} from 'svgs';
const Volume1 = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/volume-2.js b/src/icons/volume-2.js
index 39d1d902..0f1353cb 100644
--- a/src/icons/volume-2.js
+++ b/src/icons/volume-2.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Path,
+ Polygon,
+} from 'svgs';
const Volume2 = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/volume-x.js b/src/icons/volume-x.js
index 472fda37..f6034fd9 100644
--- a/src/icons/volume-x.js
+++ b/src/icons/volume-x.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+ Polygon,
+} from 'svgs';
const VolumeX = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
);
});
diff --git a/src/icons/volume.js b/src/icons/volume.js
index 13df574d..8bdf6025 100644
--- a/src/icons/volume.js
+++ b/src/icons/volume.js
@@ -1,9 +1,12 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Polygon,
+} from 'svgs';
const Volume = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
);
});
diff --git a/src/icons/watch.js b/src/icons/watch.js
index f62a8bb6..36ea6705 100644
--- a/src/icons/watch.js
+++ b/src/icons/watch.js
@@ -1,9 +1,14 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Circle,
+ Path,
+ Polyline,
+} from 'svgs';
const Watch = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
);
});
diff --git a/src/icons/wifi-off.js b/src/icons/wifi-off.js
index 5efc091e..5f0dedd1 100644
--- a/src/icons/wifi-off.js
+++ b/src/icons/wifi-off.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+ Path,
+} from 'svgs';
const WifiOff = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
+
+
+
+
);
});
diff --git a/src/icons/wifi.js b/src/icons/wifi.js
index d6545a92..1b462ce3 100644
--- a/src/icons/wifi.js
+++ b/src/icons/wifi.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+ Path,
+} from 'svgs';
const Wifi = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
+
);
});
diff --git a/src/icons/wind.js b/src/icons/wind.js
index baacc273..24720fb4 100644
--- a/src/icons/wind.js
+++ b/src/icons/wind.js
@@ -1,9 +1,12 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Path,
+} from 'svgs';
const Wind = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
);
});
diff --git a/src/icons/x-circle.js b/src/icons/x-circle.js
index d67dbc2e..3da60ec5 100644
--- a/src/icons/x-circle.js
+++ b/src/icons/x-circle.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Circle,
+ Line,
+} from 'svgs';
const XCircle = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
);
});
diff --git a/src/icons/x-octagon.js b/src/icons/x-octagon.js
index fe8e50a4..b641228d 100644
--- a/src/icons/x-octagon.js
+++ b/src/icons/x-octagon.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+ Polygon,
+} from 'svgs';
const XOctagon = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
);
});
diff --git a/src/icons/x-square.js b/src/icons/x-square.js
index 0487ec70..c717a385 100644
--- a/src/icons/x-square.js
+++ b/src/icons/x-square.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+ Rect,
+} from 'svgs';
const XSquare = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
);
});
diff --git a/src/icons/x.js b/src/icons/x.js
index 9e55193d..10a360dc 100644
--- a/src/icons/x.js
+++ b/src/icons/x.js
@@ -1,9 +1,12 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+} from 'svgs';
const X = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/youtube.js b/src/icons/youtube.js
index 6e53c85e..42b97683 100644
--- a/src/icons/youtube.js
+++ b/src/icons/youtube.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Path,
+ Polygon,
+} from 'svgs';
const Youtube = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
);
});
diff --git a/src/icons/zap-off.js b/src/icons/zap-off.js
index d98fecee..f1585f0a 100644
--- a/src/icons/zap-off.js
+++ b/src/icons/zap-off.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Line,
+ Polyline,
+} from 'svgs';
const ZapOff = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
+
);
});
diff --git a/src/icons/zap.js b/src/icons/zap.js
index 26458d89..7dabb16f 100644
--- a/src/icons/zap.js
+++ b/src/icons/zap.js
@@ -1,9 +1,12 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Polygon,
+} from 'svgs';
const Zap = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
);
});
diff --git a/src/icons/zoom-in.js b/src/icons/zoom-in.js
index 07427667..2471c40d 100644
--- a/src/icons/zoom-in.js
+++ b/src/icons/zoom-in.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Circle,
+ Line,
+} from 'svgs';
const ZoomIn = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
+
);
});
diff --git a/src/icons/zoom-out.js b/src/icons/zoom-out.js
index 375aed52..66975c39 100644
--- a/src/icons/zoom-out.js
+++ b/src/icons/zoom-out.js
@@ -1,9 +1,13 @@
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
+import Svg, {
+ Circle,
+ Line,
+} from 'svgs';
const ZoomOut = forwardRef(({ color = 'currentColor', size = 24, ...rest }, ref) => {
return (
-
+
+
+
+
);
});
diff --git a/yarn.lock b/yarn.lock
index 7e2191d5..df373205 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -886,11 +886,6 @@
lodash.unescape "4.0.1"
semver "5.5.0"
-abbrev@1:
- version "1.1.1"
- resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8"
- integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==
-
acorn-jsx@^3.0.0:
version "3.0.1"
resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b"
@@ -993,19 +988,6 @@ anymatch@^2.0.0:
micromatch "^3.1.4"
normalize-path "^2.1.1"
-aproba@^1.0.3:
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a"
- integrity sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==
-
-are-we-there-yet@~1.1.2:
- version "1.1.5"
- resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz#4b35c2944f062a8bfcda66410760350fe9ddfc21"
- integrity sha512-5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w==
- dependencies:
- delegates "^1.0.0"
- readable-stream "^2.0.6"
-
argparse@^1.0.7:
version "1.0.10"
resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911"
@@ -1718,11 +1700,6 @@ chokidar@^2.1.8:
optionalDependencies:
fsevents "^1.2.7"
-chownr@^1.1.1:
- version "1.1.4"
- resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.4.tgz#6fc9d7b42d32a583596337666e7d08084da2cc6b"
- integrity sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==
-
class-utils@^0.3.5:
version "0.3.6"
resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463"
@@ -1766,11 +1743,6 @@ cliui@^5.0.0:
strip-ansi "^5.2.0"
wrap-ansi "^5.1.0"
-code-point-at@^1.0.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77"
- integrity sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=
-
collection-visit@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0"
@@ -1848,11 +1820,6 @@ confusing-browser-globals@^1.0.9:
resolved "https://registry.yarnpkg.com/confusing-browser-globals/-/confusing-browser-globals-1.0.9.tgz#72bc13b483c0276801681871d4898516f8f54fdd"
integrity sha512-KbS1Y0jMtyPgIxjO7ZzMAuUpAKMt1SzCL9fsrKsX6b0zJPTaT0SiSPmewwVZg9UAO83HVIlEhZF84LIjZ0lmAw==
-console-control-strings@^1.0.0, console-control-strings@~1.1.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e"
- integrity sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=
-
contains-path@^0.1.0:
version "0.1.0"
resolved "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a"
@@ -1926,7 +1893,7 @@ debug@^2.2.0, debug@^2.3.3, debug@^2.6.8, debug@^2.6.9:
dependencies:
ms "2.0.0"
-debug@^3.1.0, debug@^3.2.6:
+debug@^3.1.0:
version "3.2.6"
resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.6.tgz#e83d17de16d8a7efb7717edbe5fb10135eee629b"
integrity sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==
@@ -1950,11 +1917,6 @@ decode-uri-component@^0.2.0:
resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545"
integrity sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=
-deep-extend@^0.6.0:
- version "0.6.0"
- resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac"
- integrity sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==
-
deep-is@~0.1.3:
version "0.1.3"
resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34"
@@ -1989,16 +1951,6 @@ define-property@^2.0.2:
is-descriptor "^1.0.2"
isobject "^3.0.1"
-delegates@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a"
- integrity sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=
-
-detect-libc@^1.0.2:
- version "1.0.3"
- resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b"
- integrity sha1-+hN8S9aY7fVc1c0CrFWfkaTEups=
-
dlv@^1.1.0:
version "1.1.3"
resolved "https://registry.yarnpkg.com/dlv/-/dlv-1.1.3.tgz#5c198a8a11453596e751494d49874bc7732f2e79"
@@ -2500,13 +2452,6 @@ fragment-cache@^0.2.1:
dependencies:
map-cache "^0.2.2"
-fs-minipass@^1.2.5:
- version "1.2.7"
- resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-1.2.7.tgz#ccff8570841e7fe4265693da88936c55aed7f7c7"
- integrity sha512-GWSSJGFy4e9GUeCcbIkED+bgAoFyj7XF1mV8rma3QW4NIqX9Kyx79N/PF61H5udOV3aY1IaMLs6pGbH71nlCTA==
- dependencies:
- minipass "^2.6.0"
-
fs-readdir-recursive@^1.1.0:
version "1.1.0"
resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.1.0.tgz#e32fc030a2ccee44a6b5371308da54be0b397d27"
@@ -2540,20 +2485,6 @@ functional-red-black-tree@^1.0.1:
resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327"
integrity sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=
-gauge@~2.7.3:
- version "2.7.4"
- resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7"
- integrity sha1-LANAXHU4w51+s3sxcCLjJfsBi/c=
- dependencies:
- aproba "^1.0.3"
- console-control-strings "^1.0.0"
- has-unicode "^2.0.0"
- object-assign "^4.1.0"
- signal-exit "^3.0.0"
- string-width "^1.0.1"
- strip-ansi "^3.0.1"
- wide-align "^1.1.0"
-
gensync@^1.0.0-beta.1:
version "1.0.0-beta.1"
resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.1.tgz#58f4361ff987e5ff6e1e7a210827aa371eaac269"
@@ -2640,11 +2571,6 @@ has-symbols@^1.0.0, has-symbols@^1.0.1:
resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.1.tgz#9f5214758a44196c406d9bd76cebf81ec2dd31e8"
integrity sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==
-has-unicode@^2.0.0:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9"
- integrity sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=
-
has-value@^0.3.1:
version "0.3.1"
resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f"
@@ -2688,20 +2614,13 @@ hosted-git-info@^2.1.4:
resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.8.tgz#7539bd4bc1e0e0a895815a2e0262420b12858488"
integrity sha512-f/wzC2QaWBs7t9IYqB4T3sR1xviIViXJRJTWBlx2Gf3g0Xi5vI7Yy4koXQ1c9OYDGHN9sBy1DQ2AB8fqZBWhUg==
-iconv-lite@^0.4.24, iconv-lite@^0.4.4:
+iconv-lite@^0.4.24:
version "0.4.24"
resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b"
integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==
dependencies:
safer-buffer ">= 2.1.2 < 3"
-ignore-walk@^3.0.1:
- version "3.0.3"
- resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-3.0.3.tgz#017e2447184bfeade7c238e4aefdd1e8f95b1e37"
- integrity sha512-m7o6xuOaT1aqheYHKf8W6J5pYH85ZI9w077erOzLje3JsB1gkafkAhHHY19dqjulgIZHFm32Cp5uNZgcQqdJKw==
- dependencies:
- minimatch "^3.0.4"
-
ignore@^4.0.6:
version "4.0.6"
resolved "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc"
@@ -2738,11 +2657,6 @@ inherits@2, inherits@^2.0.3, inherits@~2.0.3:
resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c"
integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
-ini@~1.3.0:
- version "1.3.5"
- resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927"
- integrity sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw==
-
inquirer@^6.2.2:
version "6.5.2"
resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-6.5.2.tgz#ad50942375d036d327ff528c08bd5fab089928ca"
@@ -2887,13 +2801,6 @@ is-extglob@^2.1.0, is-extglob@^2.1.1:
resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2"
integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=
-is-fullwidth-code-point@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb"
- integrity sha1-754xOG8DGn8NZDr4L95QxFfvAMs=
- dependencies:
- number-is-nan "^1.0.0"
-
is-fullwidth-code-point@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f"
@@ -3202,26 +3109,11 @@ minimatch@^3.0.4:
dependencies:
brace-expansion "^1.1.7"
-minimist@^1.2.0, minimist@^1.2.5:
+minimist@^1.2.5:
version "1.2.5"
resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602"
integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==
-minipass@^2.6.0, minipass@^2.8.6, minipass@^2.9.0:
- version "2.9.0"
- resolved "https://registry.yarnpkg.com/minipass/-/minipass-2.9.0.tgz#e713762e7d3e32fed803115cf93e04bca9fcc9a6"
- integrity sha512-wxfUjg9WebH+CUDX/CdbRlh5SmfZiy/hpkxaRI16Y9W56Pa75sWgd/rvFilSgrauD9NyFymP/+JFV3KwzIsJeg==
- dependencies:
- safe-buffer "^5.1.2"
- yallist "^3.0.0"
-
-minizlib@^1.2.1:
- version "1.3.3"
- resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-1.3.3.tgz#2290de96818a34c29551c8a8d301216bd65a861d"
- integrity sha512-6ZYMOEnmVsdCeTJVE0W9ZD+pVnE8h9Hma/iOwwRDsdQoePpoX56/8B6z3P9VNwppJuBKNRuFDRNRqRWexT9G9Q==
- dependencies:
- minipass "^2.9.0"
-
mixin-deep@^1.2.0:
version "1.3.2"
resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.2.tgz#1120b43dc359a785dce65b55b82e257ccf479566"
@@ -3230,7 +3122,7 @@ mixin-deep@^1.2.0:
for-in "^1.0.2"
is-extendable "^1.0.1"
-mkdirp@^0.5.0, mkdirp@^0.5.1:
+mkdirp@^0.5.1:
version "0.5.5"
resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.5.tgz#d91cefd62d1436ca0f41620e251288d420099def"
integrity sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==
@@ -3284,49 +3176,16 @@ natural-compare@^1.4.0:
resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"
integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=
-needle@^2.2.1:
- version "2.4.1"
- resolved "https://registry.yarnpkg.com/needle/-/needle-2.4.1.tgz#14af48732463d7475696f937626b1b993247a56a"
- integrity sha512-x/gi6ijr4B7fwl6WYL9FwlCvRQKGlUNvnceho8wxkwXqN8jvVmmmATTmZPRRG7b/yC1eode26C2HO9jl78Du9g==
- dependencies:
- debug "^3.2.6"
- iconv-lite "^0.4.4"
- sax "^1.2.4"
-
nice-try@^1.0.4:
version "1.0.5"
resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366"
integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==
-node-pre-gyp@*:
- version "0.14.0"
- resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.14.0.tgz#9a0596533b877289bcad4e143982ca3d904ddc83"
- integrity sha512-+CvDC7ZttU/sSt9rFjix/P05iS43qHCOOGzcr3Ry99bXG7VX953+vFyEuph/tfqoYu8dttBkE86JSKBO2OzcxA==
- dependencies:
- detect-libc "^1.0.2"
- mkdirp "^0.5.1"
- needle "^2.2.1"
- nopt "^4.0.1"
- npm-packlist "^1.1.6"
- npmlog "^4.0.2"
- rc "^1.2.7"
- rimraf "^2.6.1"
- semver "^5.3.0"
- tar "^4.4.2"
-
node-releases@^1.1.53:
version "1.1.53"
resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.53.tgz#2d821bfa499ed7c5dffc5e2f28c88e78a08ee3f4"
integrity sha512-wp8zyQVwef2hpZ/dJH7SfSrIPD6YoJz6BDQDpGEkcA0s3LpAQoxBIYmfIq6QAhC1DhwsyCgTaTTcONwX8qzCuQ==
-nopt@^4.0.1:
- version "4.0.3"
- resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.3.tgz#a375cad9d02fd921278d954c2254d5aa57e15e48"
- integrity sha512-CvaGwVMztSMJLOeXPrez7fyfObdZqNUK1cPAEzLHrTybIua9pMdmmPR5YwtfNftIOMv3DPUhFaxsZMNTQO20Kg==
- dependencies:
- abbrev "1"
- osenv "^0.1.4"
-
normalize-package-data@^2.3.2:
version "2.5.0"
resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8"
@@ -3349,43 +3208,7 @@ normalize-path@^3.0.0:
resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65"
integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==
-npm-bundled@^1.0.1:
- version "1.1.1"
- resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.1.1.tgz#1edd570865a94cdb1bc8220775e29466c9fb234b"
- integrity sha512-gqkfgGePhTpAEgUsGEgcq1rqPXA+tv/aVBlgEzfXwA1yiUJF7xtEt3CtVwOjNYQOVknDk0F20w58Fnm3EtG0fA==
- dependencies:
- npm-normalize-package-bin "^1.0.1"
-
-npm-normalize-package-bin@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/npm-normalize-package-bin/-/npm-normalize-package-bin-1.0.1.tgz#6e79a41f23fd235c0623218228da7d9c23b8f6e2"
- integrity sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA==
-
-npm-packlist@^1.1.6:
- version "1.4.8"
- resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-1.4.8.tgz#56ee6cc135b9f98ad3d51c1c95da22bbb9b2ef3e"
- integrity sha512-5+AZgwru5IevF5ZdnFglB5wNlHG1AOOuw28WhUq8/8emhBmLv6jX5by4WJCh7lW0uSYZYS6DXqIsyZVIXRZU9A==
- dependencies:
- ignore-walk "^3.0.1"
- npm-bundled "^1.0.1"
- npm-normalize-package-bin "^1.0.1"
-
-npmlog@^4.0.2:
- version "4.1.2"
- resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b"
- integrity sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==
- dependencies:
- are-we-there-yet "~1.1.2"
- console-control-strings "~1.1.0"
- gauge "~2.7.3"
- set-blocking "~2.0.0"
-
-number-is-nan@^1.0.0:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d"
- integrity sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=
-
-object-assign@^4.1.0, object-assign@^4.1.1:
+object-assign@^4.1.1:
version "4.1.1"
resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=
@@ -3496,24 +3319,11 @@ optionator@^0.8.2, optionator@^0.8.3:
type-check "~0.3.2"
word-wrap "~1.2.3"
-os-homedir@^1.0.0:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3"
- integrity sha1-/7xJiDNuDoM94MFox+8VISGqf7M=
-
-os-tmpdir@^1.0.0, os-tmpdir@~1.0.2:
+os-tmpdir@~1.0.2:
version "1.0.2"
resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274"
integrity sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=
-osenv@^0.1.4:
- version "0.1.5"
- resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410"
- integrity sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==
- dependencies:
- os-homedir "^1.0.0"
- os-tmpdir "^1.0.0"
-
p-limit@^1.1.0:
version "1.3.0"
resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8"
@@ -3702,7 +3512,7 @@ progress@^2.0.0:
resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8"
integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==
-prop-types@^15.7.2:
+prop-types@^15.5.10, prop-types@^15.7.2:
version "15.7.2"
resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.7.2.tgz#52c41e75b8c87e72b9d9360e0206b99dcbffa6c5"
integrity sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ==
@@ -3716,16 +3526,6 @@ punycode@^2.1.0:
resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec"
integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==
-rc@^1.2.7:
- version "1.2.8"
- resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed"
- integrity sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==
- dependencies:
- deep-extend "^0.6.0"
- ini "~1.3.0"
- minimist "^1.2.0"
- strip-json-comments "~2.0.1"
-
react-is@^16.8.1:
version "16.13.1"
resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4"
@@ -3757,7 +3557,7 @@ read-pkg@^4.0.1:
parse-json "^4.0.0"
pify "^3.0.0"
-readable-stream@^2.0.2, readable-stream@^2.0.6:
+readable-stream@^2.0.2:
version "2.3.7"
resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57"
integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==
@@ -3959,12 +3759,10 @@ rimraf@2.6.3:
dependencies:
glob "^7.1.3"
-rimraf@^2.6.1:
- version "2.7.1"
- resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec"
- integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==
- dependencies:
- glob "^7.1.3"
+rip-out@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/rip-out/-/rip-out-1.0.0.tgz#d622a7b607e1cdadc8b079bf9fb3da42c13b98e3"
+ integrity sha1-1iKntgfhza3IsHm/n7PaQsE7mOM=
rollup-plugin-babel@^4.3.3:
version "4.4.0"
@@ -4002,11 +3800,6 @@ rxjs@^6.4.0, rxjs@^6.5.2, rxjs@^6.5.3:
dependencies:
tslib "^1.9.0"
-safe-buffer@^5.1.2:
- version "5.2.0"
- resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.0.tgz#b74daec49b1148f88c64b68d49b1e815c1f2f519"
- integrity sha512-fZEwUGbVl7kouZs1jCdMLdt95hdIv0ZeHg6L7qPeciMZhZ+/gdesW4wgTARkrFWEpspjEATAzUGPG8N2jJiwbg==
-
safe-buffer@~5.1.0, safe-buffer@~5.1.1:
version "5.1.2"
resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d"
@@ -4024,11 +3817,6 @@ safe-regex@^1.1.0:
resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a"
integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==
-sax@^1.2.4:
- version "1.2.4"
- resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9"
- integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==
-
"semver@2 || 3 || 4 || 5", semver@^5.3.0, semver@^5.4.1, semver@^5.5.0, semver@^5.5.1, semver@^5.6.0:
version "5.7.1"
resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7"
@@ -4049,7 +3837,7 @@ semver@^6.1.2, semver@^6.3.0:
resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d"
integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==
-set-blocking@^2.0.0, set-blocking@~2.0.0:
+set-blocking@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7"
integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc=
@@ -4084,7 +3872,7 @@ side-channel@^1.0.2:
es-abstract "^1.17.0-next.1"
object-inspect "^1.7.0"
-signal-exit@^3.0.0, signal-exit@^3.0.2:
+signal-exit@^3.0.2:
version "3.0.3"
resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.3.tgz#a1410c2edd8f077b08b4e253c8eacfcaf057461c"
integrity sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==
@@ -4205,16 +3993,7 @@ static-extend@^0.1.1:
define-property "^0.2.5"
object-copy "^0.1.0"
-string-width@^1.0.1:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3"
- integrity sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=
- dependencies:
- code-point-at "^1.0.0"
- is-fullwidth-code-point "^1.0.0"
- strip-ansi "^3.0.0"
-
-"string-width@^1.0.2 || 2", string-width@^2.1.0:
+string-width@^2.1.0:
version "2.1.1"
resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e"
integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==
@@ -4293,7 +4072,7 @@ string_decoder@~1.1.1:
dependencies:
safe-buffer "~5.1.0"
-strip-ansi@^3.0.0, strip-ansi@^3.0.1:
+strip-ansi@^3.0.0:
version "3.0.1"
resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"
integrity sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=
@@ -4326,7 +4105,7 @@ strip-bom@^3.0.0:
resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3"
integrity sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=
-strip-json-comments@^2.0.1, strip-json-comments@~2.0.1:
+strip-json-comments@^2.0.1:
version "2.0.1"
resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a"
integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo=
@@ -4362,6 +4141,14 @@ supports-color@^7.1.0:
dependencies:
has-flag "^4.0.0"
+svgs@^4.1.1:
+ version "4.1.1"
+ resolved "https://registry.yarnpkg.com/svgs/-/svgs-4.1.1.tgz#cff1b5caaf9e3a5e51e75c1ea16df6fa54941505"
+ integrity sha512-5QDy6nu4EcBvebNoRQ6iiXfqt/IB2hKdeh5rXwEuoywKX/YtfK8xFggQWSwR24dKpK+C1n7kzBAhPa0bUOrV6A==
+ dependencies:
+ prop-types "^15.5.10"
+ rip-out "^1.0.0"
+
table@^5.2.3:
version "5.4.6"
resolved "https://registry.yarnpkg.com/table/-/table-5.4.6.tgz#1292d19500ce3f86053b05f0e8e7e4a3bb21079e"
@@ -4372,19 +4159,6 @@ table@^5.2.3:
slice-ansi "^2.1.0"
string-width "^3.0.0"
-tar@^4.4.2:
- version "4.4.13"
- resolved "https://registry.yarnpkg.com/tar/-/tar-4.4.13.tgz#43b364bc52888d555298637b10d60790254ab525"
- integrity sha512-w2VwSrBoHa5BsSyH+KxEqeQBAllHhccyMFVHtGtdMpF4W7IRWfZjFiQceJPChOeTsSDVUpER2T8FA93pr0L+QA==
- dependencies:
- chownr "^1.1.1"
- fs-minipass "^1.2.5"
- minipass "^2.8.6"
- minizlib "^1.2.1"
- mkdirp "^0.5.0"
- safe-buffer "^5.1.2"
- yallist "^3.0.3"
-
text-table@^0.2.0:
version "0.2.0"
resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4"
@@ -4581,13 +4355,6 @@ which@^1.2.9:
dependencies:
isexe "^2.0.0"
-wide-align@^1.1.0:
- version "1.1.3"
- resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.3.tgz#ae074e6bdc0c14a431e804e624549c633b000457"
- integrity sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA==
- dependencies:
- string-width "^1.0.2 || 2"
-
word-wrap@~1.2.3:
version "1.2.3"
resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c"
@@ -4626,11 +4393,6 @@ y18n@^4.0.0:
resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.0.tgz#95ef94f85ecc81d007c264e190a120f0a3c8566b"
integrity sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w==
-yallist@^3.0.0, yallist@^3.0.3:
- version "3.1.1"
- resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd"
- integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==
-
yargs-parser@^13.1.2:
version "13.1.2"
resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-13.1.2.tgz#130f09702ebaeef2650d54ce6e3e5706f7a4fb38"