-
Notifications
You must be signed in to change notification settings - Fork 12
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 #166 from openameba/feat/build-icon-via-webhook
feat(spindle-icons): update icons
- Loading branch information
Showing
6 changed files
with
22 additions
and
1 deletion.
There are no files selected for viewing
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,18 @@ | ||
import * as React from 'react'; | ||
|
||
function SvgAmebacoin(props: React.SVGProps<SVGSVGElement>) { | ||
return ( | ||
<svg | ||
width="1em" | ||
height="1em" | ||
viewBox="0 0 24 24" | ||
fill="currentColor" | ||
role="img" | ||
{...props} | ||
> | ||
<path d="M13.505 3.009L11.004 3C6.357 3.053 2.6 7.077 2.6 12c0 4.932 3.757 8.947 8.404 9l2.501-.009c4.362-.062 7.905-4.068 7.905-9-.009-4.914-3.543-8.929-7.905-8.982zm0 15.498c-.383.17-.783.294-1.202.374a5.898 5.898 0 01-2.483-.018 6.212 6.212 0 01-2.742-1.38C5.573 16.203 4.612 14.226 4.612 12c0-2.217.97-4.202 2.466-5.484a6.306 6.306 0 012.742-1.38 5.83 5.83 0 012.484-.018c.418.08.818.214 1.201.375 2.404 1.032 4.104 3.552 4.104 6.498 0 2.956-1.71 5.484-4.104 6.516zm-4.353-7.006v1.015c0 .339.018.704.08.926a1.723 1.723 0 001.63 1.175 1.753 1.753 0 001.513-.881c.115-.223.222-.516.365-.641a.856.856 0 01.872-.17.62.62 0 01.223.134.879.879 0 01.32.989c-.08.23-.196.445-.32.65a3.475 3.475 0 01-2.52 1.637 3.897 3.897 0 01-.454.036 3.456 3.456 0 01-2.99-1.727 3.306 3.306 0 01-.232-.472c-.223-.543-.25-1.166-.25-1.923v-.498c0-.74.027-1.362.25-1.923.062-.16.142-.32.231-.472a3.446 3.446 0 012.991-1.727c.152 0 .303.018.454.036a3.502 3.502 0 012.52 1.647c.124.204.24.418.32.658a.883.883 0 01-.32.989c-.072.053-.143.106-.223.133a.923.923 0 01-.872-.17c-.143-.142-.25-.418-.365-.64a1.691 1.691 0 00-1.06-.82 1.99 1.99 0 00-.454-.061 1.72 1.72 0 00-1.629 1.175c-.071.222-.08.578-.08.925z" /> | ||
</svg> | ||
); | ||
} | ||
|
||
export default SvgAmebacoin; |
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