@mezzanine-ui/icons 1.0.0-beta.1 → 1.0.0-beta.3

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.
@@ -22,3 +22,4 @@ export { BookmarkAddedIcon } from './bookmark-added';
22
22
  export { ImageIcon } from './image';
23
23
  export { BoxIcon } from './box';
24
24
  export { CodeIcon } from './code';
25
+ export { MailIcon } from './mail';
package/content/index.js CHANGED
@@ -22,3 +22,4 @@ export { BookmarkAddedIcon } from './bookmark-added.js';
22
22
  export { ImageIcon } from './image.js';
23
23
  export { BoxIcon } from './box.js';
24
24
  export { CodeIcon } from './code.js';
25
+ export { MailIcon } from './mail.js';
@@ -0,0 +1,2 @@
1
+ import { IconDefinition } from '../typings';
2
+ export declare const MailIcon: IconDefinition;
@@ -0,0 +1,15 @@
1
+ const MailIcon = {
2
+ name: 'mail',
3
+ definition: {
4
+ svg: {
5
+ viewBox: '0 0 16 16',
6
+ fill: 'none',
7
+ },
8
+ path: {
9
+ fill: 'currentColor',
10
+ d: 'M12.5 3C13.3284 3 14 3.67157 14 4.5V11.5C14 12.3284 13.3284 13 12.5 13H3.5C2.67157 13 2 12.3284 2 11.5V4.5C2 3.67157 2.67157 3 3.5 3H12.5ZM8.23728 8.58008L7.91211 8.85744L7.58691 8.58008L3 4.65918V12H13V4.50879L8.23728 8.58008ZM7.91211 7.54199L12.0557 4H3.76855L7.91211 7.54199Z',
11
+ },
12
+ },
13
+ };
14
+
15
+ export { MailIcon };
@@ -18,6 +18,7 @@ export { DotDragHorizontalIcon } from './dot-drag-horizontal';
18
18
  export { ZoomInIcon } from './zoom-in';
19
19
  export { ZoomOutIcon } from './zoom-out';
20
20
  export { PinIcon } from './pin';
21
+ export { PinFilledIcon } from './pin-filled';
21
22
  export { MaximizeIcon } from './maximize';
22
23
  export { MinimizeIcon } from './minimize';
23
24
  export { ResizeHandleIcon } from './resize-handle';
package/controls/index.js CHANGED
@@ -18,6 +18,7 @@ export { DotDragHorizontalIcon } from './dot-drag-horizontal.js';
18
18
  export { ZoomInIcon } from './zoom-in.js';
19
19
  export { ZoomOutIcon } from './zoom-out.js';
20
20
  export { PinIcon } from './pin.js';
21
+ export { PinFilledIcon } from './pin-filled.js';
21
22
  export { MaximizeIcon } from './maximize.js';
22
23
  export { MinimizeIcon } from './minimize.js';
23
24
  export { ResizeHandleIcon } from './resize-handle.js';
@@ -0,0 +1,2 @@
1
+ import { IconDefinition } from '../typings';
2
+ export declare const PinFilledIcon: IconDefinition;
@@ -0,0 +1,15 @@
1
+ const PinFilledIcon = {
2
+ name: 'pin-filled',
3
+ definition: {
4
+ svg: {
5
+ viewBox: '0 0 16 16',
6
+ fill: 'none',
7
+ },
8
+ path: {
9
+ fill: 'currentColor',
10
+ d: 'M13.7141 5.04192C14.4179 5.74574 14.2536 6.9273 13.3845 7.41239L11.4168 8.51059L10.8766 11.4083C10.6554 12.5948 9.19481 13.0475 8.34137 12.1941L6.53544 10.3882L3.95906 12.9645L3.25195 12.2574L5.82834 9.68105L4.02276 7.87547C3.16939 7.0221 3.62193 5.5616 4.80832 5.34026L7.7059 4.79966L8.8041 2.832C9.28919 1.96286 10.4708 1.79856 11.1746 2.50237L13.7141 5.04192Z',
11
+ },
12
+ },
13
+ };
14
+
15
+ export { PinFilledIcon };
package/index.d.ts CHANGED
@@ -79,6 +79,7 @@ export { DotDragHorizontalIcon } from './controls/dot-drag-horizontal';
79
79
  export { ZoomInIcon } from './controls/zoom-in';
80
80
  export { ZoomOutIcon } from './controls/zoom-out';
81
81
  export { PinIcon } from './controls/pin';
82
+ export { PinFilledIcon } from './controls/pin-filled';
82
83
  export { MaximizeIcon } from './controls/maximize';
83
84
  export { MinimizeIcon } from './controls/minimize';
84
85
  export { ResizeHandleIcon } from './controls/resize-handle';
@@ -126,6 +127,7 @@ export { BookmarkAddedIcon } from './content/bookmark-added';
126
127
  export { ImageIcon } from './content/image';
127
128
  export { BoxIcon } from './content/box';
128
129
  export { CodeIcon } from './content/code';
130
+ export { MailIcon } from './content/mail';
129
131
  /**
130
132
  * Stepper Icons
131
133
  */
package/index.js CHANGED
@@ -69,6 +69,7 @@ export { DotDragHorizontalIcon } from './controls/dot-drag-horizontal.js';
69
69
  export { ZoomInIcon } from './controls/zoom-in.js';
70
70
  export { ZoomOutIcon } from './controls/zoom-out.js';
71
71
  export { PinIcon } from './controls/pin.js';
72
+ export { PinFilledIcon } from './controls/pin-filled.js';
72
73
  export { MaximizeIcon } from './controls/maximize.js';
73
74
  export { MinimizeIcon } from './controls/minimize.js';
74
75
  export { ResizeHandleIcon } from './controls/resize-handle.js';
@@ -110,6 +111,7 @@ export { BookmarkAddedIcon } from './content/bookmark-added.js';
110
111
  export { ImageIcon } from './content/image.js';
111
112
  export { BoxIcon } from './content/box.js';
112
113
  export { CodeIcon } from './content/code.js';
114
+ export { MailIcon } from './content/mail.js';
113
115
  export { Item0Icon } from './stepper/item-0.js';
114
116
  export { Item1Icon } from './stepper/item-1.js';
115
117
  export { Item2Icon } from './stepper/item-2.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mezzanine-ui/icons",
3
- "version": "1.0.0-beta.1",
3
+ "version": "1.0.0-beta.3",
4
4
  "description": "Icons for mezzanine-ui",
5
5
  "author": "Mezzanine",
6
6
  "repository": {