[WEB-1730] chore: project intake (#5140)

* chore: intake icon added

* chore: project inbox updated to intake in app sidebar and feature settings

* chore: intake icon added

* chore: project intake

* chore: project intake empty state asset updated
This commit is contained in:
Anmol Singh Bhatia 2024-07-16 15:21:03 +05:30 committed by GitHub
parent cd85a9fe09
commit e4d6e5e1af
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
31 changed files with 56 additions and 27 deletions

View file

@ -22,3 +22,4 @@ export * from "./side-panel-icon";
export * from "./transfer-icon";
export * from "./info-icon";
export * from "./dropdown-icon";
export * from "./intake";

View file

@ -0,0 +1,22 @@
import * as React from "react";
import { ISvgIcons } from "./type";
export const Intake: React.FC<ISvgIcons> = ({ className = "text-current", ...rest }) => (
<svg
viewBox="0 0 16 16"
className={`${className}`}
stroke="currentColor"
fill="none"
xmlns="http://www.w3.org/2000/svg"
strokeWidth="1.25"
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
>
<path d="M12.1599 3.59961V9.60688L8.04358 12.0796V6.04325L12.1599 3.59961Z" />
<path d="M5.98547 10.8657V4.82938L10.1018 2.38574" />
<path d="M3.89087 9.60695V3.57059L8.00723 1.12695" />
<path d="M1.06909 8.77051V13.3887C1.06909 14.1814 1.71636 14.8287 2.50909 14.8287H13.4909C14.2836 14.8287 14.9309 14.1814 14.9309 13.3887V8.77051" />
</svg>
);