'use client'; import * as React from 'react'; import { Card, CardContent } from '../../ui/card'; import { Skeleton } from '../../ui/skeleton'; import { cn } from '../../shared/utils'; export interface QuickActionCardSkeletonProps extends React.HTMLAttributes {} /** * Loading placeholder for `QuickActionCard`. * * @description * Mirrors the visual layout of `QuickActionCard`: icon block + optional badge * in the top row, title + description text, and an action button. * * @example * ```tsx * {isLoading ? : } * ``` */ export function QuickActionCardSkeleton({ className, ...props }: QuickActionCardSkeletonProps) { return ( {/* Icon + badge row */}
{/* Title + description */}
{/* Action button */}
); }