Skip to content

Commit

Permalink
Merge pull request #166 from openameba/feat/build-icon-via-webhook
Browse files Browse the repository at this point in the history
feat(spindle-icons): update icons
  • Loading branch information
herablog authored Feb 10, 2021
2 parents 4604489 + 306082f commit f3582bd
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 1 deletion.
Binary file added packages/spindle-icons/dist/pdf/amebacoin.pdf
Binary file not shown.
1 change: 1 addition & 0 deletions packages/spindle-icons/dist/svg/amebacoin.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion packages/spindle-icons/dist/svg/sprite.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions packages/spindle-icons/docs/icons.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
| align_left | ![](../dist/svg/align_left.svg) |
| align_right | ![](../dist/svg/align_right.svg) |
| all_fill | ![](../dist/svg/all_fill.svg) |
| amebacoin | ![](../dist/svg/amebacoin.svg) |
| amegold | ![](../dist/svg/amegold.svg) |
| amember | ![](../dist/svg/amember.svg) |
| arrow_down | ![](../dist/svg/arrow_down.svg) |
Expand Down
18 changes: 18 additions & 0 deletions packages/spindle-ui/src/Icon/Amebacoin.tsx
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;
1 change: 1 addition & 0 deletions packages/spindle-ui/src/Icon/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ export { default as AlignCenter } from './AlignCenter';
export { default as AlignLeft } from './AlignLeft';
export { default as AlignRight } from './AlignRight';
export { default as AllFill } from './AllFill';
export { default as Amebacoin } from './Amebacoin';
export { default as Amegold } from './Amegold';
export { default as Amember } from './Amember';
export { default as ArrowDown } from './ArrowDown';
Expand Down

0 comments on commit f3582bd

Please sign in to comment.