@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 786 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="M3 3H8.20002V6.20004L11.4001 6.20013V9.40015L12.6 9.40018L12.6001 6.2001H15.8V3H21V21H15.8V14.6001L14.6 14.6V17.7999H9.39999V14.6001L8.20002 14.6V21H3V3ZM5 5V19H6.20002V12.5998L11.4 12.6003V15.7999H12.6V12.5998L17.8 12.6003V19H19V5H17.8V8.2001H14.6001L14.6 11.4002L9.40012 11.4001V8.20008L6.20002 8.19999V5H5Z"/>
</Svg>);
};
Icon.displayName = 'MixtralLine';
/**
* Remix Icon: Mixtral Line
* @see {@link https://remixicon.com/icon/mixtral-line Remix Icon Docs}
*/
export const MixtralLine = memo(Icon);