@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 627 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="M20.5021 5.92225 12 1 3.49793 5.92225 12 10.8445 20.5021 5.92225ZM2.5 7.6555V17.5L11 22.4211V12.5765L2.5 7.6555ZM13 22.4211 21.5 17.5V7.6555L13 12.5765V22.4211Z"/>
</Svg>);
};
Icon.displayName = 'Box3Fill';
/**
* Remix Icon: Box 3 Fill
* @see {@link https://remixicon.com/icon/box-3-fill Remix Icon Docs}
*/
export const Box3Fill = memo(Icon);