New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@hudoro/badges

Package Overview
Dependencies
Maintainers
0
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@hudoro/badges

Badges component for Hudoro UI

  • 0.1.1-beta.19
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
0
Weekly downloads
 
Created
Source

Hudoro badges

Hudoro badges is a strict and customizable badges component for web development projects, designed for simplicity and adherence to strict design guidelines.

Screenshots

App Screenshot

Package instalation

Instal package using pnpm

  pnpm add @hudoro/badges

Instal package using yarn

  yarn add @hudoro/badges

Instal package using npm

  npm i @hudoro/badges

Usage/Examples

import React from "react";
import ReactDOM from "react-dom/client";
import {Badges} from "@hudoro/badges";

const App = () => (
  <div>
    <Badges variant="success" text="hello" size="md" />
    <Badges variant="danger" text="hello" size="md" />
    <Badges variant="info" text="hello" size="md" />
    <Badges variant="warning" text="hello" size="md" />
    <Badges variant="dark" text="hello" size="md" />
  </div>
);

ReactDOM.createRoot(document.getElementById("app")!).render(<App />);

Props @hudoro/badges

Props that you can pass to <Badges {...props} />
Prop NameValuerequired
size"sm" / "md" / "lg" / "xl 'false
variant"success" / "danger" / "info" / "warning" / "dark"false
textstringtrue
LeftIconReact.ComponentType<SVGProps>false
RightIconReact.ComponentType<SVGProps>false
borderbooleanfalse

FAQs

Package last updated on 07 Feb 2025

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