Skip to content

Commit

Permalink
feat(icons): add person outline (#231)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeldking authored Aug 28, 2024
1 parent f004dba commit 102c9bf
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/icon/Icons.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1680,6 +1680,18 @@ export const Person = () => (
</svg>
);

export const PersonOutline = () => (
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<g data-name="Layer 2">
<g data-name="person">
<rect width="24" height="24" opacity="0" />
<path d="M12 11a4 4 0 1 0-4-4 4 4 0 0 0 4 4zm0-6a2 2 0 1 1-2 2 2 2 0 0 1 2-2z" />
<path d="M12 13a7 7 0 0 0-7 7 1 1 0 0 0 2 0 5 5 0 0 1 10 0 1 1 0 0 0 2 0 7 7 0 0 0-7-7z" />
</g>
</g>
</svg>
);

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

0 comments on commit 102c9bf

Please sign in to comment.