davis-components
v0.2.77
Published
````md # Davis Components
Downloads
1,210
Readme
# Davis Components
**Davis Components** is a comprehensive library of UI components developed and maintained by the **Davis Team**. It provides a set of reusable and customizable components to help developers build modern and consistent user interfaces efficiently.
## 🚀 Installation
To install Davis Components, use the following command:
```sh
npm install davis-components
```
📖 Usage
Import and use components in your React application as follows:
import { Button } from "davis-components";
function App() {
return (
<div className="flex flex-col gap-4">
{/* Default button */}
<Button title="Click Me" />
{/* Outlined button */}
<Button title="Outlined Button" variant="outlined" />
{/* Text button */}
<Button title="Text Button" variant="text" />
{/* Icon button */}
<Button icon={<FiDownload />} variant="icon" />
{/* Button with icon and text */}
<Button title="Download" icon={<FiDownload />} />
{/* Loading button */}
<Button title="Loading..." loading />
{/* Disabled button */}
<Button title="Disabled" disabled />
</div>
);
}
export default App;
🌐 Official Website
For more information, visit our official website:
⚖️ License
This project is licensed under the GNU General Public License v3.0 (GPL-3.0). You are free to use, modify, and distribute this software under the terms of this license. However, any modified versions must also be released under the same GPL-3.0 license.
📩 Support
For support, feature requests, or bug reports, please contact us at:
© 2025 Davis Team. All rights reserved.
---