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

const Sample24: FC<ADSIcon>  = 
    ({fill, size = '1.5rem', ...rest}) => (<svg aria-hidden="true" width={size} height={size} {...rest} fill={fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
  <path fill-rule="evenodd" d="M7.325 2.846a1 1 0 0 0-.812 1.159l.521 2.954a1 1 0 0 0 1.159.811l1.91 10.833a4 4 0 0 0 7.879-1.389l-1.91-10.833a1 1 0 0 0 .81-1.158l-.52-2.955a1 1 0 0 0-1.159-.81L7.325 2.845ZM8.83 5.627l-.173-.985L14.566 3.6l.173.985L8.83 5.627Zm1.333 1.796.719 4.077h2.724a.498.498 0 0 1 .293-.166l.984-.174-.173-.985-.986.174a.5.5 0 1 1-.173-.985l.985-.174-.434-2.461-3.94.694Zm1.91 10.833L11.058 12.5h4.062l.11.63-.985.174a.5.5 0 1 0 .174.984l.985-.173.174.985-.985.173a.5.5 0 1 0 .174.985l.985-.174.26 1.477a2 2 0 0 1-3.94.695Z"/>
</svg>
)
export default Sample24