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