Skip to content

Commit

Permalink
feat: icons for file and file-text
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeldking committed Mar 29, 2024
1 parent 4b9a333 commit 979177b
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions src/icon/Icons.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1122,6 +1122,19 @@ export const FileOutline = () => (
</svg>
);

export const FileTextOutline = () => (
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<g data-name="Layer 2">
<g data-name="file-text">
<rect width="24" height="24" opacity="0" />
<path d="M15 16H9a1 1 0 0 0 0 2h6a1 1 0 0 0 0-2z" />
<path d="M9 14h3a1 1 0 0 0 0-2H9a1 1 0 0 0 0 2z" />
<path d="M19.74 8.33l-5.44-6a1 1 0 0 0-.74-.33h-7A2.53 2.53 0 0 0 4 4.5v15A2.53 2.53 0 0 0 6.56 22h10.88A2.53 2.53 0 0 0 20 19.5V9a1 1 0 0 0-.26-.67zM14 5l2.74 3h-2a.79.79 0 0 1-.74-.85zm3.44 15H6.56a.53.53 0 0 1-.56-.5v-15a.53.53 0 0 1 .56-.5H12v3.15A2.79 2.79 0 0 0 14.71 10H18v9.5a.53.53 0 0 1-.56.5z" />
</g>
</g>
</svg>
);

export const FireOutline = () => (
<svg
width="24"
Expand Down Expand Up @@ -1712,6 +1725,18 @@ export const SunOutline = () => (
);

//T

export const TextOutline = () => (
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<g data-name="Layer 2">
<g data-name="text">
<rect width="24" height="24" opacity="0" />
<path d="M20 4H4a1 1 0 0 0-1 1v3a1 1 0 0 0 2 0V6h6v13H9a1 1 0 0 0 0 2h6a1 1 0 0 0 0-2h-2V6h6v2a1 1 0 0 0 2 0V5a1 1 0 0 0-1-1z" />
</g>
</g>
</svg>
);

export const TokensOutline = () => (
<svg
width="16"
Expand Down

0 comments on commit 979177b

Please sign in to comment.