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

const Star48: 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 3.5a1.5 1.5 0 0 1 1.362.871l5.658 12.26 13.192 1.884a1.5 1.5 0 0 1 .738 2.646l-10.237 8.375 3.73 13.052a1.5 1.5 0 0 1-2.23 1.69L24 36.76l-12.214 7.517a1.5 1.5 0 0 1-2.228-1.69l3.729-13.052L3.05 21.161a1.5 1.5 0 0 1 .738-2.646l13.192-1.884 5.658-12.26A1.5 1.5 0 0 1 24 3.5Zm0 5.08-4.638 10.049-.342.74-.808.116-10.619 1.517 8.357 6.837.763.625-.27.948-2.94 10.286 9.71-5.976.787-.483.786.483 9.71 5.976-2.938-10.286-.271-.948.763-.625 8.357-6.837-10.62-1.517-.807-.116-.342-.74L24 8.579Z"/>
</svg>
)
export default Star48