import React from 'react'; import { StyleSheet, View } from 'react-native'; import type { Theme, $RemoveChildren, Color } from '../../types'; import { withTheme } from '../../core/theming'; import { Button, Divider, ArrowIcon } from '../..'; type Props = $RemoveChildren & { color?: Color; theme: Theme; }; const previewHeight = 20; const ColorButton = ({ disabled, color, theme, ...rest }: Props) => { return ( ); }; const styles = StyleSheet.create({ row: { flexDirection: 'row', }, colorPreview: { width: 36, marginRight: 6, }, dropdownIcon: { alignSelf: 'center', marginRight: 2, marginLeft: 4, }, }); export default withTheme(ColorButton);