react-native-remix-icon
Version:
Remix Icon for React Native
14 lines (11 loc) • 519 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgCharacterRecognitionLine(props) {
return (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path fill="none" d="M0 0h24v24H0z" />
<Path d="M5 15v4h4v2H3v-6h2zm16 0v6h-6v-2h4v-4h2zm-8.001-9l4.4 11h-2.155l-1.201-3h-4.09l-1.199 3H6.6l4.399-11h2zm-1 2.885L10.752 12h2.492l-1.245-3.115zM9 3v2H5v4H3V3h6zm12 0v6h-2V5h-4V3h6z" />
</Svg>
);
}
export default SvgCharacterRecognitionLine;