diff --git a/apps/web/components/AppListCard.tsx b/apps/web/components/AppListCard.tsx new file mode 100644 index 0000000000..286a95ba49 --- /dev/null +++ b/apps/web/components/AppListCard.tsx @@ -0,0 +1,35 @@ +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 ( +