UNPKG

@storybook/addon-ondevice-controls

Version:

Display storybook controls on your device.

11 lines (10 loc) 412 B
import { ViewStyle } from 'react-native'; import { ColorFormats } from 'tinycolor2'; interface HoloColorPickerProps { defaultColor: string; oldColor?: string; onColorChange: (color: ColorFormats.HSV) => void; style?: ViewStyle; } export declare function HoloColorPicker({ defaultColor, oldColor, onColorChange, style, }: HoloColorPickerProps): import("react/jsx-runtime").JSX.Element; export {};