1.1.1 • Published 1 year ago

reactsax-icons v1.1.1

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year 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

1 year ago

1.1.0

1 year ago

1.0.9

1 year ago

1.0.8

1 year ago

1.0.7

1 year ago

1.0.6

1 year ago

1.0.5

1 year ago

1.0.4

1 year ago

1.0.3

1 year ago

1.0.2

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago