@mezzanine-ui/icons 0.3.2 → 0.7.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/index.d.ts CHANGED
@@ -22,10 +22,12 @@ export { InfoCircleFilledIcon } from './info-circle-filled';
22
22
  export { MinusCircleFilledIcon } from './minus-circle-filled';
23
23
  export { MoreHorizontalIcon } from './more-horizontal';
24
24
  export { MoreVerticalIcon } from './more-vertical';
25
+ export { PercentIcon } from './percent';
25
26
  export { PlusIcon } from './plus';
26
27
  export { ResetIcon } from './reset';
27
28
  export { SearchIcon } from './search';
28
29
  export { SpinnerIcon } from './spinner';
29
30
  export { TimesCircleFilledIcon } from './times-circle-filled';
30
31
  export { TimesIcon } from './times';
32
+ export { TrashIcon } from './trash';
31
33
  export { UploadIcon } from './upload';
package/index.js CHANGED
@@ -18,10 +18,12 @@ export { InfoCircleFilledIcon } from './info-circle-filled.js';
18
18
  export { MinusCircleFilledIcon } from './minus-circle-filled.js';
19
19
  export { MoreHorizontalIcon } from './more-horizontal.js';
20
20
  export { MoreVerticalIcon } from './more-vertical.js';
21
+ export { PercentIcon } from './percent.js';
21
22
  export { PlusIcon } from './plus.js';
22
23
  export { ResetIcon } from './reset.js';
23
24
  export { SearchIcon } from './search.js';
24
25
  export { SpinnerIcon } from './spinner.js';
25
26
  export { TimesCircleFilledIcon } from './times-circle-filled.js';
26
27
  export { TimesIcon } from './times.js';
28
+ export { TrashIcon } from './trash.js';
27
29
  export { UploadIcon } from './upload.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mezzanine-ui/icons",
3
- "version": "0.3.2",
3
+ "version": "0.7.3",
4
4
  "description": "Icons for mezzanine-ui",
5
5
  "author": "Mezzanine",
6
6
  "repository": {
package/percent.d.ts ADDED
@@ -0,0 +1,2 @@
1
+ import { IconDefinition } from './typings';
2
+ export declare const PercentIcon: IconDefinition;
package/percent.js ADDED
@@ -0,0 +1,15 @@
1
+ const PercentIcon = {
2
+ name: 'percent',
3
+ definition: {
4
+ svg: {
5
+ viewBox: '0 0 24 24',
6
+ },
7
+ path: {
8
+ fill: 'currentColor',
9
+ fillRule: 'evenodd',
10
+ d: 'M16.0257 5.73008L8.26993 19.0257L6.97426 18.2699L14.7301 4.97427L16.0257 5.73008ZM8.5 8.5C9.05228 8.5 9.5 8.05228 9.5 7.5C9.5 6.94772 9.05228 6.5 8.5 6.5C7.94772 6.5 7.5 6.94772 7.5 7.5C7.5 8.05228 7.94772 8.5 8.5 8.5ZM8.5 10C9.88071 10 11 8.88071 11 7.5C11 6.11929 9.88071 5 8.5 5C7.11929 5 6 6.11929 6 7.5C6 8.88071 7.11929 10 8.5 10ZM15.5 16.5C15.5 17.0523 15.0523 17.5 14.5 17.5C13.9477 17.5 13.5 17.0523 13.5 16.5C13.5 15.9477 13.9477 15.5 14.5 15.5C15.0523 15.5 15.5 15.9477 15.5 16.5ZM17 16.5C17 17.8807 15.8807 19 14.5 19C13.1193 19 12 17.8807 12 16.5C12 15.1193 13.1193 14 14.5 14C15.8807 14 17 15.1193 17 16.5Z',
11
+ },
12
+ },
13
+ };
14
+
15
+ export { PercentIcon };
package/trash.d.ts ADDED
@@ -0,0 +1,2 @@
1
+ import { IconDefinition } from './typings';
2
+ export declare const TrashIcon: IconDefinition;
package/trash.js ADDED
@@ -0,0 +1,17 @@
1
+ const TrashIcon = {
2
+ name: 'trash',
3
+ definition: {
4
+ svg: {
5
+ viewBox: '0 0 24 24',
6
+ },
7
+ path: {
8
+ fill: 'currentColor',
9
+ fillRule: 'evenodd',
10
+ stroke: 'none',
11
+ strokeWidth: 1,
12
+ d: 'M14 5.5H10V4H14V5.5ZM5 7.9999V6.4999H19V7.9999H17.66L17.001 18.9999H7L6.34 7.9999H5ZM16.157 7.9999H7.842L8.412 17.4999H15.587L16.157 7.9999ZM11.0729 16.0007L10.6829 9.5007H9.4429L9.8329 16.0007H11.0729ZM13.3178 9.5007H14.5568L14.1668 16.0007H12.9268L13.3178 9.5007Z',
13
+ },
14
+ },
15
+ };
16
+
17
+ export { TrashIcon };