@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 767 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="M2 12c0 5.523 4.477 10 10 10s10-4.477 10-10S17.523 2 12 2 2 6.477 2 12m14.906 6.32A8 8 0 0 1 5.68 7.094L10 11.414V12.5h1V15h-1v2h4v-1.586zm1.414-1.414L13 11.586V10.5h-1.086l-4.82-4.82A8 8 0 0 1 18.32 16.905M13 14.414V15h.586zM12 9.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3"/>
</Svg>);
});
Icon.displayName = 'InformationOffLine';
/**
* Remix Icon: Information Off Line
* @see {@link https://remixicon.com/icon/information-off-line Remix Icon Docs}
*/
export const InformationOffLine = Icon;