Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | 137x 59x | interface IconProps {
height?: number;
width?: number;
gradient?: boolean;
isMenu?: boolean;
stroke?: string;
fill?: string;
}
const PlusIcon = ({
width = 45,
height = 45,
stroke = "#B8B8B8",
}: IconProps) => {
return (
<svg
width={width}
height={height}
viewBox="0 0 45 45"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M22.6801 11.2859V34.0731M11.8281 22.6809H13.0943H14.3605M19.0626 22.6809H34.6158"
stroke={stroke}
strokeWidth="1.80851"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
)
}
export default PlusIcon;
|