import React, { FunctionComponent } from 'react';

interface Props {
}

const Rem: FunctionComponent<Props> = () => {
  return(
    <svg
      version="1.1"
      viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"
      style={{
        fill: 'currentColor',
        height: 13,
      }}
      >
      <path d="m7.0268 3.002c-0.37116 0-0.76667 0.24003-0.96235 0.64648l-6 16c-0.19382 0.51668 0.067532 1.0927 0.58398 1.2871 0.51668 0.19382 1.0927-0.06753 1.2871-0.58398l1.2559-3.3516h7.6172l1.2559 3.3516c0.19441 0.51645 0.77043 0.7778 1.2871 0.58398 0.51645-0.19441 0.7778-0.77043 0.58398-1.2871l-6-16c-0.15537-0.39662-0.49036-0.64648-0.90874-0.64648zm-0.026808 3.8438 3.0586 8.1543h-6.1172zm12 0.1543a1 1 0 0 0-1 1v3h-3a1 1 0 0 0-1 1 1 1 0 0 0 1 1h3v3a1 1 0 0 0 1 1 1 1 0 0 0 1-1v-3h3a1 1 0 0 0 1-1 1 1 0 0 0-1-1h-3v-3a1 1 0 0 0-1-1z"/>
    </svg>
  )
}

export default Rem;
