import type { PlatformProps } from '../../types'; import type { StyledProps } from '../../../theme/types'; import type { ResponsiveValue } from '../../types/responsiveValue'; import type { SvgProps } from 'react-native-svg'; import type { IColors } from '../../../theme/base/colors'; import type { CustomProps, ThemeComponentSizeType } from '../../types/utils'; export interface InterfaceIconProps extends Omit, StyledProps, PlatformProps { /** * Use @expo/vector-icons */ as?: any; /** * The viewBox of the icon. */ /** * The size of the icon. */ size?: ThemeComponentSizeType<'Icon'>; /** * The color of the icon. */ color?: ResponsiveValue; /** * */ /** * */ children?: JSX.Element[] | JSX.Element; /** * */ name?: string; } export interface IcreateIconProps { /** * The viewBox of the icon. */ viewBox?: string; /** * Path element of the icon. */ path?: JSX.Element[] | JSX.Element; /** * The path of the SVG icon. */ d?: string; } export declare type IIconProps = InterfaceIconProps & CustomProps<'Icon'>;