@mezzanine-ui/icons 0.5.0 → 0.10.2

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 ArrowDownIcon: IconDefinition;
package/arrow-down.js ADDED
@@ -0,0 +1,17 @@
1
+ const ArrowDownIcon = {
2
+ name: 'arrow-down',
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: 'M16.137 12.739L17.197 13.799L11.999 18.997L6.80102 13.799L7.86102 12.739L11.247 16.1242V4.999H12.747V16.129L16.137 12.739Z',
13
+ },
14
+ },
15
+ };
16
+
17
+ export { ArrowDownIcon };
package/arrow-up.d.ts ADDED
@@ -0,0 +1,2 @@
1
+ import { IconDefinition } from './typings';
2
+ export declare const ArrowUpIcon: IconDefinition;
package/arrow-up.js ADDED
@@ -0,0 +1,17 @@
1
+ const ArrowUpIcon = {
2
+ name: 'arrow-up',
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: 'M16.137 11.257L17.197 10.197L11.999 4.999L6.80102 10.197L7.86102 11.257L11.247 7.87182V18.997H12.747V7.867L16.137 11.257Z',
13
+ },
14
+ },
15
+ };
16
+
17
+ export { ArrowUpIcon };
package/index.d.ts CHANGED
@@ -2,7 +2,9 @@ export type { IconDefinition } from './typings';
2
2
  /**
3
3
  * icons
4
4
  */
5
+ export { ArrowDownIcon } from './arrow-down';
5
6
  export { ArrowRightIcon } from './arrow-right';
7
+ export { ArrowUpIcon } from './arrow-up';
6
8
  export { CalendarIcon } from './calendar';
7
9
  export { CaretRightIcon } from './caret-right';
8
10
  export { CheckCircleFilledIcon } from './check-circle-filled';
@@ -29,4 +31,5 @@ export { SearchIcon } from './search';
29
31
  export { SpinnerIcon } from './spinner';
30
32
  export { TimesCircleFilledIcon } from './times-circle-filled';
31
33
  export { TimesIcon } from './times';
34
+ export { TrashIcon } from './trash';
32
35
  export { UploadIcon } from './upload';
package/index.js CHANGED
@@ -1,4 +1,6 @@
1
+ export { ArrowDownIcon } from './arrow-down.js';
1
2
  export { ArrowRightIcon } from './arrow-right.js';
3
+ export { ArrowUpIcon } from './arrow-up.js';
2
4
  export { CalendarIcon } from './calendar.js';
3
5
  export { CaretRightIcon } from './caret-right.js';
4
6
  export { CheckCircleFilledIcon } from './check-circle-filled.js';
@@ -25,4 +27,5 @@ export { SearchIcon } from './search.js';
25
27
  export { SpinnerIcon } from './spinner.js';
26
28
  export { TimesCircleFilledIcon } from './times-circle-filled.js';
27
29
  export { TimesIcon } from './times.js';
30
+ export { TrashIcon } from './trash.js';
28
31
  export { UploadIcon } from './upload.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mezzanine-ui/icons",
3
- "version": "0.5.0",
3
+ "version": "0.10.2",
4
4
  "description": "Icons for mezzanine-ui",
5
5
  "author": "Mezzanine",
6
6
  "repository": {
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 };
package/typings.d.ts CHANGED
@@ -4,6 +4,7 @@ export interface IconDefinition {
4
4
  svg?: {
5
5
  viewBox?: string;
6
6
  };
7
+ title?: string;
7
8
  path?: {
8
9
  d?: string;
9
10
  fill?: string;