react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 443 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgCharacterRecognitionFill = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M20.998 3v18h-18V3zm-8.001 3h-2L6.598 17h2.154l1.199-3h4.09l1.201 3h2.155zm-1 2.885L13.242 12H10.75z" />
</Svg>
);
export default SvgCharacterRecognitionFill;