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