interactive / components /icons /WorkIcon.tsx
caustino's picture
Upload 20 files
bb8c446 verified
Raw
History Blame Contribute Delete
594 Bytes
import React from 'react';
export const WorkIcon: React.FC<React.SVGProps<SVGSVGElement>> = (props) => (
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" strokeWidth={1.5} stroke="currentColor" {...props}>
<path strokeLinecap="round" strokeLinejoin="round" d="M20.25 14.15v4.075c0 1.313-.964 2.45-2.25 2.654-.513.076-1.036.146-1.57.196-1.037.05-2.092.08-3.15.08-1.058 0-2.113-.03-3.15-.08-.534-.05-1.057-.12-1.57-.196-1.286-.204-2.25-1.341-2.25-2.654V14.15M15.75 7.5l-3.75 3.75-3.75-3.75M15.75 7.5V4.5c0-1.5-1.5-3-3.75-3S8.25 3 8.25 4.5v3" />
</svg>
);