import { StyleProp, ViewStyle } from 'react-native'

export type IconWeight = 'regular' | 'fill' | 'bold'

export type IconSvgProps = {
  color?: string
  size?: number | string
  style?: StyleProp<ViewStyle>
}

export type IconProps = IconSvgProps & {
  weight?: IconWeight
  mirrored?: boolean
}
