@tenancy.nz/icons 1.8.3 → 1.8.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/components/CarParked.cjs +16 -0
- package/dist/cjs/components/DragIndicator.cjs +16 -0
- package/dist/cjs/components/Profile.cjs +1 -1
- package/dist/cjs/components/SVGIcon.cjs +1 -1
- package/dist/cjs/index.cjs +4 -0
- package/dist/esm/components/CarParked.js +12 -0
- package/dist/esm/components/DragIndicator.js +12 -0
- package/dist/esm/components/Profile.js +1 -1
- package/dist/esm/components/SVGIcon.js +1 -1
- package/dist/esm/index.js +2 -0
- package/package.json +1 -1
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
var _rollupPluginBabelHelpers = require('../_virtual/_rollupPluginBabelHelpers.cjs');
|
|
6
|
+
var React = require('react');
|
|
7
|
+
var SVGIcon = require('./SVGIcon.cjs');
|
|
8
|
+
|
|
9
|
+
var paths = ["M18.92 6.01C18.72 5.42 18.16 5 17.5 5h-11c-.66 0-1.21.42-1.42 1.01L3 12v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.5 16c-.83 0-1.5-.67-1.5-1.5S5.67 13 6.5 13s1.5.67 1.5 1.5S7.33 16 6.5 16zm11 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 11l1.5-4.5h11L19 11H5z"];
|
|
10
|
+
function CarParked(props) {
|
|
11
|
+
return /* @__PURE__ */React.createElement(SVGIcon.default, _rollupPluginBabelHelpers.objectSpread2(_rollupPluginBabelHelpers.objectSpread2({}, props), {}, {
|
|
12
|
+
paths: paths
|
|
13
|
+
}));
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
exports.default = CarParked;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
var _rollupPluginBabelHelpers = require('../_virtual/_rollupPluginBabelHelpers.cjs');
|
|
6
|
+
var React = require('react');
|
|
7
|
+
var SVGIcon = require('./SVGIcon.cjs');
|
|
8
|
+
|
|
9
|
+
var paths = ["M11 18c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zm-2-8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 4c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z"];
|
|
10
|
+
function DragIndicator(props) {
|
|
11
|
+
return /* @__PURE__ */React.createElement(SVGIcon.default, _rollupPluginBabelHelpers.objectSpread2(_rollupPluginBabelHelpers.objectSpread2({}, props), {}, {
|
|
12
|
+
paths: paths
|
|
13
|
+
}));
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
exports.default = DragIndicator;
|
|
@@ -6,7 +6,7 @@ var _rollupPluginBabelHelpers = require('../_virtual/_rollupPluginBabelHelpers.c
|
|
|
6
6
|
var React = require('react');
|
|
7
7
|
var SVGIcon = require('./SVGIcon.cjs');
|
|
8
8
|
|
|
9
|
-
var paths = ["M12.01,11.1h-.01c-3.43,0-6.21,2.78-6.21,6.21,0,2.1,1.7,3.8,3.8,3.8h4.84c2.1,0,3.8-1.7,3.8-3.8,0-3.43-2.78-6.21-6.21-6.21Z"];
|
|
9
|
+
var paths = ["M12,3.09a3.79,3.79,0,1,0,3.79,3.79A3.79,3.79,0,0,0,12,3.09Z", "M12.01,11.1h-.01c-3.43,0-6.21,2.78-6.21,6.21,0,2.1,1.7,3.8,3.8,3.8h4.84c2.1,0,3.8-1.7,3.8-3.8,0-3.43-2.78-6.21-6.21-6.21Z"];
|
|
10
10
|
function Profile(props) {
|
|
11
11
|
return /* @__PURE__ */React.createElement(SVGIcon.default, _rollupPluginBabelHelpers.objectSpread2(_rollupPluginBabelHelpers.objectSpread2({}, props), {}, {
|
|
12
12
|
paths: paths
|
|
@@ -17,7 +17,7 @@ function SVGIcon(_ref) {
|
|
|
17
17
|
_ref$color = _ref.color,
|
|
18
18
|
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
19
19
|
_ref$size = _ref.size,
|
|
20
|
-
size = _ref$size === void 0 ?
|
|
20
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
21
21
|
_ref$viewBox = _ref.viewBox,
|
|
22
22
|
viewBox = _ref$viewBox === void 0 ? "0 0 24 24" : _ref$viewBox;
|
|
23
23
|
return /* @__PURE__ */React.createElement("svg", {
|
package/dist/cjs/index.cjs
CHANGED
|
@@ -59,6 +59,7 @@ var CaretRightOutlined = require('./components/CaretRightOutlined.cjs');
|
|
|
59
59
|
var CaretUp = require('./components/CaretUp.cjs');
|
|
60
60
|
var CaretUpOutlined = require('./components/CaretUpOutlined.cjs');
|
|
61
61
|
var CarOutlined = require('./components/CarOutlined.cjs');
|
|
62
|
+
var CarParked = require('./components/CarParked.cjs');
|
|
62
63
|
var Certificate = require('./components/Certificate.cjs');
|
|
63
64
|
var CertificateOutlined = require('./components/CertificateOutlined.cjs');
|
|
64
65
|
var CertificatesOutlined = require('./components/CertificatesOutlined.cjs');
|
|
@@ -117,6 +118,7 @@ var DollarCreditCheckOutlined = require('./components/DollarCreditCheckOutlined.
|
|
|
117
118
|
var DollarOutlined = require('./components/DollarOutlined.cjs');
|
|
118
119
|
var DownloadDoneOutlined = require('./components/DownloadDoneOutlined.cjs');
|
|
119
120
|
var DownloadOutlined = require('./components/DownloadOutlined.cjs');
|
|
121
|
+
var DragIndicator = require('./components/DragIndicator.cjs');
|
|
120
122
|
var DragonflyOutlined = require('./components/DragonflyOutlined.cjs');
|
|
121
123
|
var DraughtStoppingOutlined = require('./components/DraughtStoppingOutlined.cjs');
|
|
122
124
|
var Duplicate = require('./components/Duplicate.cjs');
|
|
@@ -359,6 +361,7 @@ exports.CaretRightOutlined = CaretRightOutlined.default;
|
|
|
359
361
|
exports.CaretUp = CaretUp.default;
|
|
360
362
|
exports.CaretUpOutlined = CaretUpOutlined.default;
|
|
361
363
|
exports.CarOutlined = CarOutlined.default;
|
|
364
|
+
exports.CarParked = CarParked.default;
|
|
362
365
|
exports.Certificate = Certificate.default;
|
|
363
366
|
exports.CertificateOutlined = CertificateOutlined.default;
|
|
364
367
|
exports.CertificatesOutlined = CertificatesOutlined.default;
|
|
@@ -417,6 +420,7 @@ exports.DollarCreditCheckOutlined = DollarCreditCheckOutlined.default;
|
|
|
417
420
|
exports.DollarOutlined = DollarOutlined.default;
|
|
418
421
|
exports.DownloadDoneOutlined = DownloadDoneOutlined.default;
|
|
419
422
|
exports.DownloadOutlined = DownloadOutlined.default;
|
|
423
|
+
exports.DragIndicator = DragIndicator.default;
|
|
420
424
|
exports.DragonflyOutlined = DragonflyOutlined.default;
|
|
421
425
|
exports.DraughtStoppingOutlined = DraughtStoppingOutlined.default;
|
|
422
426
|
exports.Duplicate = Duplicate.default;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { objectSpread2 as _objectSpread2 } from '../_virtual/_rollupPluginBabelHelpers.js';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import SVGIcon from './SVGIcon.js';
|
|
4
|
+
|
|
5
|
+
var paths = ["M18.92 6.01C18.72 5.42 18.16 5 17.5 5h-11c-.66 0-1.21.42-1.42 1.01L3 12v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.5 16c-.83 0-1.5-.67-1.5-1.5S5.67 13 6.5 13s1.5.67 1.5 1.5S7.33 16 6.5 16zm11 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 11l1.5-4.5h11L19 11H5z"];
|
|
6
|
+
function CarParked(props) {
|
|
7
|
+
return /* @__PURE__ */React.createElement(SVGIcon, _objectSpread2(_objectSpread2({}, props), {}, {
|
|
8
|
+
paths: paths
|
|
9
|
+
}));
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
export { CarParked as default };
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { objectSpread2 as _objectSpread2 } from '../_virtual/_rollupPluginBabelHelpers.js';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import SVGIcon from './SVGIcon.js';
|
|
4
|
+
|
|
5
|
+
var paths = ["M11 18c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zm-2-8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 4c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z"];
|
|
6
|
+
function DragIndicator(props) {
|
|
7
|
+
return /* @__PURE__ */React.createElement(SVGIcon, _objectSpread2(_objectSpread2({}, props), {}, {
|
|
8
|
+
paths: paths
|
|
9
|
+
}));
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
export { DragIndicator as default };
|
|
@@ -2,7 +2,7 @@ import { objectSpread2 as _objectSpread2 } from '../_virtual/_rollupPluginBabelH
|
|
|
2
2
|
import React from 'react';
|
|
3
3
|
import SVGIcon from './SVGIcon.js';
|
|
4
4
|
|
|
5
|
-
var paths = ["M12.01,11.1h-.01c-3.43,0-6.21,2.78-6.21,6.21,0,2.1,1.7,3.8,3.8,3.8h4.84c2.1,0,3.8-1.7,3.8-3.8,0-3.43-2.78-6.21-6.21-6.21Z"];
|
|
5
|
+
var paths = ["M12,3.09a3.79,3.79,0,1,0,3.79,3.79A3.79,3.79,0,0,0,12,3.09Z", "M12.01,11.1h-.01c-3.43,0-6.21,2.78-6.21,6.21,0,2.1,1.7,3.8,3.8,3.8h4.84c2.1,0,3.8-1.7,3.8-3.8,0-3.43-2.78-6.21-6.21-6.21Z"];
|
|
6
6
|
function Profile(props) {
|
|
7
7
|
return /* @__PURE__ */React.createElement(SVGIcon, _objectSpread2(_objectSpread2({}, props), {}, {
|
|
8
8
|
paths: paths
|
|
@@ -13,7 +13,7 @@ function SVGIcon(_ref) {
|
|
|
13
13
|
_ref$color = _ref.color,
|
|
14
14
|
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
15
15
|
_ref$size = _ref.size,
|
|
16
|
-
size = _ref$size === void 0 ?
|
|
16
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
17
17
|
_ref$viewBox = _ref.viewBox,
|
|
18
18
|
viewBox = _ref$viewBox === void 0 ? "0 0 24 24" : _ref$viewBox;
|
|
19
19
|
return /* @__PURE__ */React.createElement("svg", {
|
package/dist/esm/index.js
CHANGED
|
@@ -57,6 +57,7 @@ export { default as CaretRightOutlined } from './components/CaretRightOutlined.j
|
|
|
57
57
|
export { default as CaretUp } from './components/CaretUp.js';
|
|
58
58
|
export { default as CaretUpOutlined } from './components/CaretUpOutlined.js';
|
|
59
59
|
export { default as CarOutlined } from './components/CarOutlined.js';
|
|
60
|
+
export { default as CarParked } from './components/CarParked.js';
|
|
60
61
|
export { default as Certificate } from './components/Certificate.js';
|
|
61
62
|
export { default as CertificateOutlined } from './components/CertificateOutlined.js';
|
|
62
63
|
export { default as CertificatesOutlined } from './components/CertificatesOutlined.js';
|
|
@@ -115,6 +116,7 @@ export { default as DollarCreditCheckOutlined } from './components/DollarCreditC
|
|
|
115
116
|
export { default as DollarOutlined } from './components/DollarOutlined.js';
|
|
116
117
|
export { default as DownloadDoneOutlined } from './components/DownloadDoneOutlined.js';
|
|
117
118
|
export { default as DownloadOutlined } from './components/DownloadOutlined.js';
|
|
119
|
+
export { default as DragIndicator } from './components/DragIndicator.js';
|
|
118
120
|
export { default as DragonflyOutlined } from './components/DragonflyOutlined.js';
|
|
119
121
|
export { default as DraughtStoppingOutlined } from './components/DraughtStoppingOutlined.js';
|
|
120
122
|
export { default as Duplicate } from './components/Duplicate.js';
|