UNPKG

react-native-ui-lib

Version:

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

9 lines (8 loc) 247 B
import React from 'react'; import { HSLA } from './types'; export interface SliderContextType { value?: HSLA; setValue?: (value: HSLA) => void; } declare const SliderContext: React.Context<SliderContextType>; export default SliderContext;