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