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

const FavouriteColoured48: 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="M22.463 12.124C19.02 8.035 12.815 7.77 9.035 11.55a9.122 9.122 0 0 0 0 12.9l14.257 14.257a1 1 0 0 0 1.414 0l14.257-14.256a9.122 9.122 0 0 0 0-12.901c-3.78-3.78-9.985-3.515-13.428.574l-1.536 1.824-1.536-1.824Z"/>
</svg>
)
export default FavouriteColoured48