react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 526 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgCopyrightFill = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M12 2c5.52 0 10 4.48 10 10s-4.48 10-10 10S2 17.52 2 12 6.48 2 12 2m0 5c-2.76 0-5 2.24-5 5s2.24 5 5 5a5 5 0 0 0 4.288-2.428l-1.715-1.028A3 3 0 1 1 12 9c1.093 0 2.05.584 2.573 1.457l1.715-1.03A5 5 0 0 0 12 7" />
</Svg>
);
export default SvgCopyrightFill;