@zh5/react-native-remix-icon
Version:
Remix Icon for React Native
9 lines (8 loc) • 456 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgOpenArmFill = props => (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path d="M12.001 12a5 5 0 1 1 0-10 5 5 0 0 1 0 10Zm6 5v5h-2v-5c0-4.451 2.644-8.285 6.447-10.016l.828 1.82A9.002 9.002 0 0 0 18.001 17Zm-10 0v5h-2v-5A9.002 9.002 0 0 0 .727 8.805l.827-1.821A11.002 11.002 0 0 1 8.001 17Z" />
</Svg>
);
export default SvgOpenArmFill;