react-bunny-banners
Version:
Reusable React UI components for Bajaj Finance Fixed Deposit features
65 lines (43 loc) • 1.09 kB
Markdown
A collection of React components for creating beautiful banner generation interfaces.
```bash
npm install banner-bunny-components
```
A cute bunny logo component with carrot accent.
```jsx
import { BunnyLogo } from 'banner-bunny-components';
<BunnyLogo />
```
An animated carrot spinner for loading states.
```jsx
import { CarrotSpinner } from 'banner-bunny-components';
<CarrotSpinner />
```
A draggable floating button component.
```jsx
import { DraggableCarrotButton } from 'banner-bunny-components';
<DraggableCarrotButton
onToggle={() => console.log('toggled')}
isUIVisible={true}
imageSrc="🐰🥕" // Optional: custom image or emoji
alt="Toggle UI" // Optional: custom alt text
/>
```
These components are built with Tailwind CSS and require Tailwind to be configured in your project.
```bash
npm install
npm run dev
npm run build
```
MIT