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