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

const FavouriteColoured20: FC<ADSIcon>  = 
    ({fill, size = '1.25rem', ...rest}) => (<svg aria-hidden="true" width={size} height={size} {...rest} fill={fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20">
  <path fill-rule="evenodd" d="M9.806 4.676A4.384 4.384 0 1 0 3.352 10.6l5.94 5.94a1 1 0 0 0 1.415 0l5.94-5.94a4.384 4.384 0 1 0-6.454-5.924l-.193.23-.194-.23Z"/>
</svg>
)
export default FavouriteColoured20