Skip to content

Releases: aykutkardas/react-icomoon

v2.5.0

02 Apr 08:56
Compare
Choose a tag to compare

Change Log

Remove IconComponent type
Add IconProps type

Before:

import IcoMoon, { IconComponent } from "react-icomoon";

const Icon: typeof IconComponent = (props) => (
  <IcoMoon iconSet={iconSet} {...props} />
);

Now:

import IcoMoon, { IconProps } from "react-icomoon";

const Icon = (props: IconProps) => <IcoMoon iconSet={iconSet} {...props} />;

v2.4.1

15 Aug 12:36
Compare
Choose a tag to compare

Add svg title support. #20
Add tests and test github action. #21

v2.3.0

22 May 22:25
Compare
Choose a tag to compare

Added TypeScript Support 🎉

v2.1.5

22 Aug 14:08
Compare
Choose a tag to compare
v2.1.5

v2.1.4

22 Aug 14:06
Compare
Choose a tag to compare

v2.0.6...v2.1.4