JSFiddle - React, Tailwind, and code Playground

HTML

<div class="container">
  <image src="https://cdn.pixabay.com/photo/2014/10/26/14/36/light-bulb-503881_1280.jpg" class="box-image"></image>
  <div class="box-text">
    Text
  </div>
</div>

CSS

.container {
  display: flex;
  flex-direction: row;
  max-width: 80vw;
  max-height: 50vh;
}

.box-image {
  object-fit: cover;
  flex: 1 1 0px;
  width: 100%
}

.box-text {
  flex: 1 1 0px;
  width: 100%
}