@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 628 B
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const Icon = memo((_props) => {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}>
<Path d="M14 18v2l2 1v1H8l-.004-.996L10 20v-2H2.992A1 1 0 0 1 2 16.992V4.008C2 3.451 2.455 3 2.992 3h18.016c.548 0 .992.449.992 1.007v12.985c0 .557-.455 1.008-.992 1.008zM4 14v2h16v-2z"/>
</Svg>);
});
Icon.displayName = 'MacFill';
/**
* Remix Icon: Mac Fill
* @see {@link https://remixicon.com/icon/mac-fill Remix Icon Docs}
*/
export const MacFill = Icon;