import {h} from 'preact';

export const CloseIcon = () => (
  <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
    <path
      fill="#FFF"
      fill-rule="evenodd"
      d="M17.414 16l4.95 4.95a1 1 0 1 1-1.414 1.414L16 17.414l-4.95 4.95a1 1 0 1 1-1.414-1.414l4.95-4.95-4.95-4.95a1 1 0 1 1 1.414-1.414l4.95 4.95 4.95-4.95a1 1 0 1 1 1.414 1.414L17.414 16z"
    />
  </svg>
);
