@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 618 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="m15.936 2.501 5.565 5.565v7.87l-5.565 5.565h-7.87l-5.565-5.565v-7.87l5.565-5.565zm-.828 2H8.894L4.501 8.894v6.214L8.894 19.5h6.214l4.393-4.393V8.894z"/>
</Svg>);
});
Icon.displayName = 'OctagonLine';
/**
* Remix Icon: Octagon Line
* @see {@link https://remixicon.com/icon/octagon-line Remix Icon Docs}
*/
export const OctagonLine = Icon;