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