Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ECW-3460] Add Kadena + AfricaRare logo #55

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
All notable changes to this project will be documented in this file. This
project adheres to [Semantic Versioning](http://semver.org/).

### 0.3.26

- ADD `AfricaRare` icon
- ADD `Kadena` icon

### 0.3.25

- ADD `FARMS` icon
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@unstoppabledomains/ui-kit",
"version": "0.3.25",
"version": "0.3.26",
"private": false,
"description": "A set of common Unstoppable Domains components",
"keywords": [
Expand Down
20 changes: 20 additions & 0 deletions src/icons/crypto/AfricaRare.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
import SvgIcon, {type SvgIconProps} from '@mui/material/SvgIcon';
import React from 'react';

const AfricaRare = React.forwardRef<
SVGSVGElement,
{
iconRef?: React.ForwardedRef<SVGSVGElement>;
} & SvgIconProps
>(({iconRef, ...props}, ref) => {
return (
<SvgIcon viewBox="0 0 24 24" {...props} ref={iconRef || ref}>
<circle cx="12" cy="12" r="11.5" fill="#F2A95D" stroke="#F9D88E" />
<g fill="#FCF0BF" fillRule="evenodd" clipRule="evenodd">
<path d="M10 4H7V3h3v1Zm5 2H6V5h9v1Zm2 2H3V7h14v1Zm4 2H4V9h17v1Zm-1 2H5v-1h15v1ZM9.5 13.5v-1h1v1h-1Zm2 7v-8h1v8h-1Zm2 0v-8h1v8h-1Zm2-1v-7h1v7h-1Zm2-4v-3h1v3h-1Zm0 3v-2h1v2h-1Zm2-1v-2h1v2h-1Z" />
</g>
</SvgIcon>
iurevych marked this conversation as resolved.
Show resolved Hide resolved
);
});

export default AfricaRare;
21 changes: 21 additions & 0 deletions src/icons/crypto/Kadena.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
import SvgIcon, {type SvgIconProps} from '@mui/material/SvgIcon';
import React from 'react';

const Kadena = React.forwardRef<
SVGSVGElement,
{
iconRef?: React.ForwardedRef<SVGSVGElement>;
} & SvgIconProps
>(({iconRef, ...props}, ref) => {
return (
<SvgIcon viewBox="0 0 24 24" {...props} ref={iconRef || ref}>
<path fill="#0E1821" d="M0 0h24v24H0z" />
<path
fill="#4A9079"
d="M4.5 17V7l3-2v14.5l-3-2.5ZM8 10l6-5h6l-9.5 7.5 9.5 7h-6l-6-5 2.5-2L8 10Z"
/>
</SvgIcon>
);
});

export default Kadena;
2 changes: 2 additions & 0 deletions src/icons/crypto/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
export {default as Aeternity} from './Aeternity';
export {default as AfricaRare} from './AfricaRare';
export {default as Algorand} from './Algorand';
export {default as Amp} from './Amp';
export {default as Ampleforth} from './Ampleforth';
Expand Down Expand Up @@ -69,6 +70,7 @@ export {default as HuobiToken} from './HuobiToken';
export {default as ICX} from './ICX';
export {default as InternetComputer} from './InternetComputer';
export {default as Iota} from './Iota';
export {default as Kadena} from './Kadena';
export {default as KardiaChain} from './KardiaChain';
export {default as Kava} from './Kava';
export {default as Kin} from './Kin';
Expand Down