@zh5/react-native-remix-icon
Version:
Remix Icon for React Native
9 lines (8 loc) • 393 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" viewBox="0 0 24 24" {...props}>
<Path d="M11 7v13H9V7H3V5h12v2h-4Zm8.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-.627 1.454L18.744 9H21v1h-4V9l2.55-2.42Z" />
</Svg>
);
export default SvgSuperscript2;