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