mirror of
https://github.com/lemeow125/Ivy-Frontend.git
synced 2025-07-07 21:04:11 +08:00
Readded directories with uppercase
This commit is contained in:
parent
d54e6be430
commit
101a8e8ae6
21 changed files with 737 additions and 0 deletions
35
src/Components/Icons/TotalProductsIcon/TotalProductsIcon.tsx
Normal file
35
src/Components/Icons/TotalProductsIcon/TotalProductsIcon.tsx
Normal file
|
@ -0,0 +1,35 @@
|
|||
import React from "react";
|
||||
|
||||
export interface props {
|
||||
size: number;
|
||||
color: string;
|
||||
}
|
||||
export default function TotalProductsIcon(props: props) {
|
||||
return (
|
||||
<div>
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
className="icon icon-tabler icon-tabler-packages"
|
||||
width={props.size + "vh"}
|
||||
height={props.size + "vh"}
|
||||
viewBox="0 0 24 24"
|
||||
stroke-width="1"
|
||||
stroke={props.color}
|
||||
fill="none"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
>
|
||||
<path stroke="none" d="M0 0h24v24H0z" fill="none"></path>
|
||||
<path d="M7 16.5l-5 -3l5 -3l5 3v5.5l-5 3z"></path>
|
||||
<path d="M2 13.5v5.5l5 3"></path>
|
||||
<path d="M7 16.545l5 -3.03"></path>
|
||||
<path d="M17 16.5l-5 -3l5 -3l5 3v5.5l-5 3z"></path>
|
||||
<path d="M12 19l5 3"></path>
|
||||
<path d="M17 16.5l5 -3"></path>
|
||||
<path d="M12 13.5v-5.5l-5 -3l5 -3l5 3v5.5"></path>
|
||||
<path d="M7 5.03v5.455"></path>
|
||||
<path d="M12 8l5 -3"></path>
|
||||
</svg>
|
||||
</div>
|
||||
);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue