react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 547 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgEditCircleFill = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M16.626 3.129 9.29 10.462 9.3 14.71l4.238-.008 7.331-7.33A9.96 9.96 0 0 1 22 11.996c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10c1.669 0 3.242.409 4.626 1.131m3.86-1.032 1.413 1.414-9.192 9.193-1.412.002-.002-1.416z" />
</Svg>
);
export default SvgEditCircleFill;