@zh5/react-native-remix-icon
Version:
Remix Icon for React Native
9 lines (8 loc) • 401 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgCreativeCommonsNdLine = props => (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path d="M8 9h8v2H8V9Zm0 6v-2h8v2H8Zm-6-3C2 6.477 6.477 2 12 2s10 4.477 10 10-4.477 10-10 10S2 17.523 2 12Zm10-8a8 8 0 1 0 0 16 8 8 0 0 0 0-16Z" />
</Svg>
);
export default SvgCreativeCommonsNdLine;