@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 651 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 1ZM5.49388 7.0777L13.0001 11.4234V20.11L19.5 16.3469V7.65311L12 3.311L5.49388 7.0777ZM4.5 8.81329V16.3469L11.0001 20.1101V12.5765L4.5 8.81329Z"/>
</Svg>);
};
Icon.displayName = 'Box1Line';
/**
* Remix Icon: Box 1 Line
* @see {@link https://remixicon.com/icon/box-1-line Remix Icon Docs}
*/
export const Box1Line = memo(Icon);