@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 573 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="M13 8v8a3 3 0 0 1-3 3H7.83a3.001 3.001 0 1 1 0-2H10a1 1 0 0 0 1-1V8a3 3 0 0 1 3-3h3V2l5 4-5 4V7h-3a1 1 0 0 0-1 1"/>
</Svg>);
});
Icon.displayName = 'GuideFill';
/**
* Remix Icon: Guide Fill
* @see {@link https://remixicon.com/icon/guide-fill Remix Icon Docs}
*/
export const GuideFill = Icon;