@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 729 B
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const Icon = memo((_props) => {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}>
<Path d="M7.094 5.68 18.32 16.906A8 8 0 0 0 7.094 5.68m9.812 12.64L5.68 7.094A8 8 0 0 0 16.906 18.32M4.929 4.929A9.97 9.97 0 0 1 12 2c5.523 0 10 4.477 10 10a9.97 9.97 0 0 1-2.929 7.071A9.97 9.97 0 0 1 12 22C6.477 22 2 17.523 2 12a9.97 9.97 0 0 1 2.929-7.071"/>
</Svg>);
});
Icon.displayName = 'ProhibitedLine';
/**
* Remix Icon: Prohibited Line
* @see {@link https://remixicon.com/icon/prohibited-line Remix Icon Docs}
*/
export const ProhibitedLine = Icon;