UNPKG

fabri-pix

Version:

A React image editor using Fabric.js

9 lines (8 loc) 242 B
import { default as React } from 'react'; interface IProps { value: string; onChange: (color: string) => void; onChangeComplete?: (color: string) => void; } declare const ColorPicker: React.FC<IProps>; export default ColorPicker;