@generation/icons 1.1.0 → 1.1.1

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.0",
3
+ "version": "1.1.1",
4
4
  "description": "SVG bases React icon components",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
@@ -0,0 +1,18 @@
1
+ import * as React from "react";
2
+ const BriefcaseOutline = (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 fill="none" d="M0 0h24v24H0z" />
12
+ <path
13
+ fillRule="evenodd"
14
+ d="M14 6V4h-4v2zM4 8v11h16V8zm16-2c1.11 0 2 .89 2 2v11c0 1.11-.89 2-2 2H4c-1.11 0-2-.89-2-2l.01-11c0-1.11.88-2 1.99-2h4V4c0-1.11.89-2 2-2h4c1.11 0 2 .89 2 2v2z"
15
+ />
16
+ </svg>
17
+ );
18
+ export default BriefcaseOutline;
@@ -0,0 +1,16 @@
1
+ import * as React from "react";
2
+ const Photo = (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 fill="none" d="M0 0h24v24H0z" />
12
+ <circle cx={12} cy={12} r={3.2} />
13
+ <path d="M9 2 7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2h-3.17L15 2zm3 15c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5" />
14
+ </svg>
15
+ );
16
+ export default Photo;
@@ -0,0 +1,19 @@
1
+ import * as React from "react";
2
+ const PhotoOutline = (props) => (
3
+ <svg
4
+ xmlns="http://www.w3.org/2000/svg"
5
+ width="1em"
6
+ height="1em"
7
+ fill="none"
8
+ viewBox="0 0 20 20"
9
+ {...props}
10
+ >
11
+ <path
12
+ fill="currentColor"
13
+ fillRule="evenodd"
14
+ d="M13.904 4.5H16.4c.866 0 1.575.72 1.575 1.6v9.6c0 .88-.709 1.6-1.575 1.6H3.8c-.866 0-1.575-.72-1.575-1.6V6.1c0-.88.709-1.6 1.575-1.6h2.496l1.441-1.6h4.725zM3.8 15.7h12.6V6.1h-3.19l-1.44-1.6H8.43L6.99 6.1H3.8zm6.3-8.8c-2.174 0-3.938 1.792-3.938 4s1.764 4 3.938 4c2.173 0 3.937-1.792 3.937-4s-1.764-4-3.937-4m-2.363 4c0 1.32 1.063 2.4 2.363 2.4s2.362-1.08 2.362-2.4S11.4 8.5 10.1 8.5s-2.363 1.08-2.363 2.4"
15
+ clipRule="evenodd"
16
+ />
17
+ </svg>
18
+ );
19
+ export default PhotoOutline;
@@ -57,6 +57,7 @@ export { default as BookmarkFill } from './BookmarkFill';
57
57
  export { default as BookmarkFillOut } from './BookmarkFillOut';
58
58
  export { default as Bookmarks } from './Bookmarks';
59
59
  export { default as Briefcase } from './Briefcase';
60
+ export { default as BriefcaseOutline } from './BriefcaseOutline';
60
61
  export { default as BulletedList } from './BulletedList';
61
62
  export { default as Calendar } from './Calendar';
62
63
  export { default as Calendar2 } from './Calendar2';
@@ -253,6 +254,8 @@ export { default as PhoneFill } from './PhoneFill';
253
254
  export { default as PhoneFillOut } from './PhoneFillOut';
254
255
  export { default as PhoneRoundFill } from './PhoneRoundFill';
255
256
  export { default as PhoneRoundFillOut } from './PhoneRoundFillOut';
257
+ export { default as Photo } from './Photo';
258
+ export { default as PhotoOutline } from './PhotoOutline';
256
259
  export { default as PinFill } from './PinFill';
257
260
  export { default as PinFillOut } from './PinFillOut';
258
261
  export { default as Placeholder } from './Placeholder';