@omtanke/react-material-icons
Version:
Google Fonts - Material Icons
20 lines (18 loc) • 440 B
JavaScript
const SvgStarOutlined = (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 0h24v24H0V0z' />
<path d='M0 0h24v24H0V0z' />
</g>
<path d='M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27z' />
</svg>
);
}
export default SvgStarOutlined;