Phoenixd.tsx raw

   1  export const PhoenixdIcon = () => {
   2    return (
   3      <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none">
   4        <path
   5          fill="currentColor"
   6          d="M5.333 1.5v2.667h13.334V1.5H5.333Zm13.334 2.667v2.666H16V9.5h5.333V4.167h-2.666ZM21.333 9.5v2.667H24V9.5h-2.667Zm0 2.667H16v2.666h2.667V17.5h2.666v-5.333ZM18.667 17.5H5.333v2.667h13.334V17.5ZM5.333 20.167H2.667V9.5H0v13.333h5.333v-2.666ZM2.667 9.5h2.666V4.167H2.667V9.5Z"
   7        />
   8      </svg>
   9    );
  10  };
  11