@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 666 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="M13 18V20H17V22H7V20H11V18H2.9918C2.44405 18 2 17.5511 2 16.9925V4.00748C2 3.45107 2.45531 3 2.9918 3H21.0082C21.556 3 22 3.44892 22 4.00748V16.9925C22 17.5489 21.5447 18 21.0082 18H13Z"/>
</Svg>);
};
Icon.displayName = 'ComputerFill';
/**
* Remix Icon: Computer Fill
* @see {@link https://remixicon.com/icon/computer-fill Remix Icon Docs}
*/
export const ComputerFill = memo(Icon);