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

const Pantone24: 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="M1.134 7.5A1 1 0 0 1 1.5 6.134l6.928-4a1 1 0 0 1 1.366.366L10.66 4H16a1 1 0 0 1 1 1v.381l4.428 2.557a1 1 0 0 1 .366 1.366l-4.036 6.99.036.063a1 1 0 0 1-.366 1.366l-6.928 4a1 1 0 0 1-1.366-.366l-8-13.857ZM15 11.517 11.815 6H15v5.517ZM3.366 7.367l7 12.123 5.196-3-7-12.124-5.196 3ZM17 7.69v5.917l2.562-4.438L17 7.69ZM11 15a.5.5 0 1 1 1 0 .5.5 0 0 1-1 0Zm.5-1.5a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3Z"/>
</svg>
)
export default Pantone24