UNPKG

react-native-ui-lib

Version:

[![SWUbanner](https://raw.githubusercontent.com/vshymanskyy/StandWithUkraine/main/banner-direct.svg)](https://stand-with-ukraine.pp.ua)

11 lines (10 loc) 433 B
import React from 'react'; import { HSLColor } from './ColorPickerPresenter'; import { ColorPickerDialogProps } from './ColorPickerDialog'; type SlidersProps = Pick<ColorPickerDialogProps, 'migrate'> & { keyboardHeight: number; color: HSLColor; onSliderValueChange: (value: HSLColor) => void; }; declare const ColorPickerDialogSliders: (props: SlidersProps) => React.JSX.Element; export default ColorPickerDialogSliders;