import React from 'react'; import type { SkeletonCardProps } from '../../../../types/skeleton'; import { ButtonGroup } from '../../../button/public'; import { Card } from '../../../card/public'; import { View } from '../../../layout/public'; import { withZoraThemeScope } from '../../../theme/adapters/inbound/withZoraThemeScope'; import { Skeleton } from './Skeleton'; import { SkeletonText } from './SkeletonText'; function SkeletonCardInner({ themeId: _themeId, mode: _mode, testID, media = false, actions = false, lines = 3, compact = false, }: SkeletonCardProps) { return ( {media ? : null} {actions ? ( ) : null} ); } /*** * Skeleton placeholder that matches the structure of a `Card`. */ export const SkeletonCard = withZoraThemeScope(SkeletonCardInner);