react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 451 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgSubscript2 = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M11 6v13H9V6H3V4h14v2zm8.55 10.58a.8.8 0 1 0-1.32-.36l-1.154.33A2.001 2.001 0 1 1 21 16c0 .573-.24 1.09-.626 1.454L18.744 19H21v1h-4v-1z" />
</Svg>
);
export default SvgSubscript2;