-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #139 from MacPaw/feat/add-new-icon
feat: add AppStore icon
- Loading branch information
Showing
3 changed files
with
17 additions
and
1 deletion.
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
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,15 @@ | ||
import * as React from 'react'; | ||
|
||
const SvgAppStoreIcon = (props: React.SVGProps<SVGSVGElement>) => ( | ||
<svg xmlns="http://www.w3.org/2000/svg" width={25} height={24} viewBox="0 0 25 24" {...props}> | ||
<g> | ||
<path | ||
id="Vector" | ||
d="M15.3645 10.0644L17.519 14H21.5C22.0128 14 22.4355 14.386 22.4933 14.8834L22.5 15C22.5 15.5523 22.0523 16 21.5 16H18.614L20.7408 19.8836C21.006 20.368 20.8283 20.9757 20.3439 21.241C19.8595 21.5062 19.2517 21.3285 18.9865 20.8441L13.6102 11.0249C13.345 10.5405 13.5227 9.93276 14.0071 9.66752C14.4916 9.40229 15.0993 9.57997 15.3645 10.0644ZM6.42365 17.4465C6.6907 16.9631 7.29908 16.7877 7.78251 17.0547C8.26594 17.3218 8.44135 17.9302 8.1743 18.4136L6.82987 20.8474C6.56282 21.3308 5.95444 21.5062 5.47101 21.2392C4.98758 20.9721 4.81217 20.3637 5.07922 19.8803L6.42365 17.4465ZM14.0731 3.52797C14.3339 3.04115 14.9399 2.85792 15.4268 3.11872C15.9136 3.37952 16.0968 3.98559 15.836 4.47242L10.731 14H14.1364C14.6492 14 15.0719 14.386 15.1296 14.8834L15.1364 15C15.1364 15.5523 14.6886 16 14.1364 16H3.5C2.94772 16 2.5 15.5523 2.5 15C2.5 14.4477 2.94772 14 3.5 14H8.462L11.814 7.744L9.99109 4.48873C9.72128 4.00683 9.89321 3.39746 10.3751 3.12765C10.857 2.85784 11.4664 3.02977 11.7362 3.51166L12.935 5.652L14.0731 3.52797Z" | ||
fillRule="nonzero" | ||
/> | ||
</g> | ||
</svg> | ||
); | ||
|
||
export default SvgAppStoreIcon; |
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