@generation/icons 1.1.1 → 1.1.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@generation/icons",
3
- "version": "1.1.1",
3
+ "version": "1.1.3",
4
4
  "description": "SVG bases React icon components",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
@@ -60,6 +60,7 @@ import {
60
60
  BookmarkFillOut,
61
61
  Bookmarks,
62
62
  Briefcase,
63
+ BriefcaseOutline,
63
64
  BulletedList,
64
65
  Calendar,
65
66
  Calendar2,
@@ -220,8 +221,10 @@ import {
220
221
  LogoGeneration,
221
222
  LogoGoogle,
222
223
  Low,
224
+ MagicWand,
223
225
  MailFill,
224
226
  MailFillOut,
227
+ Map,
225
228
  Medium,
226
229
  Menu,
227
230
  MessageLeftFill,
@@ -231,6 +234,7 @@ import {
231
234
  MoreVertical,
232
235
  Neutral,
233
236
  NewTab,
237
+ NotAvailable,
234
238
  NotFeelingGood,
235
239
  NotesFill,
236
240
  NotesFillOut,
@@ -255,6 +259,8 @@ import {
255
259
  PhoneFillOut,
256
260
  PhoneRoundFill,
257
261
  PhoneRoundFillOut,
262
+ Photo,
263
+ PhotoOutline,
258
264
  PinFill,
259
265
  PinFillOut,
260
266
  Placeholder,
@@ -722,6 +728,12 @@ const Gallery = () => (
722
728
  </div>
723
729
  <span>Briefcase</span>
724
730
  </div>
731
+ <div className="gallery-item">
732
+ <div className="gallery-svg">
733
+ <BriefcaseOutline />
734
+ </div>
735
+ <span>BriefcaseOutline</span>
736
+ </div>
725
737
  <div className="gallery-item">
726
738
  <div className="gallery-svg">
727
739
  <BulletedList />
@@ -1682,6 +1694,12 @@ const Gallery = () => (
1682
1694
  </div>
1683
1695
  <span>Low</span>
1684
1696
  </div>
1697
+ <div className="gallery-item">
1698
+ <div className="gallery-svg">
1699
+ <MagicWand />
1700
+ </div>
1701
+ <span>MagicWand</span>
1702
+ </div>
1685
1703
  <div className="gallery-item">
1686
1704
  <div className="gallery-svg">
1687
1705
  <MailFill />
@@ -1694,6 +1712,12 @@ const Gallery = () => (
1694
1712
  </div>
1695
1713
  <span>MailFillOut</span>
1696
1714
  </div>
1715
+ <div className="gallery-item">
1716
+ <div className="gallery-svg">
1717
+ <Map />
1718
+ </div>
1719
+ <span>Map</span>
1720
+ </div>
1697
1721
  <div className="gallery-item">
1698
1722
  <div className="gallery-svg">
1699
1723
  <Medium />
@@ -1748,6 +1772,12 @@ const Gallery = () => (
1748
1772
  </div>
1749
1773
  <span>NewTab</span>
1750
1774
  </div>
1775
+ <div className="gallery-item">
1776
+ <div className="gallery-svg">
1777
+ <NotAvailable />
1778
+ </div>
1779
+ <span>NotAvailable</span>
1780
+ </div>
1751
1781
  <div className="gallery-item">
1752
1782
  <div className="gallery-svg">
1753
1783
  <NotFeelingGood />
@@ -1892,6 +1922,18 @@ const Gallery = () => (
1892
1922
  </div>
1893
1923
  <span>PhoneRoundFillOut</span>
1894
1924
  </div>
1925
+ <div className="gallery-item">
1926
+ <div className="gallery-svg">
1927
+ <Photo />
1928
+ </div>
1929
+ <span>Photo</span>
1930
+ </div>
1931
+ <div className="gallery-item">
1932
+ <div className="gallery-svg">
1933
+ <PhotoOutline />
1934
+ </div>
1935
+ <span>PhotoOutline</span>
1936
+ </div>
1895
1937
  <div className="gallery-item">
1896
1938
  <div className="gallery-svg">
1897
1939
  <PinFill />
@@ -0,0 +1,14 @@
1
+ import * as React from "react";
2
+ const MagicWand = (props) => (
3
+ <svg
4
+ xmlns="http://www.w3.org/2000/svg"
5
+ width="1em"
6
+ height="1em"
7
+ fill="currentColor"
8
+ viewBox="0 0 24 24"
9
+ {...props}
10
+ >
11
+ <path d="m22 2-2.5 1.4L17 2l1.4 2.5L17 7l2.5-1.4L22 7l-1.4-2.5zm-7.63 5.29a.996.996 0 0 0-1.41 0L1.29 18.96a.996.996 0 0 0 0 1.41l2.34 2.34c.39.39 1.02.39 1.41 0L16.7 11.05a.996.996 0 0 0 0-1.41zm-1.03 5.49-2.12-2.12 2.44-2.44 2.12 2.12z" />
12
+ </svg>
13
+ );
14
+ export default MagicWand;
@@ -0,0 +1,23 @@
1
+ import * as React from "react";
2
+ const NotAvailable = (props) => (
3
+ <svg
4
+ xmlns="http://www.w3.org/2000/svg"
5
+ xmlSpace="preserve"
6
+ viewBox="0 0 24 24"
7
+ width="1em"
8
+ height="1em"
9
+ {...props}
10
+ >
11
+ <path
12
+ d="M0 0h24v24H0z"
13
+ style={{
14
+ fill: "none",
15
+ }}
16
+ />
17
+ <path
18
+ fill="currentColor"
19
+ d="M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2m5 11H7v-2h10z"
20
+ />
21
+ </svg>
22
+ );
23
+ export default NotAvailable;
@@ -218,6 +218,7 @@ export { default as LogOut } from './LogOut';
218
218
  export { default as LogoGeneration } from './LogoGeneration';
219
219
  export { default as LogoGoogle } from './LogoGoogle';
220
220
  export { default as Low } from './Low';
221
+ export { default as MagicWand } from './MagicWand';
221
222
  export { default as MailFill } from './MailFill';
222
223
  export { default as MailFillOut } from './MailFillOut';
223
224
  export { default as Map } from './Map';
@@ -230,6 +231,7 @@ export { default as MoreHorizontal } from './MoreHorizontal';
230
231
  export { default as MoreVertical } from './MoreVertical';
231
232
  export { default as Neutral } from './Neutral';
232
233
  export { default as NewTab } from './NewTab';
234
+ export { default as NotAvailable } from './NotAvailable';
233
235
  export { default as NotFeelingGood } from './NotFeelingGood';
234
236
  export { default as NotesFill } from './NotesFill';
235
237
  export { default as NotesFillOut } from './NotesFillOut';