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

1.2.7 • Public • Published

Symbols

S̶F̶ Symbols for the web, a comprehensive icon library designed for easy integration into your web projects.

Installation

To use symbols in your project, install it via npm:

npm install symbols-react

Or via yarn:

yarn add symbols-react

Usage

After installation, you can import and use the icons in your React components:

import { IconMangoFill, IconAppleLogo } from 'symbols-react';
 
 function MyApp() {
      return (
        <div>
          <IconMangoFill fill="black" />
          <IconAppleLogo fill="black" />
        </div>
      );
    }

Props, tailwind, style how you like:

import { IconMangoFill } from 'symbols-react';
 
 function MyApp() {
      return (
        <div>
          //Tailwind example
          <IconMangoFill className="fill-black w-[24] h-[24]" />

          //Props example
          <IconMangoFill fill="black" width="24" height="24" />
        </div>
      );
    }

Contributing

Contributions are welcome! Please check out the issues on GitHub for guidelines.

License

This project is licensed under the ISC License - see the LICENSE file for more legal bs.

Dependencies (0)

    Dev Dependencies (1)

    Package Sidebar

    Install

    npm i symbols-react

    Homepage

    symbols.dev

    Weekly Downloads

    46

    Version

    1.2.7

    License

    ISC

    Unpacked Size

    19.7 MB

    Total Files

    19719

    Last publish

    Collaborators

    • toxicmango