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