Skip to content

Commit

Permalink
1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rossmoody committed May 9, 2022
1 parent 1e64dff commit 9898e9e
Show file tree
Hide file tree
Showing 117 changed files with 2,654 additions and 3 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
types: [published]

jobs:
build:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand All @@ -15,6 +15,17 @@ jobs:
- run: yarn
- run: yarn test

build:
needs: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
- run: yarn build
- run: yarn rollup

publish-npm:
needs: build
runs-on: ubuntu-latest
Expand All @@ -24,7 +35,6 @@ jobs:
with:
node-version: 16
registry-url: https://registry.npmjs.org/
- run: yarn
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cryptocons",
"version": "1.2.0",
"version": "1.3.0",
"description": "Cryptocurrency logos as tidy, optimized SVG React components.",
"keywords": [
"cryptocurrency logos",
Expand Down
15 changes: 15 additions & 0 deletions src/components/BanklessTimes.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import React from 'react'
import { createIcon } from '../createIcon'

export const BanklessTimes = createIcon({
path: (
<>
<path
fillRule="evenodd"
clipRule="evenodd"
d="M12.7313 8.49172L15.4779 10.297L13.5655 11.6313L12.0096 10.6159L5.12783 15.1378L12.0096 19.6582L18.8924 15.1378L16.7206 13.7112L18.6899 12.4061L21.1828 14.0307C21.7909 14.427 21.9626 15.2412 21.5663 15.8493C21.4674 16.001 21.3382 16.1307 21.1868 16.2302L12.7312 21.7842C12.2932 22.0719 11.7261 22.0719 11.2881 21.7842L2.84277 16.2362C2.23616 15.8377 2.06745 15.0229 2.46595 14.4162C2.56451 14.2662 2.69275 14.138 2.84277 14.0394L11.2879 8.49155C11.726 8.20375 12.2932 8.20381 12.7313 8.49172ZM12.7483 2.21581L21.1937 7.76383C21.8003 8.16234 21.969 8.97715 21.5705 9.58376C21.4719 9.73378 21.3437 9.86203 21.1937 9.96058L12.7485 15.5085C12.3104 15.7963 11.7432 15.7962 11.3052 15.5083L8.55855 13.703L10.4709 12.3687L12.0268 13.3841L18.9086 8.86221L12.0268 4.34179L5.14406 8.86221L7.31583 10.2888L5.34657 11.5939L2.85361 9.96926C2.24554 9.57299 2.07384 8.7588 2.47012 8.15073C2.56903 7.99896 2.69824 7.86928 2.84964 7.76983L11.3053 2.21577C11.7433 1.92806 12.3103 1.92808 12.7483 2.21581Z"
fill="#22E6AA"
></path>
</>
),
})
16 changes: 16 additions & 0 deletions src/components/BanklessTimesBadge.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import React from 'react'
import { createIcon } from '../createIcon'

export const BanklessTimesBadge = createIcon({
rectFill: '#22E6AA',
path: (
<>
<path
fillRule="evenodd"
clipRule="evenodd"
d="M12.657 8.84255L15.1876 10.4673L13.4256 11.6682L11.9921 10.7543L5.65151 14.824L11.9921 18.8924L18.3335 14.824L16.3326 13.5401L18.147 12.3655L20.4439 13.8277C21.0041 14.1843 21.1623 14.9171 20.7972 15.4643C20.7061 15.6009 20.587 15.7176 20.4475 15.8071L12.6569 20.8058C12.2533 21.0647 11.7309 21.0647 11.3273 20.8058L3.54615 15.8126C2.98724 15.4539 2.83181 14.7206 3.19897 14.1746C3.28977 14.0396 3.40793 13.9242 3.54615 13.8355L11.3271 8.84239C11.7308 8.58337 12.2534 8.58343 12.657 8.84255ZM12.6727 3.19423L20.4538 8.18745C21.0128 8.5461 21.1682 9.27943 20.801 9.82539C20.7102 9.96041 20.5921 10.0758 20.4538 10.1645L12.6729 15.1576C12.2692 15.4166 11.7466 15.4166 11.343 15.1575L8.81242 13.5327L10.5744 12.3318L12.0079 13.2457L18.3485 9.17598L12.0079 5.10761L5.66646 9.17598L7.66743 10.4599L5.85304 11.6345L3.55614 10.1723C2.99589 9.81569 2.8377 9.08292 3.20281 8.53565C3.29394 8.39907 3.41299 8.28236 3.55248 8.19285L11.3431 3.19419C11.7467 2.93526 12.2691 2.93527 12.6727 3.19423Z"
fill="white"
></path>
</>
),
})
21 changes: 21 additions & 0 deletions src/components/Biconomy.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
import React from 'react'
import { createIcon } from '../createIcon'

export const Biconomy = createIcon({
path: (
<>
<path
d="M22.0803 12C22.0803 6.47715 17.6032 2 12.0803 2C6.55747 2 2.08032 6.47715 2.08032 12C2.08032 17.5228 6.55747 22 12.0803 22C17.6032 22 22.0803 17.5228 22.0803 12Z"
fill="black"
></path>
<path
d="M13.5803 7.336C13.2123 7.124 12.7843 7 12.3283 7H9.83226C10.5243 7 11.0803 7.56 11.0803 8.248V10.748V12H12.3283C12.7843 12 13.2123 11.876 13.5763 11.664C13.8523 11.504 14.0923 11.296 14.2883 11.048C14.6243 10.62 14.8283 10.084 14.8283 9.5C14.8283 8.576 14.3283 7.768 13.5803 7.336Z"
fill="#D85111"
></path>
<path
d="M14.2923 11.048C14.0963 11.296 13.8563 11.504 13.5803 11.664C13.2123 11.876 12.7843 12 12.3323 12H11.0803V10.752V8.248C11.0803 7.56 10.5203 7 9.8323 7C9.1403 7 8.58031 7.56 8.58031 8.248V10.748V12V15.748V17H9.8283H12.9523C13.1683 17 13.3763 16.98 13.5763 16.936C15.0043 16.648 16.0763 15.384 16.0763 13.872C16.0803 12.628 15.3483 11.552 14.2923 11.048Z"
fill="white"
></path>
</>
),
})
18 changes: 18 additions & 0 deletions src/components/BiconomyBadge.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
import React from 'react'
import { createIcon } from '../createIcon'

export const BiconomyBadge = createIcon({
rectFill: 'black',
path: (
<>
<path
d="M14.4501 4.50065C13.9017 4.18476 13.264 4 12.5846 4H8.86545C9.89655 4 10.725 4.83442 10.725 5.85956V9.58462V11.4501H12.5846C13.264 11.4501 13.9017 11.2653 14.4441 10.9495C14.8554 10.7111 15.213 10.4012 15.505 10.0316C16.0057 9.3939 16.3096 8.59525 16.3096 7.72507C16.3096 6.34828 15.5646 5.14434 14.4501 4.50065Z"
fill="#D85111"
></path>
<path
d="M15.511 10.0316C15.219 10.4012 14.8614 10.7111 14.4501 10.9495C13.9018 11.2653 13.2641 11.4501 12.5906 11.4501H10.7251V9.59058V5.85956C10.7251 4.83442 9.89065 4 8.86551 4C7.83441 4 7 4.83442 7 5.85956V9.58462V11.4501V17.0347V18.9002H8.85955H13.5144C13.8362 18.9002 14.1462 18.8704 14.4442 18.8049C16.5719 18.3758 18.1693 16.4924 18.1693 14.2394C18.1752 12.3858 17.0845 10.7826 15.511 10.0316Z"
fill="white"
></path>
</>
),
})
30 changes: 30 additions & 0 deletions src/components/Bitglobal.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
import React from 'react'
import { createIcon } from '../createIcon'

export const Bitglobal = createIcon({
path: (
<>
<path
d="M19.4358 10.4737L16.4147 11.5095L14.9473 13.2358L14.3431 15.3937H6.14315L5.19368 18.9326H14.3431C16.76 18.9326 19.4358 17.12 20.2989 14.6168C20.9031 12.8905 20.4715 11.4231 19.4358 10.4737Z"
fill="url(#Bitglobal_a)"
></path>
<path
d="M8.99156 15.3937C6.66104 15.3937 6.57473 13.6673 6.83367 12.7179C7.09262 11.7684 6.83367 12.7179 7.26525 10.9916C7.5242 10.1284 8.12841 9.17893 8.99156 8.48841C9.07788 8.40209 9.25051 8.31578 9.33682 8.22946C9.33682 8.22946 9.33682 8.22946 9.42314 8.22946C10.2 7.79789 11.0631 7.45262 12.0126 7.45262C14.5158 7.45262 16.4147 7.45262 16.4147 7.45262L16.76 6.41684L19.3494 8.57473L15.5515 10.7326L15.8968 9.61051H11.7537C10.2863 9.61051 9.85472 10.6463 9.68209 11.0779C9.59577 11.7684 9.42314 13.2358 11.2358 13.2358H14.4294H15.8968C18.3136 13.2358 20.9894 11.4231 21.8526 8.91999C22.7157 6.2442 21.2484 4 18.5726 4H9.7684C8.81893 4 7.86946 4.25895 7.17893 4.77684C7.17893 4.77684 7.17893 4.77684 7.09262 4.77684C7.0063 4.86316 6.83367 4.94947 6.74736 5.03579C5.8842 5.72631 5.27999 6.58947 5.02105 7.53894L2 18.9326H5.79789L6.74736 15.3937H9.33682C9.16419 15.3937 8.99156 15.3937 8.90525 15.3937"
fill="#F37320"
></path>
<defs>
<linearGradient
id="Bitglobal_a"
x1="21.2146"
y1="13.2348"
x2="10.1464"
y2="17.3007"
gradientUnits="userSpaceOnUse"
>
<stop offset="0.3633" stopColor="#D63026"></stop>
<stop offset="1" stopColor="#F37320"></stop>
</linearGradient>
</defs>
</>
),
})
31 changes: 31 additions & 0 deletions src/components/BitglobalBadge.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
import React from 'react'
import { createIcon } from '../createIcon'

export const BitglobalBadge = createIcon({
rectFill: 'white',
path: (
<>
<path
d="M19.4357 10.4736L16.4147 11.5094L14.9473 13.2357L14.3431 15.3936H6.14314L5.19366 18.9326H14.3431C16.76 18.9326 19.4357 17.1199 20.2989 14.6168C20.9031 12.8905 20.4715 11.4231 19.4357 10.4736Z"
fill="url(#BitglobalBadge_a)"
></path>
<path
d="M8.99156 15.3937C6.66104 15.3937 6.57473 13.6673 6.83367 12.7179C7.09262 11.7684 6.83367 12.7179 7.26525 10.9916C7.5242 10.1284 8.12841 9.17893 8.99156 8.48841C9.07788 8.40209 9.25051 8.31578 9.33682 8.22946C9.33682 8.22946 9.33682 8.22946 9.42314 8.22946C10.2 7.79789 11.0631 7.45262 12.0126 7.45262C14.5158 7.45262 16.4147 7.45262 16.4147 7.45262L16.76 6.41684L19.3494 8.57473L15.5515 10.7326L15.8968 9.61051H11.7537C10.2863 9.61051 9.85472 10.6463 9.68209 11.0779C9.59577 11.7684 9.42314 13.2358 11.2358 13.2358H14.4294H15.8968C18.3136 13.2358 20.9894 11.4231 21.8526 8.91999C22.7157 6.2442 21.2484 4 18.5726 4H9.7684C8.81893 4 7.86946 4.25895 7.17893 4.77684C7.17893 4.77684 7.17893 4.77684 7.09262 4.77684C7.0063 4.86316 6.83367 4.94947 6.74736 5.03579C5.8842 5.72631 5.27999 6.58947 5.02105 7.53894L2 18.9326H5.79789L6.74736 15.3937H9.33682C9.16419 15.3937 8.99156 15.3937 8.90525 15.3937"
fill="#F37320"
></path>
<defs>
<linearGradient
id="BitglobalBadge_a"
x1="21.2146"
y1="13.2348"
x2="10.1464"
y2="17.3007"
gradientUnits="userSpaceOnUse"
>
<stop offset="0.3633" stopColor="#D63026"></stop>
<stop offset="1" stopColor="#F37320"></stop>
</linearGradient>
</defs>
</>
),
})
25 changes: 25 additions & 0 deletions src/components/Bitpanda.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
import React from 'react'
import { createIcon } from '../createIcon'

export const Bitpanda = createIcon({
path: (
<>
<path
d="M14.6301 5.88557L14.2935 5.96972V7.18987C14.2935 7.82098 13.8728 8.36795 13.2837 8.57832L9.87573 9.63017V11.4814L14.3356 10.093C15.3875 9.7564 16.0186 8.87284 16.0186 7.65269V6.8112C16.0606 6.26423 15.3875 5.63312 14.6301 5.88557Z"
fill="#0E0E0E"
></path>
<path
d="M7.51957 5.3386L13.8307 3.36111C14.5039 3.15074 15.0509 3.15073 15.3875 3.19281L14.588 2.60377C14.2094 2.35132 13.1154 1.72021 11.727 2.14095L5.79453 4.07637L7.51957 5.3386Z"
fill="#0E0E0E"
></path>
<path
d="M17.1125 10.8082C17.1125 10.8082 18.2064 9.79846 18.2064 7.6106V6.68497C18.2064 5.25444 16.5655 2.94036 13.9149 3.78185L7.72994 5.75934V17.3298L9.49706 16.7828V13.9217L15.135 12.1546C16.1869 11.818 17.0704 12.6595 17.0704 13.5851V14.7212C17.0704 15.8572 16.0606 17.4981 14.4618 18.0029L5.79453 20.6957L7.51957 22L15.3033 19.5597C16.9442 19.0548 18.7534 17.6243 18.7534 14.637V13.501C18.7955 11.6497 17.1125 10.8082 17.1125 10.8082ZM14.5039 10.5137L9.49706 12.1125V7.06364L14.5039 5.46482C15.5558 5.12822 16.4814 5.96971 16.4814 6.85327V7.69475C16.4814 9.0832 15.682 10.1351 14.5039 10.5137Z"
fill="#0E0E0E"
></path>
<path
d="M16.6076 14.6791V13.5851C16.6076 12.954 15.9765 12.365 15.2612 12.5754L14.8826 12.7016V14.2583C14.8826 15.0157 14.3777 15.6889 13.6624 15.9413L7.26712 17.9188V5.67519L5.5 4.37089V20.317L14.2935 17.5401C15.682 17.1194 16.6076 15.7309 16.6076 14.6791Z"
fill="#0E0E0E"
></path>
</>
),
})
26 changes: 26 additions & 0 deletions src/components/BitpandaBadge.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
import React from 'react'
import { createIcon } from '../createIcon'

export const BitpandaBadge = createIcon({
rectFill: '#0E0E0E',
path: (
<>
<path
d="M15.0425 6.49701L14.7396 6.57275V7.67089C14.7396 8.23889 14.3609 8.73116 13.8308 8.92049L10.7636 9.86716V11.5333L14.7775 10.2837C15.7241 9.98076 16.2921 9.18556 16.2921 8.08742V7.33009C16.33 6.83782 15.7241 6.26981 15.0425 6.49701Z"
fill="white"
></path>
<path
d="M8.64302 6.00474L14.323 4.225C14.9289 4.03566 15.4212 4.03566 15.7241 4.07353L15.0047 3.54339C14.6639 3.31619 13.6793 2.74819 12.4297 3.12686L7.09048 4.86873L8.64302 6.00474Z"
fill="white"
></path>
<path
d="M17.2767 10.9274C17.2767 10.9274 18.2612 10.0186 18.2612 8.04957V7.21649C18.2612 5.92902 16.7844 3.84635 14.3988 4.60368L8.83236 6.38343V16.7968L10.4228 16.3045V13.7296L15.4969 12.1392C16.4436 11.8362 17.2388 12.5936 17.2388 13.4267V14.4491C17.2388 15.4715 16.33 16.9483 14.8911 17.4027L7.09048 19.8262L8.64302 21L15.6484 18.8037C17.1252 18.3493 18.7535 17.0619 18.7535 14.3733V13.3509C18.7913 11.6848 17.2767 10.9274 17.2767 10.9274ZM14.9289 10.6624L10.4228 12.1013V7.5573L14.9289 6.11836C15.8756 5.81542 16.7087 6.57276 16.7087 7.36796V8.1253C16.7087 9.3749 15.9892 10.3216 14.9289 10.6624Z"
fill="white"
></path>
<path
d="M16.8223 14.4112V13.4266C16.8223 12.8586 16.2542 12.3285 15.6105 12.5178L15.2697 12.6314V14.0325C15.2697 14.7141 14.8153 15.32 14.1716 15.5472L8.41582 17.3269V6.30766L6.82541 5.13379V19.4853L14.7396 16.9861C15.9892 16.6074 16.8223 15.3578 16.8223 14.4112Z"
fill="white"
></path>
</>
),
})
26 changes: 26 additions & 0 deletions src/components/Bitrue.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
import React from 'react'
import { createIcon } from '../createIcon'

export const Bitrue = createIcon({
path: (
<>
<path
d="M17.816 15.3962V5.43396L20.7217 7.09434V17.0566L15.3632 20.1132L12.4575 18.4528L17.816 15.3962ZM3.25 10.9434L6.15566 9.28302V15.3585L14.9104 20.3396L12.0047 22L3.25 17.0189V10.9434ZM12.0047 2L17.3632 5.01887V8.33962L12.0047 5.32075L3.25 10.3396V7.01887L12.0047 2ZM8.7217 7.92453L10.684 6.79245V10.9811C10.9104 10.8302 11.3632 10.4528 12.0802 10.4528C13.0236 10.4528 13.816 10.7547 14.4575 11.434C15.1368 12.0755 15.4387 12.8679 15.4387 13.7736C15.4387 14.6792 15.0991 15.4717 14.4575 16.1132C13.7783 16.7547 13.0236 17.0943 12.0802 17.0943C11.1368 17.0943 10.3443 16.8302 9.70283 16.1509C9.02359 15.5094 8.7217 14.717 8.7217 13.8113V7.92453ZM11.0991 14.7925C11.3632 15.0566 11.7028 15.2075 12.0802 15.2075C12.4575 15.2075 12.7972 15.0566 13.0613 14.7925C13.3255 14.5283 13.4764 14.1887 13.4764 13.8113C13.4764 13.434 13.3255 13.0943 13.0613 12.8302C12.7972 12.566 12.4575 12.4151 12.0802 12.4151C11.7028 12.4151 11.3632 12.566 11.0991 12.8302C10.8349 13.0943 10.684 13.434 10.684 13.8113C10.7217 14.1887 10.8349 14.4906 11.0991 14.7925Z"
fill="url(#Bitrue_a)"
></path>
<defs>
<linearGradient
id="Bitrue_a"
x1="11.9883"
y1="2.01532"
x2="11.9883"
y2="21.9848"
gradientUnits="userSpaceOnUse"
>
<stop stopColor="#FEE276"></stop>
<stop offset="1" stopColor="#F0B734"></stop>
</linearGradient>
</defs>
</>
),
})
27 changes: 27 additions & 0 deletions src/components/BitrueBadge.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
import React from 'react'
import { createIcon } from '../createIcon'

export const BitrueBadge = createIcon({
rectFill: 'url(#BitrueBadge_a)',
path: (
<>
<path
d="M17.3391 15.0566V6.09057L20 7.58491V16.5509L15.0929 19.3019L12.432 17.8075L17.3391 15.0566ZM4 11.0491L6.66091 9.55472V15.0226L14.6782 19.5057L12.0173 21L4 16.517V11.0491ZM12.0173 3L16.9244 5.71698V8.70566L12.0173 5.98868L4 10.5057V7.51698L12.0173 3ZM9.0108 8.33208L10.8078 7.31321V11.083C11.0151 10.9472 11.4298 10.6075 12.0864 10.6075C12.9503 10.6075 13.676 10.8792 14.2635 11.4906C14.8855 12.0679 15.162 12.7811 15.162 13.5962C15.162 14.4113 14.851 15.1245 14.2635 15.7019C13.6415 16.2792 12.9503 16.5849 12.0864 16.5849C11.2225 16.5849 10.4968 16.3472 9.90929 15.7358C9.28726 15.1585 9.0108 14.4453 9.0108 13.6302V8.33208ZM11.1879 14.5132C11.4298 14.7509 11.7408 14.8868 12.0864 14.8868C12.432 14.8868 12.743 14.7509 12.9849 14.5132C13.2268 14.2755 13.365 13.9698 13.365 13.6302C13.365 13.2906 13.2268 12.9849 12.9849 12.7472C12.743 12.5094 12.432 12.3736 12.0864 12.3736C11.7408 12.3736 11.4298 12.5094 11.1879 12.7472C10.946 12.9849 10.8078 13.2906 10.8078 13.6302C10.8423 13.9698 10.946 14.2415 11.1879 14.5132Z"
fill="white"
></path>
<defs>
<linearGradient
id="BitrueBadge_a"
x1="12.0033"
y1="0.0183849"
x2="12.0033"
y2="23.9817"
gradientUnits="userSpaceOnUse"
>
<stop stopColor="#FEE276"></stop>
<stop offset="1" stopColor="#F0B734"></stop>
</linearGradient>
</defs>
</>
),
})
Loading

0 comments on commit 9898e9e

Please sign in to comment.