react-icon-tint
TypeScript icon, indicating that this package has built-in type declarations

2.5.1 • Public • Published

react-icon-tint

react-icon-tint is a React component that replicates the iOS behavior, where you can easily tint an icon according to your UI.

Usage

Requires React >= 16

npm install --save react-icon-tint
import React from 'react';
import ReactDOM from 'react-dom';
import IconTint from 'react-icon-tint';

const MyComponent = () => {
   return (
      <div>
         <IconTint src="/bellIcon.png" color="#cecece" />
      </div>
   );
}

Props

  • src - {String}required – Image source.
  • color - {String}required – Color you want to tint your icon.
  • maxWidth - {Number} && maxHeight - {Number} – maxWidth + maxHeight for the icon, should be provided in pairs.
  • fallback - {ReactComponent} – Fallback component used during the load period and on SSR;
  • Any additional props you pass to this component will be forwarded to the Canvas element that renders your icon.

Contributing

Your contributions are welcome!

Author

husek

License

MIT

Package Sidebar

Install

npm i react-icon-tint

Weekly Downloads

1,013

Version

2.5.1

License

MIT

Unpacked Size

8.57 kB

Total Files

11

Last publish

Collaborators

  • husek