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

const StarFilled48: 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="M24.908 4.58a1 1 0 0 0-1.816 0L17.32 17.088 3.859 19.01a1 1 0 0 0-.492 1.764l10.49 8.584-3.818 13.367a1 1 0 0 0 1.485 1.127L24 36.174l12.476 7.678a1 1 0 0 0 1.486-1.127l-3.82-13.367 10.491-8.584a1 1 0 0 0-.492-1.764L30.68 17.087 24.908 4.581Z"/>
</svg>
)
export default StarFilled48