Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions packages/pkg.icons/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ export const icons = [
'FAQ',
'Figures',
'File',
'FilePlus',
'FileSmall',
'Filter',
'Flag',
Expand Down
11 changes: 11 additions & 0 deletions packages/pkg.icons/icons/FilePlus.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import React from 'react';
import { Svg, IconProps } from '../Svg';

export const FilePlus = ({ ...props }: IconProps) => (
<Svg {...props}>
<path
d="M6.8 2h8.4c1.432 0 2.27.002 2.9.288a4 4 0 0 1 1.748 1.748c.286.63.288 1.468.288 2.9v3.2a1 1 0 1 1-2 0V6.8c0-1.298-.002-1.928-.204-2.382a2 2 0 0 0-.874-.874C16.612 3.335 15.982 3.333 14.686 3.333H8.8c-1.296 0-1.926.002-2.38.204a2 2 0 0 0-.874.874C5.335 4.872 5.333 5.502 5.333 6.8v10.4c0 1.296.002 1.926.204 2.38a2 2 0 0 0 .874.874c.454.202 1.084.204 2.38.204H12a1 1 0 1 1 0 2H8.8c-1.432 0-2.27-.002-2.9-.288a4 4 0 0 1-1.748-1.748C3.866 20.012 3.864 19.174 3.864 17.74V6.8c0-1.432.002-2.27.288-2.9A4 4 0 0 1 5.9 2.152C6.53 1.866 7.368 1.864 8.8 1.864h-.002ZM8 6a1 1 0 0 1 1-1h7a1 1 0 1 1 0 2H9a1 1 0 0 1-1-1Zm0 4a1 1 0 0 1 1-1h5a1 1 0 1 1 0 2H9a1 1 0 0 1-1-1Zm0 4a1 1 0 0 1 1-1h1a1 1 0 1 1 0 2H9a1 1 0 0 1-1-1Zm10-1a1 1 0 0 1 1 1v2h2a1 1 0 1 1 0 2h-2v2a1 1 0 1 1-2 0v-2h-2a1 1 0 1 1 0-2h2v-2a1 1 0 0 1 1-1Z"
fillRule="evenodd"
/>
</Svg>
);
2 changes: 2 additions & 0 deletions packages/pkg.icons/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ import { Eyeon } from './icons/Eyeon';
import { FAQ } from './icons/FAQ';
import { Figures } from './icons/Figures';
import { File } from './icons/File';
import { FilePlus } from './icons/FilePlus';
import { FileSmall } from './icons/FileSmall';
import { Filter } from './icons/Filter';
import { Flag } from './icons/Flag';
Expand Down Expand Up @@ -240,6 +241,7 @@ export {
FAQ,
Figures,
File,
FilePlus,
FileSmall,
Filter,
Flag,
Expand Down
2 changes: 1 addition & 1 deletion packages/pkg.icons/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@xipkg/icons",
"version": "3.0.21",
"version": "3.0.22",
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
Expand Down
Loading