Socket
Socket
Sign inDemoInstall

radix-icons

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

radix-icons

This is a fork of the original [@radix-ui/icons](https://github.com/radix-ui/icons).


Version published
Weekly downloads
107
decreased by-15.08%
Maintainers
1
Weekly downloads
 
Created
Source

radix-icons

This is a fork of the original @radix-ui/icons.

It has been modified to work with both React and Vue.

React

First, install @radix-icons/react from npm:

npm install @radix-icons/react

Now each icon can be imported individually as a React component:

import { BellIcon } from '@radix-icons/react'

function MyComponent() {
  return (
    <div>
      <BellIcon className="h-6 w-6 text-blue-500" />
      <p>...</p>
    </div>
  )
}

Vue

First, install @radix-icons/vue from npm:

npm install @radix-icons/vue

Now each icon can be imported individually as a Vue component:

<script setup>
import { BellIcon } from '@radix-icons/vue'
</script>

<template>
  <div>
    <BellIcon class="h-6 w-6 text-blue-500" />
    <p>...</p>
  </div>
</template>

Contributing

We welcome any and all contributions! If you'd like to improve something, open an issue and/or a pull request so we can discuss it.

Credits

License

This library is MIT licensed.

FAQs

Package last updated on 27 Sep 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc