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