import React from 'react'; import { Path, Svg } from 'react-native-svg'; import { IconProps } from './utils/base'; export const InfoTooltip = ({ fill, height, pathFill, size, stroke, width, ...rest }: IconProps) => { const color = fill ?? stroke ?? pathFill ?? 'black'; return ( ); };