@mezzanine-ui/icons 0.7.3 → 0.9.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.
- package/arrow-down.d.ts +2 -0
- package/arrow-down.js +17 -0
- package/arrow-up.d.ts +2 -0
- package/arrow-up.js +17 -0
- package/index.d.ts +2 -0
- package/index.js +2 -0
- package/package.json +1 -1
package/arrow-down.d.ts
ADDED
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
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';
|
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';
|