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

const StarFilled64: 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="M32.908 6.247a1 1 0 0 0-1.816 0l-7.772 16.84-18.128 2.59A1 1 0 0 0 4.7 27.44l14.158 11.583-5.153 18.034a1 1 0 0 0 1.486 1.127L32 47.84l16.81 10.344a1 1 0 0 0 1.485-1.127l-5.153-18.034L59.3 27.44a1 1 0 0 0-.492-1.763l-18.128-2.59-7.772-16.84Z"/>
</svg>
)
export default StarFilled64