@nant-design/nant-icons
Version:
12 lines (8 loc) • 681 B
JSX
import React from 'react';
export const GiftOutline = ({fill="currentColor",...other}) => {
return <svg width='1.33em' height='1.33em' fill={fill} viewBox="0 0 512 512" {...other}>
<path d="M256 104v56h56a56 56 0 1 0-56-56Zm0 0v56h-56a56 56 0 1 1 56-56Z" fill="none" stroke={fill} strokeLinecap="round" strokeMiterlimit="10" strokeWidth="32"/>
<rect x="64" y="160" width="384" height="112" rx="32" ry="32" fill="none" stroke={fill} strokeLinecap="round" strokeLinejoin="round" strokeWidth="32"/>
<path d="M416 272v144a48 48 0 0 1-48 48H144a48 48 0 0 1-48-48V272m160-112v304" fill="none" stroke={fill} strokeLinecap="round" strokeLinejoin="round" strokeWidth="32"/>
</svg>;
};