import { ReactNode } from "react"; import { useLocale } from "@calcom/lib/hooks/useLocale"; import { Badge, ListItemText } from "@calcom/ui"; interface AppListCardProps { logo?: string; title: string; description: string; actions?: ReactNode; isDefault?: boolean; } export default function AppListCard(props: AppListCardProps) { const { t } = useLocale(); const { logo, title, description, actions, isDefault } = props; return (
{logo ? {`${title} : null}

{title}

{isDefault ? {t("default")} : null}
{description}
{actions}
); }