如何将图像居中放置在按钮内

enter image description here

我希望该.svg图像位于自定义样式的按钮内。

.btn-close {
  position: relative;
  height: 30px;
  border: 1px solid #e4e4e4;
  width: 30px;
  display: flex;
  align-items: center;
  margin-top: 1.5rem;
  border-radius: 100%;
  background-color: white;
}

我的.jsx代码:

<button className='btn-close' onClick={onClose}><img src={close}></img></button>