assessment-model/src/app/components/PlusIcon.tsx
Khalim Conn-Kowlessar 77e62c36b2 Added portfolio modal
2023-05-26 10:02:45 +01:00

26 lines
498 B
TypeScript

const PlusIcon = ({ color = "black" }: { color: string }) => (
<svg
width="100%"
height="100%"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M12 5V19"
stroke={color}
strokeWidth="2"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M5 12H19"
stroke={color}
strokeWidth="2"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
export default PlusIcon;