@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 598 B
JavaScript
import { memo } from 'react';
import { Svg, Path } from 'react-native-svg';
const Icon = (props) => {
const { color = 'black', size = 24, ...otherProps } = props;
return (<Svg viewBox="0 0 24 24" fill={color} height={size} width={size} {...otherProps}>
<Path d="M17.5 2.5L23 12L17.5 21.5H6.5L1 12L6.5 2.5H17.5ZM16.3469 4.5H7.65311L3.311 12L7.65311 19.5H16.3469L20.689 12L16.3469 4.5Z"/>
</Svg>);
};
Icon.displayName = 'HexagonLine';
/**
* Remix Icon: Hexagon Line
* @see {@link https://remixicon.com/icon/hexagon-line Remix Icon Docs}
*/
export const HexagonLine = memo(Icon);