Skip to content

Commit

Permalink
help icon
Browse files Browse the repository at this point in the history
  • Loading branch information
Cloud11PL committed Sep 19, 2024
1 parent 0958773 commit d4f70ce
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .changeset/honest-penguins-know.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@saleor/macaw-ui": patch
---

Macaw-ui now exports a new Help icon.
48 changes: 48 additions & 0 deletions src/components/Icons/HelpIcon.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
import { createSVGWrapper } from "./SVGWrapper";

export const HelpIcon = createSVGWrapper(
<>
<path
d="M9.99984 18.3333C14.6022 18.3333 18.3332 14.6024 18.3332 10C18.3332 5.39763 14.6022 1.66667 9.99984 1.66667C5.39746 1.66667 1.6665 5.39763 1.6665 10C1.6665 14.6024 5.39746 18.3333 9.99984 18.3333Z"
stroke="black"
strokeWidth="1.75"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M4.1084 4.10834L7.64173 7.64167"
stroke="black"
strokeWidth="1.75"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M12.3584 7.64167L15.8917 4.10834"
stroke="black"
strokeWidth="1.75"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M12.3584 12.3583L15.8917 15.8917"
stroke="black"
strokeWidth="1.75"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M7.64173 12.3583L4.1084 15.8917"
stroke="black"
strokeWidth="1.75"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M9.99984 13.3333C11.8408 13.3333 13.3332 11.841 13.3332 10C13.3332 8.15906 11.8408 6.66667 9.99984 6.66667C8.15889 6.66667 6.6665 8.15906 6.6665 10C6.6665 11.841 8.15889 13.3333 9.99984 13.3333Z"
stroke="black"
strokeWidth="1.75"
strokeLinecap="round"
strokeLinejoin="round"
/>
</>
);

0 comments on commit d4f70ce

Please sign in to comment.