@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
14 lines (13 loc) • 615 B
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const OctagonLine = /* @__PURE__ */ memo(function OctagonLine(_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>);
});
/**
* Remix Icon: Octagon Line
* @see {@link https://remixicon.com/icon/octagon-line Remix Icon Docs}
*/
export { OctagonLine };