const Database = (props) => (
  <svg
    width={props.width || '1em'}
    height={props.height || '1em'}
    viewBox="0 0 15 15"
    fill="none"
    xmlns="http://www.w3.org/2000/svg"
    role="img"
    {...props}
  >
    <g transform="translate(0,-0.5)">
      <path
        d="M7.5 1.875C4.73875 1.875 2.5 2.68125 2.5 3.675c0 2.6 10 2.6 10 0C12.5 2.68125 10.26125 1.875 7.5 1.875m5 5.46875c0 2.916875-10 2.916875-10 0"
        fill="none"
        stroke="currentColor"
        strokeWidth={1}
        strokeLinecap="round"
        strokeLinejoin="round"
      />
      <path
        d="M2.5 3.75v7.603125c0 2.3625 10 2.3625 10 0V3.75"
        fill="none"
        stroke="currentColor"
        strokeWidth={1}
        strokeLinecap="round"
        strokeLinejoin="round"
      />
    </g>
  </svg>
);

export default Database;
