Skip to content

Commit

Permalink
feat: add save outline and fill icons
Browse files Browse the repository at this point in the history
  • Loading branch information
Parker-Stafford committed Nov 20, 2024
1 parent b0fb727 commit c46fa77
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions src/icon/Icons.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2205,3 +2205,30 @@ export const MessageSquareFilled = () => (
</g>
</svg>
);

export const SaveOutline = () => {
return (
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<g data-name="Layer 2">
<g data-name="save">
<rect width="24" height="24" opacity="0" />
<path d="M20.12 8.71l-4.83-4.83A3 3 0 0 0 13.17 3H6a3 3 0 0 0-3 3v12a3 3 0 0 0 3 3h12a3 3 0 0 0 3-3v-7.17a3 3 0 0 0-.88-2.12zM10 19v-2h4v2zm9-1a1 1 0 0 1-1 1h-2v-3a1 1 0 0 0-1-1H9a1 1 0 0 0-1 1v3H6a1 1 0 0 1-1-1V6a1 1 0 0 1 1-1h2v5a1 1 0 0 0 1 1h4a1 1 0 0 0 0-2h-3V5h3.17a1.05 1.05 0 0 1 .71.29l4.83 4.83a1 1 0 0 1 .29.71z" />
</g>
</g>
</svg>
);
};

export const SaveFilled = () => {
return (
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<g data-name="Layer 2">
<g data-name="save">
<rect width="24" height="24" opacity="0" />
<rect x="10" y="17" width="4" height="4" />
<path d="M20.12 8.71l-4.83-4.83A3 3 0 0 0 13.17 3H10v6h5a1 1 0 0 1 0 2H9a1 1 0 0 1-1-1V3H6a3 3 0 0 0-3 3v12a3 3 0 0 0 3 3h2v-4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v4h2a3 3 0 0 0 3-3v-7.17a3 3 0 0 0-.88-2.12z" />
</g>
</g>
</svg>
);
};

0 comments on commit c46fa77

Please sign in to comment.