1.1.1 • Published 2 years ago

reactsax-icons v1.1.1

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

ReactSax Icons

ReactSax Icons is a simple and flexible icon library for React, allowing customization of icon size and color.

Installation

Install the package using npm or yarn:

npm install reactsax-icons
#or
yarn add reactsax-icons

Example usage

import { HomeIcon } from "reactsax-icons";

function App() {
  return (
    <div>
      <h1>Welcome to ReactSax Icons!</h1>
      <p>Customize your icons with ease.</p>
      <HomeIcon size={32} color="green" />
    </div>
  );
}

Theme Customization

import { HomeIcon, ThemeProvider } from "reactsax-icons";

const App: React.FC = () => {
  const theme = {
    size: 32,
    color: "blue",
  };

  return (
    <ThemeProvider theme={theme}>
      <div>
        <HomeIcon />
        <HomeIcon size={48} color="red" />
      </div>
    </ThemeProvider>
  );
};

export default App;
1.1.1

2 years ago

1.1.0

2 years ago

1.0.9

2 years ago

1.0.8

2 years ago

1.0.7

2 years ago

1.0.6

2 years ago

1.0.5

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago