Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@coreui/icons

Package Overview
Dependencies
Maintainers
1
Versions
31
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@coreui/icons

CoreUI Icons Free

  • 3.0.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
195K
decreased by-2.66%
Maintainers
1
Weekly downloads
 
Created

What is @coreui/icons?

@coreui/icons is a library of premium icons designed for use with CoreUI, a popular open-source UI component library. It provides a wide range of icons that can be easily integrated into web applications to enhance the user interface.

What are @coreui/icons's main functionalities?

Basic Icon Usage

This feature allows you to include CoreUI icons in your project by adding a script tag and using the appropriate class names for the icons.

<script src="https://unpkg.com/@coreui/icons/js/coreui-icons.min.js"></script>
<i class="cui-star"></i>

React Integration

CoreUI icons can be easily integrated into React applications using the @coreui/icons-react package. This example demonstrates how to import and use an icon in a React component.

import { CIcon } from '@coreui/icons-react';

const MyComponent = () => (
  <div>
    <CIcon name="cil-star" />
  </div>
);

Vue Integration

CoreUI icons can also be used in Vue applications with the @coreui/icons-vue package. This example shows how to import and use an icon in a Vue component.

<template>
  <div>
    <CIcon name="cil-star" />
  </div>
</template>

<script>
import { CIcon } from '@coreui/icons-vue';

export default {
  components: {
    CIcon
  }
};
</script>

Other packages similar to @coreui/icons

Keywords

FAQs

Package last updated on 07 Mar 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