import * as React from 'react' import { PixelRatio } from 'react-native' import Svg, { Circle, Path } from 'react-native-svg' import colors, { ColorValue } from 'src/styles/colors' interface Props { size?: number color?: ColorValue scaledSize?: number testID?: string } const getSizing = (baseSize: number = 16, maxSize: number = 28) => { return baseSize * PixelRatio.getFontScale() < maxSize ? baseSize * PixelRatio.getFontScale() : maxSize } function InfoIcon({ size = 16, scaledSize = getSizing(size), color = colors.contentPrimary, testID, }: Props) { return ( ) } export default React.memo(InfoIcon)