⚡ React-Symbols is a library for React with the icons of the VSCode theme “Symbols” by Miguel Solorio (@misolori).

GitHub releases GitHub stars GitHub issues GitHub license Required Node.JS >=16.0.0

? Features

  • ? +40 icons.
  • ? Lightweight.
  • ? Ready to use with Typescript.
  • ? SVG optimized and minified.

? Getting Started

– Installation

# npm ->
npm install @react-symbols/icons
# snpm ->
snpm install @react-symbols/icons 
# pnpm ->
pnpm add @react-symbols/icons
# yarn ->
yarn add @react-symbols/icons

– Usage

import React from 'react';
import { Angular, Astro, Document } from '@react-symbols/icons';

const MyComponent = () => {
  return (
    <>
      <Angular width={128} height={128} />
      <Astro width={128} height={128} />
      <Document width={128} height={128} />
    </>
  );
};

export default MyComponent;

? License

GitHub

View Github