@tenancy.nz/icons 1.8.6 → 1.9.0
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/CheckBox.cjs +16 -0
- package/dist/cjs/components/CheckBoxBlank.cjs +16 -0
- package/dist/cjs/components/CheckBoxIndeterminate.cjs +16 -0
- package/dist/cjs/index.cjs +6 -0
- package/dist/esm/components/CheckBox.js +12 -0
- package/dist/esm/components/CheckBoxBlank.js +12 -0
- package/dist/esm/components/CheckBoxIndeterminate.js +12 -0
- package/dist/esm/index.js +3 -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 = ["M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-8.29 13.29c-.39.39-1.02.39-1.41 0L5.71 12.7c-.39-.39-.39-1.02 0-1.41.39-.39 1.02-.39 1.41 0L10 14.17l6.88-6.88c.39-.39 1.02-.39 1.41 0 .39.39.39 1.02 0 1.41l-7.58 7.59z"];
|
|
10
|
+
function CheckBox(props) {
|
|
11
|
+
return /* @__PURE__ */React.createElement(SVGIcon.default, _rollupPluginBabelHelpers.objectSpread2(_rollupPluginBabelHelpers.objectSpread2({}, props), {}, {
|
|
12
|
+
paths: paths
|
|
13
|
+
}));
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
exports.default = CheckBox;
|
|
@@ -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 = ["M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z"];
|
|
10
|
+
function CheckBoxBlank(props) {
|
|
11
|
+
return /* @__PURE__ */React.createElement(SVGIcon.default, _rollupPluginBabelHelpers.objectSpread2(_rollupPluginBabelHelpers.objectSpread2({}, props), {}, {
|
|
12
|
+
paths: paths
|
|
13
|
+
}));
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
exports.default = CheckBoxBlank;
|
|
@@ -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 = ["M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-3 10H8c-.55 0-1-.45-1-1s.45-1 1-1h8c.55 0 1 .45 1 1s-.45 1-1 1z"];
|
|
10
|
+
function CheckBoxIndeterminate(props) {
|
|
11
|
+
return /* @__PURE__ */React.createElement(SVGIcon.default, _rollupPluginBabelHelpers.objectSpread2(_rollupPluginBabelHelpers.objectSpread2({}, props), {}, {
|
|
12
|
+
paths: paths
|
|
13
|
+
}));
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
exports.default = CheckBoxIndeterminate;
|
package/dist/cjs/index.cjs
CHANGED
|
@@ -63,6 +63,9 @@ var CarParked = require('./components/CarParked.cjs');
|
|
|
63
63
|
var Certificate = require('./components/Certificate.cjs');
|
|
64
64
|
var CertificateOutlined = require('./components/CertificateOutlined.cjs');
|
|
65
65
|
var CertificatesOutlined = require('./components/CertificatesOutlined.cjs');
|
|
66
|
+
var CheckBox = require('./components/CheckBox.cjs');
|
|
67
|
+
var CheckBoxBlank = require('./components/CheckBoxBlank.cjs');
|
|
68
|
+
var CheckBoxIndeterminate = require('./components/CheckBoxIndeterminate.cjs');
|
|
66
69
|
var CheckOutlined = require('./components/CheckOutlined.cjs');
|
|
67
70
|
var ChevronDownOutlined = require('./components/ChevronDownOutlined.cjs');
|
|
68
71
|
var ChevronLeftOutlined = require('./components/ChevronLeftOutlined.cjs');
|
|
@@ -365,6 +368,9 @@ exports.CarParked = CarParked.default;
|
|
|
365
368
|
exports.Certificate = Certificate.default;
|
|
366
369
|
exports.CertificateOutlined = CertificateOutlined.default;
|
|
367
370
|
exports.CertificatesOutlined = CertificatesOutlined.default;
|
|
371
|
+
exports.CheckBox = CheckBox.default;
|
|
372
|
+
exports.CheckBoxBlank = CheckBoxBlank.default;
|
|
373
|
+
exports.CheckBoxIndeterminate = CheckBoxIndeterminate.default;
|
|
368
374
|
exports.CheckOutlined = CheckOutlined.default;
|
|
369
375
|
exports.ChevronDownOutlined = ChevronDownOutlined.default;
|
|
370
376
|
exports.ChevronLeftOutlined = ChevronLeftOutlined.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 = ["M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-8.29 13.29c-.39.39-1.02.39-1.41 0L5.71 12.7c-.39-.39-.39-1.02 0-1.41.39-.39 1.02-.39 1.41 0L10 14.17l6.88-6.88c.39-.39 1.02-.39 1.41 0 .39.39.39 1.02 0 1.41l-7.58 7.59z"];
|
|
6
|
+
function CheckBox(props) {
|
|
7
|
+
return /* @__PURE__ */React.createElement(SVGIcon, _objectSpread2(_objectSpread2({}, props), {}, {
|
|
8
|
+
paths: paths
|
|
9
|
+
}));
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
export { CheckBox 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 = ["M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z"];
|
|
6
|
+
function CheckBoxBlank(props) {
|
|
7
|
+
return /* @__PURE__ */React.createElement(SVGIcon, _objectSpread2(_objectSpread2({}, props), {}, {
|
|
8
|
+
paths: paths
|
|
9
|
+
}));
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
export { CheckBoxBlank 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 = ["M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-3 10H8c-.55 0-1-.45-1-1s.45-1 1-1h8c.55 0 1 .45 1 1s-.45 1-1 1z"];
|
|
6
|
+
function CheckBoxIndeterminate(props) {
|
|
7
|
+
return /* @__PURE__ */React.createElement(SVGIcon, _objectSpread2(_objectSpread2({}, props), {}, {
|
|
8
|
+
paths: paths
|
|
9
|
+
}));
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
export { CheckBoxIndeterminate as default };
|
package/dist/esm/index.js
CHANGED
|
@@ -61,6 +61,9 @@ export { default as CarParked } from './components/CarParked.js';
|
|
|
61
61
|
export { default as Certificate } from './components/Certificate.js';
|
|
62
62
|
export { default as CertificateOutlined } from './components/CertificateOutlined.js';
|
|
63
63
|
export { default as CertificatesOutlined } from './components/CertificatesOutlined.js';
|
|
64
|
+
export { default as CheckBox } from './components/CheckBox.js';
|
|
65
|
+
export { default as CheckBoxBlank } from './components/CheckBoxBlank.js';
|
|
66
|
+
export { default as CheckBoxIndeterminate } from './components/CheckBoxIndeterminate.js';
|
|
64
67
|
export { default as CheckOutlined } from './components/CheckOutlined.js';
|
|
65
68
|
export { default as ChevronDownOutlined } from './components/ChevronDownOutlined.js';
|
|
66
69
|
export { default as ChevronLeftOutlined } from './components/ChevronLeftOutlined.js';
|