@iconscout/react-unicons-solid
Version:
4,500+ vector solid icons as easy to use React Components
28 lines (24 loc) • 1.02 kB
JavaScript
import React from 'react';
import PropTypes from 'prop-types';
const UisStethoscopeAlt = (props) => {
const { color, size, ...otherProps } = props
return React.createElement('svg', {
xmlns: 'http://www.w3.org/2000/svg',
width: size,
height: size,
viewBox: '0 0 24 24',
fill: color,
...otherProps
}, React.createElement('path', {
d: 'M21.8,10c-0.4-1.2-1.6-2-2.8-2c-1.7,0-3,1.3-3,3c0,1.3,0.8,2.4,2,2.8v1.7c0,2.5-2,4.5-4.5,4.5S9,18,9,15.5v-1l3.1-2.5C13.3,11,14,9.6,14,8.1V3c0-0.6-0.4-1-1-1h-2c-0.6,0-1,0.4-1,1s0.4,1,1,1h1v4.1c0,0.9-0.4,1.8-1.1,2.3L8,12.7l-2.9-2.3C4.4,9.9,4,9,4,8.1V4h1c0.6,0,1-0.4,1-1S5.6,2,5,2H3C2.4,2,2,2.4,2,3v5.1c0,1.5,0.7,3,1.9,3.9L7,14.5v1c0,3.6,2.9,6.5,6.5,6.5s6.5-2.9,6.5-6.5v-1.7C21.6,13.3,22.4,11.6,21.8,10z'
}));
};
UisStethoscopeAlt.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
UisStethoscopeAlt.defaultProps = {
color: 'currentColor',
size: '24',
};
export default UisStethoscopeAlt;