@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 667 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="M11.9998 1L18 11H6L11.9998 1ZM13 13.5H21V21.5H13V13.5ZM6.75 22C9.37335 22 11.5 19.8734 11.5 17.25C11.5 14.6266 9.37335 12.5 6.75 12.5C4.12665 12.5 2 14.6266 2 17.25C2 19.8734 4.12665 22 6.75 22Z"/>
</Svg>);
};
Icon.displayName = 'ShapesFill';
/**
* Remix Icon: Shapes Fill
* @see {@link https://remixicon.com/icon/shapes-fill Remix Icon Docs}
*/
export const ShapesFill = memo(Icon);