🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Sign inDemoInstall
Socket

@hudoro/stepper

Package Overview
Dependencies
Maintainers
0
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@hudoro/stepper

stepper component for Hudoro UI

0.0.1-beta.6
latest
npm
Version published
Maintainers
0
Created
Source

Hudoro stepper

Hudoro stepper is a strict and customizable stepper 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/stepper

Instal package using yarn

  yarn add @hudoro/stepper

Instal package using npm

  npm i @hudoro/stepper

Usage/Examples

import React from "react";
import {Stepper, Step} from "@hudoro/stepper";
import ReactDOM from "react-dom/client";

const App = () => (
  <div>
    <h1>Stepper Component</h1>
    <Stepper orientation="horizontal" active={1}>
      <Step title="title" description="description" />
      <Step title="title1" description="description1" />
      <Step title="title2" description="descriptio2" />
    </Stepper>
  </div>
);

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


Props @hudoro/stepper

Props that you can pass to <Stepper {...props} />

Prop NameValuerequired
orientation"horizontal" / "vertical"false
childrenReactNodetrue
activenumbertrue

Props that you can pass to <Step {...props} />

Prop NameValuerequired
titlestringtrue
descriptionstringtrue

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