import { ColorName } from '@emotion/react'; import { SvgProps } from 'react-native-svg'; export type IconColorVariantsType = ColorName; export type IconProps = SvgProps & { colorVariant?: IconColorVariantsType; };