@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.
- package/content/index.d.ts +1 -0
- package/content/index.js +1 -0
- package/content/mail.d.ts +2 -0
- package/content/mail.js +15 -0
- package/index.d.ts +1 -0
- package/index.js +1 -0
- package/package.json +1 -1
package/content/index.d.ts
CHANGED
package/content/index.js
CHANGED
package/content/mail.js
ADDED
|
@@ -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';
|