import { RiCheckLine } from '@remixicon/react' import cn from '@/utils/classnames' const Icon = ({ className, src, installed = false, }: { className?: string src: string installed?: boolean }) => { return (
{installed &&
}
) } export default Icon