import React from 'react'; interface CheckCircleIconProps extends React.SVGProps { title?: string; } export const CheckCircleIcon: React.FC = ({ title, ...props }) => ( {title && {title}} );