@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 670 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="M12.0001 2.76001L21.9992 5.996L21.1001 15.464L12.0001 22.3235L2.90012 15.46L2.01074 6.00001L12.0001 2.76001ZM12.0001 3.58535L3.18898 6.43501L12.0001 20.7932L20.8058 6.43501L12.0001 3.58535Z"/>
</Svg>);
};
Icon.displayName = 'OpenbaseFill';
/**
* Remix Icon: Openbase Fill
* @see {@link https://remixicon.com/icon/openbase-fill Remix Icon Docs}
*/
export const OpenbaseFill = memo(Icon);