@zh5/react-native-remix-icon
Version:
Remix Icon for React Native
9 lines (8 loc) • 512 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgProhibitedLine = props => (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path d="M7.094 5.68 18.32 16.906A8 8 0 0 0 7.094 5.68Zm9.812 12.64L5.68 7.094A8 8 0 0 0 16.906 18.32ZM4.929 4.929A9.972 9.972 0 0 1 12 2c5.523 0 10 4.477 10 10a9.972 9.972 0 0 1-2.929 7.071A9.972 9.972 0 0 1 12 22C6.477 22 2 17.523 2 12a9.972 9.972 0 0 1 2.929-7.071Z" />
</Svg>
);
export default SvgProhibitedLine;