import React from 'react' interface InterestProps { /** SVG icon style class name */ isInterested?: boolean size?: string } /** * Trip Interest svg * Usage : Upload Image Icon. * @param props - FR8IconProps * @returns ReactJsxElement -> FR8Svg Icon */ export const InterestSvg: React.FC = (props) => { const { isInterested = false, size = "24" } = props const color = isInterested ? "#008DD8" : "#717171" return ( ) }