https://github.com/tobua/burano
Color Picker for React
https://github.com/tobua/burano
Last synced: 3 months ago
JSON representation
Color Picker for React
- Host: GitHub
- URL: https://github.com/tobua/burano
- Owner: tobua
- Created: 2021-05-27T16:41:08.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2023-09-04T16:39:19.000Z (over 1 year ago)
- Last Synced: 2025-02-16T12:58:08.471Z (3 months ago)
- Language: TypeScript
- Homepage: https://tobua.github.io/burano
- Size: 1.69 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# burano
🎨 Color Picker for React.
## Installation & Usage
```
npm install burano
``````tsx
import React, { useState } from 'react'
import { ColorPicker } from 'burano'export const MyPicker = () => {
const [color, setColor] = useState('#00FF00')return
}
```## Options
```tsx
void} // Handle new color, required.
style={CSSProperties} // Styles applied to wrapper div, optional.
input={boolean} // Show input, default true.
palette={boolean} // Show color palette, default true.
/>
```
![]()