@nagendrayakkaladevara/react-button-component
v1.0.1
Published
A customizable button component for React and TypeScript
Downloads
3
Maintainers
Readme
@nagendrayakkaladevara/react-button-component
A customizable button component for React and TypeScript.
Installation
Install the package using npm:
npm install @nagendrayakkaladevara/react-button-component
Usage
import React from 'react';
import { Button } from '@nagendrayakkaladevara/react-button-component';
import '@nagendrayakkaladevara/react-button-component/dist/Button.css';
const App = () => {
return (
<div>
<Button variant="primary" size="large" onClick={() => alert('Button clicked!')}>
Click Me
</Button>
</div>
);
};
export default App;
Features
- Customizable Styles: Choose from different variants (
'primary'
,'secondary'
,'danger'
,'success'
) and sizes ('small'
,'medium'
,'large'
). - Event Handling: Easily handle click events with the
onClick
prop. - CSS Customization: Include the provided CSS file or customize styles further using your own CSS.
Props
Button Props
variant
: Specifies the button's style variant.size
: Specifies the button's size.onClick
: Event handler for button click events.