JSFiddle - React, Tailwind, and code Playground

HTML

<script src="https://code.jquery.com/jquery-3.4.1.slim.js"></script>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.js"></script>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.css">
<!-- 
  https://stackoverflow.com/questions/70448619/masking-clipping-an-image-with-a-custom-svg-shape/70450910
  Devlab example: https://www.devlab.career/the-lab
-->

<div class="container">
  <div class="row">
    <div class="col">
      <div class="svg-image"><svg viewBox="0 0 750 750" preserveAspectRatio="xMidYMid meet">
          <g>
            <path fill="#ffffff" d="M0,750c0,0,0,0,0-750h750c0,250,0,500,0,750C500,750,250,750,0,750z M439.8,709.6c8.3-0.7,24.2-1.2,39.9-3.5 c25.5-3.7,50.4-9.9,74.2-19.8c24-10,46.7-22.2,66.1-39.6c15.8-14.2,26.6-32.4,36.5-51c13.2-24.7,23.4-50.7,31.4-77.5 c11.1-37.6,17.5-76.1,18.3-115.3c0.3-15.8-1.2-31.8-2.9-47.6c-4.3-41.8-16.8-81.1-37.1-117.9c-24.9-45.3-59.8-81.4-101.7-111 C532,103.4,496.7,85.8,459.9,71c-39.4-15.8-79.7-23.5-122.2-17.5c-33,4.7-63.7,15.8-92.4,32.4c-44.9,26-81.8,61.2-113.1,102.2 c-23.7,31.1-42.8,65.1-58.5,100.9c-14.8,33.6-23,68.4-19.1,105.5c2.5,23.7,8.9,46.2,18.8,67.8c14.8,32,34.9,60.6,57.4,87.6 c21.4,25.7,44.2,49.9,69.7,71.6c27.6,23.5,57.8,42.9,91,57.7C336.3,699.1,383.2,709.2,439.8,709.6z"></path>
            <path fill="#339999" d="M439.8,709.6c-56.6-0.4-103.5-10.4-148.3-30.3c-33.2-14.7-63.3-34.2-91-57.7c-25.5-21.7-48.3-46-69.7-71.6 c-22.6-27-42.6-55.6-57.4-87.6c-9.9-21.5-16.4-44-18.8-67.8c-3.8-37.1,4.4-71.9,19.1-105.5c15.7-35.8,34.8-69.8,58.5-100.9 c31.3-41,68.2-76.2,113.1-102.2c28.7-16.6,59.4-27.7,92.4-32.4c42.5-6,82.8,1.6,122.2,17.5c36.8,14.8,72,32.4,104.5,55.3...

CSS

.col {
  border: solid 1px #6c757d;
  padding: 10px;
}

.svg-image {
    position: relative;
    width: 100%;
    overflow: hidden;
}

svg {
    overflow: hidden;
    width: 100%;
}

.svg-image img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    z-index: -1;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.svg-image.clip {
  height: 100%;
}

.svg-image.clip img {
  clip-path: path('M451.715 154.05C451.79 152.468 451.828 150.88 451.828 149.286C451.828 66.8376 350.683 0 225.914 0C101.145 0 0 66.8376 0 149.286C0 150.88 0.0378114 152.468 0.112874 154.05H0V536H451.828V154.05H451.715Z');  
}