8000 GitHub - david-ponc/react-symbols: ✨ Symbols VSCode Icon Theme by Miguel Solorio, for React.
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

david-ponc/react-symbols

 
 

Repository files navigation

Website   ❖   Getting Started   ❖   License   ❖   Contribute   ❖   VSCode Theme

Remix Badge SWC Badge Build Status < 8000 a target="_blank" rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/95012067986c5b03ef95bae52a6241b978a0202478026ee7d7254b18b58e8c69/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f72656c656173652f70686572616c622f72656163742d73796d626f6c73">GitHub releases GitHub stars GitHub issues GitHub license

🧑‍🚀 Introduction

React-Symbols is a library for React with the icons of the VSCode theme Symbols created by Miguel Solorio (@miguelsolorio):

  • 📦 +100 files & folders icons.
  • ☁️ Support for React Server Components (RSC).
  • 🍃 Lightweight.
  • 💙 Built with Typescript.
  • 🚀 SVG optimized and minified.

🚀 Getting Started

React-Symbols require React >=16.8.0.

- Install

# with npm:
npm install @react-symbols/icons

# with pnpm:
pnpm add @react-symbols/icons

# with yarn:
yarn add @react-symbols/icons

# with bun:
bun add @react-symbols/icons

- Usage

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;

💿 Config for use the library with Remix Old Compiler if you are using CJS (v1 uses CJS by default, v2 uses ESM):

// Add in the remix.config.js:
module.exports = {
  ...
  serverDependenciesToBundle: ["@react-symbols/icons"],
  ...
};

✍️ Change the name of the icon:

import { Bun as BunIcon } from "@react-symbols/icons";

const MyComponent = () => {
  return (
    <>
      <BunIcon width={128} height={128} />
    </>
  );
};

export default MyComponent;

📦 Stack

This is a monorepo project created with:

For monorepo:

For library:

  • SWC - Rust-based platform for the Web.
  • React 18 - A JavaScript library for building user interfaces.
  • Typescript - TypeScript is JavaScript with syntax for types.

For website:

  • Remix - Create modern, resilient user experiences with web fundamentals.
  • Typescript - TypeScript is JavaScript with syntax for types.
  • Tailwind CSS - A utility-first CSS framework for rapidly building custom designs.
  • tailwindcss-animate - A Tailwind CSS plugin for creating beautiful animations.
  • shadcn/ui + Radix UI - An opinionated toast component for React.
  • Sonner - An opinionated toast component for React.

🙌 Contribute

  1. Fork the repository and clone it:
git clone git@github.com:YOUR_USERNAME/react-symbols.git
  1. Install the dependencies:
# Install pnpm globally if you don't have it:
npm install -g pnpm

# Install the dependencies:
pnpm install
  1. Run the development server:
pnpm dev

and open localhost:5173 with your browser to see the website 🚀

🔑 License

About

✨ Symbols VSCode Icon Theme by Miguel Solorio, for React.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 99.5%
  • Other 0.5%
0