import React from 'react'; import Link from '@docusaurus/Link'; import styles from './index.module.css'; export interface ICardProps { desc: string; icon: string; href: string; } const ListCard: React.FC = ({ desc, icon: Icon, href }) => ( {typeof Icon === 'function' ? ( ) : ( )} {desc} ); export default ListCard;