car-robots-library
v0.1.8
Published
[![npm version](https://img.shields.io/npm/v/car-robots-library.svg?color=blue)](https://www.npmjs.com/package/car-robots-library) [![License](https://img.shields.io/badge/license-MIT-blue.svg)](https://raw.githubusercontent.com/dariametelitsa/car-robots-
Downloads
960
Readme
Car Robots Library
A collection of reusable React components for building car-related user interfaces.
Table of Contents
Installation
To install the car-robots-library
, you can use npm or yarn:
pnpm install car-robots-library
Usage
Import the components you need from the library and use them in your React application:
import React from 'react';
import { Button, AnotherComponent } from 'car-robots-library';
const App = () => {
return (
<div>
<Button>Click me</Button>
<AnotherComponent />
</div>
);
};
export default App;
Components
- Button
- Card
- Icon set
- Loader
- Go to top button
- Modal
- Calendar
- Checkbox
- Tabs
Styling
The car-robots-library uses Tailwind CSS for styling. You don't need to install Tailwind CSS separately; the library includes all necessary styles.
To ensure the styles are applied correctly, import the CSS file from the library in your main entry file:
import 'car-robots-library/dist/style.css';
Contact
For any questions or issues, please open an issue on the GitHub repository.
Thank you for using car-robots-library!