const BiconRows = (props) => (
  <svg
    width={props.width || '1em'}
    height={props.height || '1em'}
    viewBox="0 0 28 28"
    fill="none"
    xmlns="http://www.w3.org/2000/svg"
    role="img"
    {...props}
  >
    <rect
      x={24}
      y={4}
      width={8}
      height={20}
      transform="rotate(90 24 4)"
      fill="currentColor"
    />
    <rect
      x={24}
      y={16}
      width={8}
      height={20}
      transform="rotate(90 24 16)"
      fill="currentColor"
    />
  </svg>
);

export default BiconRows;
