react-native-remix-icon
Version:
Remix Icon for React Native
14 lines (11 loc) • 550 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgSingleQuotesL(props) {
return (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path fill="none" d="M0 0h24v24H0z" />
<Path d="M9.583 17.321C8.553 16.227 8 15 8 13.011c0-3.5 2.457-6.637 6.03-8.188l.893 1.378c-3.335 1.804-3.987 4.145-4.247 5.621.537-.278 1.24-.375 1.929-.311 1.804.167 3.226 1.648 3.226 3.489a3.5 3.5 0 01-3.5 3.5 3.871 3.871 0 01-2.748-1.179z" />
</Svg>
);
}
export default SvgSingleQuotesL;