8 lines
579 B
TypeScript
Executable file
8 lines
579 B
TypeScript
Executable file
|
|
import React from 'react';
|
|
|
|
export const ProjectsIcon: 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.47-2.25 2.75h-12c-1.286-.28-2.25-1.437-2.25-2.75V14.15M17.25 6.75v4.5m-3.75-4.5v4.5m-3.75-4.5v4.5m-3.75 0V6.75m11.25 0h-9A2.25 2.25 0 006 9v3c0 1.242 1.008 2.25 2.25 2.25h9A2.25 2.25 0 0019.5 12V9a2.25 2.25 0 00-2.25-2.25h-2.25" />
|
|
</svg>
|
|
);
|