@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 587 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 1L21.5 6.5V17.5L12 23L2.5 17.5V6.5L12 1ZM4.5 7.65311V7.65788L12 12V20.689L19.5 16.3469V7.65311L12 3.311L4.5 7.65311Z"/>
</Svg>);
};
Icon.displayName = 'Box2Line';
/**
* Remix Icon: Box 2 Line
* @see {@link https://remixicon.com/icon/box-2-line Remix Icon Docs}
*/
export const Box2Line = memo(Icon);