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

const StarFilled24: 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">
  <g clip-path="url(#a)">
    <path fill-rule="evenodd" d="M12.908 2.08a1 1 0 0 0-1.816 0L8.32 8.088l-6.461.923a1 1 0 0 0-.492 1.764l4.99 4.084-1.819 6.367a1 1 0 0 0 1.486 1.127L12 18.674l5.976 3.678a1 1 0 0 0 1.486-1.127l-1.82-6.367 4.991-4.084a1 1 0 0 0-.492-1.764l-6.461-.923-2.772-6.006Z"/>
  </g>
  <defs>
    <clipPath id="a">
      <rect width="24" height="24" fill="#fff"/>
    </clipPath>
  </defs>
</svg>
)
export default StarFilled24