import PropTypes from 'prop-types' import React, { memo } from 'react' import { Defs, Ellipse, G, Line, LinearGradient, Path, Polygon, Polyline, RadialGradient, Rect, Stop, Svg, Symbol, Text, Use, Circle as _Circle, } from 'react-native-svg' import { IconProps } from '../IconProps' import { themed } from '../themed' const Icon = (props) => { const { color = 'black', size = 24, ...otherProps } = props return ( ) } Icon.displayName = 'Volume2' export const Volume2 = memo(themed(Icon))