siddcn logo
siddcn
O

Simple Button

A basic button component for terminal interfaces

LOCALHOST:3000
[ Click me ]
NORMAL100%

API Reference

PropTypeRequiredDescription
labelstringYESThe text displayed on the button
InstallationBASH
npx siddcn add button-simple
UsageTSX
import { SimpleButton } from 'siddcn';

export default function App() {
  return <SimpleButton label="Click me" />;
}