react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 643 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgCreativeCommonsZeroFill = 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 4c-2.761 0-5 2.686-5 6s2.239 6 5 6 5-2.686 5-6-2.239-6-5-6m2.325 3.472c.422.69.675 1.57.675 2.528 0 2.21-1.343 4-3 4-.441 0-.86-.127-1.237-.355zM12 8c.441 0 .86.127 1.237.355l-3.562 6.173C9.253 13.838 9 12.958 9 12c0-2.21 1.343-4 3-4" />
</Svg>
);
export default SvgCreativeCommonsZeroFill;