UNPKG

react-native-ui-lib

Version:

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

10 lines (9 loc) 398 B
import React from 'react'; import { ColorPickerDialogProps } from './ColorPickerDialog'; type HeaderProps = Pick<ColorPickerDialogProps, 'doneButtonColor' | 'accessibilityLabels' | 'testID'> & { valid: boolean; onDismiss: () => void; onDonePressed: () => void; }; declare const ColorPickerDialogHeader: (props: HeaderProps) => React.JSX.Element; export default ColorPickerDialogHeader;