Component-wise multiply.
Vector2 Vector2Multiply(Vector2 v1, Vector2 v2) => Vector2(v1.x * v2.x, v1.y * v2.y);