0.0.5 • Published 2 years ago

@shinragriever/react-cryptoicon v0.0.5

Weekly downloads
-
License
ISC
Repository
-
Last release
2 years ago

React-Cryptoicon

React Typescript

import { BtcIcon } from '@shinragriever/react-cryptoicon';

const Icon = () => {
  return (
    <>
      <BtcIcon height="32x" width="32px" />
    </>
  );
};

export default Icon;
import { BtcIcon } from '@shinragriever/react-cryptoicon';

type IProps = {
  props?: SVGProps<SVGSVGElement>;
};

const Icon = ({ props = {} }: IProps) => {
  return (
    <>
      <BtcIcon {...props} />
    </>
  );
};

export default Icon;
0.0.11

2 years ago

0.0.10

2 years ago

0.0.9

2 years ago

0.0.8

2 years ago

0.0.7

2 years ago

0.0.6

2 years ago

0.0.5

2 years ago

0.0.4

2 years ago

0.0.3

2 years ago

0.0.2

2 years ago

0.0.1

2 years ago