// import dependencies
import React from 'react';
/**
* icon heart
*
* @param props
* @returns
*/
const IconTick = (props = {}) => {
// filled
const { filled, ...rest } = props;
// return jsx
return filled ? (
) : (
);
};
/**
* icon heart
*/
export default IconTick;