mirror of
https://github.com/Qortal/q-trade.git
synced 2025-06-14 18:31:22 +00:00
25 lines
1.1 KiB
XML
25 lines
1.1 KiB
XML
import { IconTypes } from "./IconTypes";
|
|
|
|
export const HomeSVG: React.FC<IconTypes> = ({
|
|
color,
|
|
height,
|
|
width,
|
|
className,
|
|
}) => {
|
|
return (
|
|
<svg
|
|
className={className}
|
|
width={width}
|
|
height={height}
|
|
viewBox="0 0 21 19"
|
|
fill={color}
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
>
|
|
<path
|
|
d="M3.64729 18.9972C3.27267 18.9972 2.96761 18.685 2.96761 18.2955V10.7916H1.18276H1.18009C0.527159 10.7916 0 10.2446 0 9.57322C0 9.18918 0.173937 8.84659 0.44153 8.6228L2.75086 6.5562V3.11371C2.75086 2.71034 3.06662 2.38432 3.45463 2.38432H4.91569C5.30637 2.38432 5.62213 2.71034 5.62213 3.11371V3.98124L9.72701 0.298386C10.1712 -0.099462 10.8295 -0.099462 11.2737 0.298386L20.594 8.65319C20.9659 8.98749 21.0971 9.52348 20.9258 10.0015C20.7519 10.4767 20.313 10.7944 19.8206 10.7944H18.0331V18.2982C18.0331 18.6878 17.7281 19 17.3534 19H13.3368V13.5406C13.3368 12.7698 12.7321 12.1454 11.9855 12.1454H9.01254C8.26595 12.1454 7.66119 12.7698 7.66119 13.5406V18.9945H3.64729V18.9972Z"
|
|
fill="#464646"
|
|
/>
|
|
</svg>
|
|
);
|
|
};
|