Skip to content

Commit

Permalink
Add CloseOutlined Icon (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
nbhargava authored Apr 21, 2021
1 parent 46995a3 commit 2d923c1
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
2 changes: 1 addition & 1 deletion packages/design-system/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@recidiviz/design-system",
"version": "0.4.4",
"version": "0.4.5",
"description": "UI components and styles for Recidiviz web products.",
"author": "Recidiviz <[email protected]>",
"license": "GPL-3.0-only",
Expand Down
9 changes: 9 additions & 0 deletions packages/design-system/src/components/Icon/IconSVG.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,15 @@ IconSVG.Close = () => (
</BaseSVG>
);

IconSVG.CloseOutlined = () => (
<BaseSVG viewBox="0 0 16 16">
<path
d="M8 0C3.6 0 0 3.6 0 8C0 12.4 3.6 16 8 16C12.4 16 16 12.4 16 8C16 3.6 12.4 0 8 0ZM11.5 10.1L10.1 11.5L8 9.4L5.9 11.5L4.5 10.1L6.6 8L4.5 5.9L5.9 4.5L8 6.6L10.1 4.5L11.5 5.9L9.4 8L11.5 10.1Z"
fill={prop("fill")}
/>
</BaseSVG>
);

IconSVG.Envelope = () => (
<BaseSVG viewBox="0 0 28 18">
<path
Expand Down

0 comments on commit 2d923c1

Please sign in to comment.