@omtanke/react-material-icons
Version:
Google Fonts - Material Icons
20 lines (18 loc) • 536 B
JavaScript
const SvgHeightRound = (props) => {
return (
<svg
xmlns='http://www.w3.org/2000/svg'
height='1em'
viewBox='0 0 24 24'
width='1em'
className='svg-icon'
{...props}>
<g fill='none'>
<path d='M0 0h24v24H0z' />
<path d='M0 0h24v24H0z' />
</g>
<path d='M13 6.99h1.79c.45 0 .67-.54.35-.85l-2.79-2.78a.513.513 0 00-.71 0L8.86 6.14c-.32.31-.1.85.35.85H11v10.02H9.21c-.45 0-.67.54-.35.85l2.79 2.78c.2.19.51.19.71 0l2.79-2.78c.32-.31.09-.85-.35-.85H13V6.99z' />
</svg>
);
}
export default SvgHeightRound;