import React, { FC } from 'react';
import { ADSIcon } from "../../icons.types";

const Sample64: FC<ADSIcon>  = 
    ({fill, size = '4rem', ...rest}) => (<svg aria-hidden="true" width={size} height={size} {...rest} fill={fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64">
  <path fill-rule="evenodd" d="M19.735 8.74a1.5 1.5 0 0 0-1.217 1.737l1.39 7.878a1.5 1.5 0 0 0 1.737 1.217l1.15-.203 5.296 30.037a9.5 9.5 0 0 0 11.005 7.706 9.5 9.5 0 0 0 7.706-11.005L41.506 16.07l1.148-.202a1.5 1.5 0 0 0 1.217-1.738l-1.39-7.878a1.5 1.5 0 0 0-1.737-1.217L19.735 8.739Zm2.866 7.617-.868-4.924L39.788 8.25l.868 4.924-18.055 3.183Zm3.148 2.492L27.892 31h8.558a.997.997 0 0 1 .67-.448l3.776-.666-.58-3.283-3.775.666a1 1 0 0 1-.347-1.97l3.775-.666-1.418-8.042L25.75 18.85Zm5.296 30.036L28.245 33h13.2l.377 2.139-3.776.666a1 1 0 0 0 .347 1.97l3.776-.667.579 3.283-3.776.666a1 1 0 1 0 .347 1.97l3.776-.666.753 4.267a6.5 6.5 0 0 1-12.803 2.257Z"/>
</svg>
)
export default Sample64