@generation/icons 1.1.8 → 1.1.9

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.8",
3
+ "version": "1.1.9",
4
4
  "description": "SVG bases React icon components",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
@@ -10,7 +10,7 @@
10
10
  "preview": "vite preview"
11
11
  },
12
12
  "dependencies": {
13
- "@generation/icons": "^1.1.7",
13
+ "@generation/icons": "^1.1.9",
14
14
  "react": "^18.3.1",
15
15
  "react-dom": "^18.3.1"
16
16
  },
@@ -173,6 +173,7 @@ import {
173
173
  FolderDescriptionFill,
174
174
  FolderShared,
175
175
  FolderUser,
176
+ FolderUserFill,
176
177
  Forward,
177
178
  GraduationCapFill,
178
179
  GraduationCapFillOut,
@@ -545,6 +546,7 @@ const icons = {
545
546
  FolderDescriptionFill,
546
547
  FolderShared,
547
548
  FolderUser,
549
+ FolderUserFill,
548
550
  Forward,
549
551
  GraduationCapFill,
550
552
  GraduationCapFillOut,
@@ -0,0 +1,17 @@
1
+ import * as React from "react";
2
+ const FolderUserFill = (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 16"
9
+ {...props}
10
+ >
11
+ <path
12
+ fill="#000"
13
+ d="M18 2h-8L8 0H2C.9 0 .01.9.01 2L0 14c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2m-5 3c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m4 8H9v-1c0-1.33 2.67-2 4-2s4 .67 4 2z"
14
+ />
15
+ </svg>
16
+ );
17
+ export default FolderUserFill;
@@ -169,6 +169,7 @@ export { default as Flagged } from './Flagged';
169
169
  export { default as FolderDescriptionFill } from './FolderDescriptionFill';
170
170
  export { default as FolderShared } from './FolderShared';
171
171
  export { default as FolderUser } from './FolderUser';
172
+ export { default as FolderUserFill } from './FolderUserFill';
172
173
  export { default as Forward } from './Forward';
173
174
  export { default as GraduationCapFill } from './GraduationCapFill';
174
175
  export { default as GraduationCapFillOut } from './GraduationCapFillOut';