0.0.5 • Published 3 years ago

@bamboo-design/icons v0.0.5

Weekly downloads
-
License
MIT
Repository
-
Last release
3 years ago

npm latest NPM downloads

sea Design Icons for React

Install

use npm

npm i @bamboo/icons

or use yarn

yarn add @bamboo/icons

Usage

import React from 'react';
import { render } from 'react-dom';
import { Add, Keyboard, Search } from '@bamboo/icons';

const App = () => {
  return (
    <>
      <Add />
      <Keyboard />
      <Search />
    </>
  );
};

render(<App />, document.getElementById('root'));

Component Interface

interface IconProps {
  className?: string;
  onClick?: React.MouseEventHandler<SVGSVGElement>;
  style?: React.CSSProperties;
}
0.0.5

3 years ago

0.0.4

3 years ago

0.0.3

3 years ago

0.0.2

3 years ago

0.0.1

3 years ago