@nant-design/nant-icons
Version:
14 lines (9 loc) • 683 B
JSX
import React from 'react';
export const DesktopOutline = ({fill="currentColor",...other}) => {
return <svg width='1.33em' height='1.33em' fill={fill} viewBox="0 0 512 512" {...other}>
<rect x="32" y="64" width="448" height="320" rx="32" ry="32" fill="none" stroke={fill} strokeLinejoin="round" strokeWidth="32"/>
<path d="m304 448-8-64h-80l-8 64h96z" stroke={fill} strokeLinecap="round" strokeLinejoin="round" strokeWidth="32"/>
<path d="M368 448H144" fill="none" stroke={fill} strokeLinecap="round" strokeLinejoin="round" strokeWidth="32"/>
<path d="M32 304v48a32.09 32.09 0 0 0 32 32h384a32.09 32.09 0 0 0 32-32v-48Zm224 64a16 16 0 1 1 16-16 16 16 0 0 1-16 16Z"/>
</svg>;
};