UNPKG

react-img-editor-en

Version:
8 lines (7 loc) 212 B
import React from 'react'; interface ColorSettingProps { value?: string; onChange: (color: string) => void; } export default function ColorSetting(props: ColorSettingProps): React.JSX.Element; export {};