react-native-paper
Version:
Material design for React Native
23 lines • 806 B
TypeScript
import type { ColorValue } from 'react-native';
import type { InternalTheme } from '../../types';
type BaseProps = {
theme: InternalTheme;
isOutlined: boolean;
disabled?: boolean;
};
export declare const getChipColors: ({ isOutlined, theme, selectedColor, showSelectedOverlay, customBackgroundColor, disabled, customRippleColor, }: BaseProps & {
customBackgroundColor?: ColorValue | undefined;
disabled?: boolean | undefined;
showSelectedOverlay?: boolean | undefined;
selectedColor?: string | undefined;
customRippleColor?: ColorValue | undefined;
}) => {
borderColor: string;
textColor: string;
iconColor: string;
rippleColor: ColorValue;
backgroundColor: string;
selectedBackgroundColor: string;
};
export {};
//# sourceMappingURL=helpers.d.ts.map