@mezzanine-ui/icons 1.0.0-beta.2 → 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 };
package/index.d.ts CHANGED
@@ -127,6 +127,7 @@ export { BookmarkAddedIcon } from './content/bookmark-added';
127
127
  export { ImageIcon } from './content/image';
128
128
  export { BoxIcon } from './content/box';
129
129
  export { CodeIcon } from './content/code';
130
+ export { MailIcon } from './content/mail';
130
131
  /**
131
132
  * Stepper Icons
132
133
  */
package/index.js CHANGED
@@ -111,6 +111,7 @@ export { BookmarkAddedIcon } from './content/bookmark-added.js';
111
111
  export { ImageIcon } from './content/image.js';
112
112
  export { BoxIcon } from './content/box.js';
113
113
  export { CodeIcon } from './content/code.js';
114
+ export { MailIcon } from './content/mail.js';
114
115
  export { Item0Icon } from './stepper/item-0.js';
115
116
  export { Item1Icon } from './stepper/item-1.js';
116
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.2",
3
+ "version": "1.0.0-beta.3",
4
4
  "description": "Icons for mezzanine-ui",
5
5
  "author": "Mezzanine",
6
6
  "repository": {