@mezzanine-ui/icons 1.0.0-canary.2 → 1.0.0-canary.9

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.
@@ -0,0 +1,2 @@
1
+ import { IconDefinition } from '../typings';
2
+ export declare const BoxIcon: IconDefinition;
package/content/box.js ADDED
@@ -0,0 +1,15 @@
1
+ const BoxIcon = {
2
+ name: 'box',
3
+ definition: {
4
+ svg: {
5
+ viewBox: '0 0 16 16',
6
+ fill: 'none',
7
+ },
8
+ path: {
9
+ d: 'M12.3691 3C12.9947 3 13.5546 3.3882 13.7739 3.97404L14.6742 6.37849C14.968 7.16325 14.3878 8 13.5498 8V11.5C13.5498 12.3284 12.8783 13 12.0498 13H3.94925C3.12082 13 2.44925 12.3284 2.44925 11.5V8C1.61175 8 1.03189 7.16372 1.32555 6.3794L2.22616 3.97404C2.4455 3.3882 3.00537 3 3.63092 3H12.3691ZM7.9512 12H12.5498V8H9.7533C9.1276 8 8.56762 7.61161 8.34839 7.02558L7.9512 5.96387V12ZM6.55118 7.0258C6.33188 7.61172 5.77197 8 5.14635 8H3.44925V12H6.9512V5.95703L6.55118 7.0258ZM9.40726 7H13.8389L12.7158 4H8.28323L9.40726 7ZM2.16019 7H5.49222L6.61624 4H3.28519L2.16019 7Z',
10
+ fill: 'currentColor',
11
+ },
12
+ },
13
+ };
14
+
15
+ export { BoxIcon };
@@ -20,4 +20,5 @@ export { BookmarkAddIcon } from './bookmark-add';
20
20
  export { BookmarkRemoveIcon } from './bookmark-remove';
21
21
  export { BookmarkAddedIcon } from './bookmark-added';
22
22
  export { ImageIcon } from './image';
23
+ export { BoxIcon } from './box';
23
24
  export { CodeIcon } from './code';
package/content/index.js CHANGED
@@ -20,4 +20,5 @@ export { BookmarkAddIcon } from './bookmark-add.js';
20
20
  export { BookmarkRemoveIcon } from './bookmark-remove.js';
21
21
  export { BookmarkAddedIcon } from './bookmark-added.js';
22
22
  export { ImageIcon } from './image.js';
23
+ export { BoxIcon } from './box.js';
23
24
  export { CodeIcon } from './code.js';
package/index.d.ts CHANGED
@@ -27,6 +27,7 @@ export { HomeIcon } from './system/home';
27
27
  export { SpinnerIcon } from './system/spinner';
28
28
  export { LoginIcon } from './system/login';
29
29
  export { LogoutIcon } from './system/logout';
30
+ export { SystemIcon } from './system/system';
30
31
  /**
31
32
  * Arrow Icons
32
33
  */
@@ -123,6 +124,7 @@ export { BookmarkAddIcon } from './content/bookmark-add';
123
124
  export { BookmarkRemoveIcon } from './content/bookmark-remove';
124
125
  export { BookmarkAddedIcon } from './content/bookmark-added';
125
126
  export { ImageIcon } from './content/image';
127
+ export { BoxIcon } from './content/box';
126
128
  export { CodeIcon } from './content/code';
127
129
  /**
128
130
  * Stepper Icons
package/index.js CHANGED
@@ -23,6 +23,7 @@ export { HomeIcon } from './system/home.js';
23
23
  export { SpinnerIcon } from './system/spinner.js';
24
24
  export { LoginIcon } from './system/login.js';
25
25
  export { LogoutIcon } from './system/logout.js';
26
+ export { SystemIcon } from './system/system.js';
26
27
  export { LongTailArrowRightIcon } from './arrow/long-tail-arrow-right.js';
27
28
  export { LongTailArrowLeftIcon } from './arrow/long-tail-arrow-left.js';
28
29
  export { LongTailArrowUpIcon } from './arrow/long-tail-arrow-up.js';
@@ -107,6 +108,7 @@ export { BookmarkAddIcon } from './content/bookmark-add.js';
107
108
  export { BookmarkRemoveIcon } from './content/bookmark-remove.js';
108
109
  export { BookmarkAddedIcon } from './content/bookmark-added.js';
109
110
  export { ImageIcon } from './content/image.js';
111
+ export { BoxIcon } from './content/box.js';
110
112
  export { CodeIcon } from './content/code.js';
111
113
  export { Item0Icon } from './stepper/item-0.js';
112
114
  export { Item1Icon } from './stepper/item-1.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mezzanine-ui/icons",
3
- "version": "1.0.0-canary.2",
3
+ "version": "1.0.0-canary.9",
4
4
  "description": "Icons for mezzanine-ui",
5
5
  "author": "Mezzanine",
6
6
  "repository": {
@@ -19,5 +19,6 @@
19
19
  "scripts": {
20
20
  "build": "node ../../scripts/build.js",
21
21
  "build:clean": "node ../../scripts/cleanBuild.js"
22
- }
22
+ },
23
+ "gitHead": "3996d5d60e74c9d1137e7ebfca4bffa17314529a"
23
24
  }
package/system/index.d.ts CHANGED
@@ -23,3 +23,4 @@ export { HomeIcon } from './home';
23
23
  export { SpinnerIcon } from './spinner';
24
24
  export { LoginIcon } from './login';
25
25
  export { LogoutIcon } from './logout';
26
+ export { SystemIcon } from './system';
package/system/index.js CHANGED
@@ -23,3 +23,4 @@ export { HomeIcon } from './home.js';
23
23
  export { SpinnerIcon } from './spinner.js';
24
24
  export { LoginIcon } from './login.js';
25
25
  export { LogoutIcon } from './logout.js';
26
+ export { SystemIcon } from './system.js';
@@ -0,0 +1,2 @@
1
+ import { IconDefinition } from '../typings';
2
+ export declare const SystemIcon: IconDefinition;
@@ -0,0 +1,15 @@
1
+ const SystemIcon = {
2
+ name: 'system',
3
+ definition: {
4
+ svg: {
5
+ viewBox: '0 0 16 16',
6
+ fill: 'none',
7
+ },
8
+ path: {
9
+ d: 'M9.86914 3.32227C10.3326 3.50735 10.7618 3.75951 11.1455 4.06641L11.4452 3.97546C12.0234 3.79996 12.6464 4.04609 12.9486 4.56945L13.4717 5.47552C13.7925 6.0312 13.6599 6.73785 13.1594 7.13942L12.9863 7.27832C13.0202 7.51393 13.039 7.75504 13.0391 8C13.039 8.25761 13.0188 8.5106 12.9814 8.75781L13.2086 8.9705C13.6498 9.38353 13.7481 10.0461 13.446 10.5695L12.9225 11.4761C12.6019 12.0315 11.924 12.2701 11.3262 12.038L11.1152 11.9561C10.7298 12.2597 10.2994 12.5078 9.83496 12.6895L9.76406 12.9944C9.62716 13.5832 9.10239 14 8.49783 14H7.45133C6.81007 14 6.2646 13.5324 6.1666 12.8987L6.13183 12.6738C5.66963 12.4886 5.24105 12.2382 4.85839 11.9316L4.55746 12.0233C3.9789 12.1995 3.35526 11.9534 3.05288 11.4297L2.52946 10.523C2.20901 9.96799 2.34091 9.2622 2.84021 8.86034L3.01855 8.7168C2.98516 8.48265 2.96779 8.24336 2.96777 8C2.9678 7.7436 2.98644 7.49121 3.02343 7.24512L2.79319 7.0295C2.35211 6.61646 2.2538 5.95395 2.55593 5.43062L3.07955 4.52366C3.40016 3.96833 4.0778 3.72973 4.67562 3.96166L4.88769 4.04395C5.27232 3.74062 5.7026 3.49326 6.16601 3.31152L6.23747 3.00493C6.37463 2.41641 6.89924 2 7.50354 2H8.5503C9.1917 2 9.73724 2.46779 9.83509 3.10168L9.86914 3.32227ZM7.0205 4.05078L6.53125 4.24219C6.15913 4.38812 5.81426 4.58665 5.50683 4.8291L5.05859 5.18262L4.52636 4.97656L4.07421 4.80078L3.30273 6.13672L3.70703 6.51562L4.09082 6.87402L4.01269 7.39355C3.98329 7.58908 3.9678 7.79198 3.96777 8L3.97851 8.29102C3.98534 8.38677 3.99543 8.48151 4.00878 8.5752L4.08886 9.13867L3.6455 9.49609L3.2666 9.7998L4.03808 11.1357L5.07226 10.8213L5.48339 11.1514C5.71252 11.3349 5.96303 11.4933 6.23046 11.624L6.5039 11.7461L7.0332 11.958L7.19433 13H8.73632L8.98046 11.9502L9.4707 11.7578C9.84225 11.6125 10.187 11.4143 10.4961 11.1709L10.9453 10.8174L11.9277 11.1982L12.6982 9.86328L12.2978 9.48828L11.9141 9.12793L11.9922 8.6084C12.0224 8.40812 12.039 8.20514 12.0391 8L12.0283 7.70996C12.0211 7.61339 12.0099 7.51704 11.9961 7.4209L11.915 6.85547L12.3603 6.49805L12.7334 6.19727L11.9629 4.8623L11.4355 5.02344L10.9316 5.17578L10.5205 4.84766C10.2122 4.60107 9.86835 4.39885 9.49804 4.25098L8.96777 4.03906L8.80761 3H7.26464L7.0205 4.05078ZM8.00292 5.28613C9.50153 5.28645 10.7165 6.50147 10.7168 8L10.7031 8.27734C10.5733 9.55416 9.55811 10.5713 8.28027 10.7012L8.00292 10.7148C6.59735 10.7148 5.4409 9.64574 5.30175 8.27734L5.28808 8C5.2884 6.50082 6.50452 5.28613 8.00292 5.28613ZM8.00292 6.28613C7.05629 6.28613 6.28828 7.05345 6.28808 8C6.28831 8.94652 7.05631 9.71484 8.00292 9.71484C8.94937 9.71465 9.71657 8.9464 9.71679 8C9.71659 7.05358 8.94939 6.28633 8.00292 6.28613Z',
10
+ fill: 'currentColor',
11
+ },
12
+ },
13
+ };
14
+
15
+ export { SystemIcon };