Skip to content

Commit

Permalink
feat(icons): Add folder filled icon (#219)
Browse files Browse the repository at this point in the history
* feat(icons): folder filled

* v1.3.7
  • Loading branch information
JackyxCS committed Jun 17, 2024
1 parent 2bd514c commit dc346ca
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.3.6",
"version": "1.3.7",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
Expand Down
11 changes: 11 additions & 0 deletions src/icon/Icons.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1183,6 +1183,17 @@ export const FireOutline = () => (
</svg>
);

export const FolderFilled = () => (
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<g data-name="Layer 2">
<g data-name="folder">
<rect width="24" height="24" opacity="0" />
<path d="M19.5 20.5h-15A2.47 2.47 0 0 1 2 18.07V5.93A2.47 2.47 0 0 1 4.5 3.5h4.6a1 1 0 0 1 .77.37l2.6 3.18h7A2.47 2.47 0 0 1 22 9.48v8.59a2.47 2.47 0 0 1-2.5 2.43z" />
</g>
</g>
</svg>
);

export const FolderOutline = () => (
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<g data-name="Layer 2">
Expand Down

0 comments on commit dc346ca

Please sign in to comment.