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

const Sample48: FC<ADSIcon>  = 
    ({fill, size = '3rem', ...rest}) => (<svg aria-hidden="true" width={size} height={size} {...rest} fill={fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48">
  <path fill-rule="evenodd" d="M14.736 6.185a1.5 1.5 0 0 0-1.216 1.738l1.041 5.909a1.5 1.5 0 0 0 1.738 1.216l.493-.087 3.907 22.159a7.5 7.5 0 0 0 14.772-2.605l-3.907-22.158.492-.087a1.5 1.5 0 0 0 1.217-1.738L32.23 4.623a1.5 1.5 0 0 0-1.738-1.216L14.736 6.185Zm2.52 5.649-.522-2.955 12.803-2.257.52 2.954-12.802 2.258Zm2.49 2.607 1.51 8.56h5.957a.996.996 0 0 1 .584-.334l2.462-.434-.347-1.97-2.463.435a1 1 0 1 1-.347-1.97l2.462-.434-.955-5.416-8.863 1.563Zm3.907 22.158L21.608 25h9.139l.207 1.173-2.463.434a1 1 0 1 0 .347 1.97l2.463-.434.347 1.97-2.462.433a1 1 0 0 0 .347 1.97l2.463-.434.52 2.954a4.5 4.5 0 0 1-8.863 1.563Z"/>
</svg>
)
export default Sample48