O
Simple Button
A basic button component for terminal interfaces
LOCALHOST:3000
[ Click me ]
NORMAL100%
API Reference
| Prop | Type | Required | Description |
|---|---|---|---|
| label | string | YES | The text displayed on the button |
InstallationBASH
npx siddcn add button-simpleUsageTSX
import { SimpleButton } from 'siddcn';
export default function App() {
return <SimpleButton label="Click me" />;
}