UNPKG

sleekstepper

Version:

A stylish and customizable stepper component for React, styled with **Tailwind CSS**. This component allows you to visually track steps in a process, such as order tracking or multi-step forms, with sleek progress indicators and themeable customization.

12 lines (10 loc) 231 B
import "./App.css"; import SleekStepper from "sleekstepper"; function App() { return ( <> <SleekStepper steps={["1", "2","3"]} currStep={2} className={"m-10"} theme={"bg-blue-200"}/> </> ); } export default App;