kalp-ui-library
v0.0.4
Published
A collection of reusable, customizable, and accessible UI components built with React. This library provides basic and advanced UI components to help developers quickly build React-based web applications.
Readme
Kalp UI Library
A collection of reusable, customizable, and accessible UI components built with React. This library provides basic and advanced UI components to help developers quickly build React-based web applications.
🚀 Installation
You can easily install kalp-ui-library using npm or yarn:
With npm
npm install kalp-ui-libraryWith yarn
yarn add kalp-ui-libraryCSS
import 'kalp-ui-library/dist/kalp-ui-library.css'; //Put this in your index.tsx or Application main file🧰 Usage
Once installed, you can start using the components from kalp-ui-library in your React application.
Example: Using the Button Component
import React from 'react';
import { Button } from 'kalp-ui-library';
function App() {
return (
<div>
<Button title="Click Me" onClick={() => alert('Button clicked!')} />
</div>
);
}
export default App;