-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
53 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
/> | ||
</> | ||
); |