import { AppIcon } from './AppIcon' import type { EhAppIndexed } from '@env-hopper/backend-core' import { Button } from '~/components/ui/button' interface ActionCardProps { app: EhAppIndexed actionName: string onClick: () => void className?: string } export function ActionCard({ app, actionName, onClick, className, }: ActionCardProps) { return ( ) }