UNPKG

react-feather

Version:
45 lines (40 loc) 956 B
import React from 'react'; import PropTypes from 'prop-types'; const Volume2 = props => { const { color, size, ...otherProps } = props; return ( <svg xmlns="http://www.w3.org/2000/svg" width={size} height={size} viewBox="0 0 24 24" {...otherProps} > <polygon points="11 5 6 9 2 9 2 15 6 15 11 19 11 5" fill="none" stroke={color} strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" /> <path d="M19.07 4.93a10 10 0 0 1 0 14.14M15.54 8.46a5 5 0 0 1 0 7.07" fill="none" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" /> </svg> ); }; Volume2.propTypes = { color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Volume2.defaultProps = { color: 'currentColor', size: '24', }; export default Volume2;