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