import * as React from 'react'; const SvgComponent = props => ( <svg xmlns="http://www.w3.org/2000/svg" xmlSpace="preserve" style={{ enableBackground: 'new 0 0 10 14', }} viewBox="0 0 10 14" {...props} > <path fill="currentColor" d="M8.33 9.27C6.25 11.55 5 11.38 5 11.38s-1.58-.18-3.25-2.1C0 7.26 0 5.43 0 4.64 0 2.01 2.33 0 5 0c2.75 0 5 2.01 5 4.64 0 1.05.16 2.71-1.67 4.63zM5 3.5c-.92 0-1.67.79-1.67 1.75S4.08 7 5 7c.92 0 1.67-.79 1.67-1.75C6.66 4.29 5.91 3.5 5 3.5zm0 8.75c1.83 0 2.5.35 2.5.87S6.83 14 5 14s-2.5-.35-2.5-.87c0-.44.67-.88 2.5-.88zm0 0" /> </svg> ); export default SvgComponent;