import ArrowDownwardIcon from '@mui/icons-material/ArrowDownward' import { Box, Skeleton } from '@mui/material' import type { JSX } from 'react' import { Card } from '../Card/Card.js' import { TokenSkeleton } from '../Token/Token.js' interface TransactionCardSkeletonProps { active?: boolean } export const TransactionCardSkeleton = ({ active, }: TransactionCardSkeletonProps): JSX.Element => { return ( {active ? ( ({ borderRadius: theme.vars.shape.borderRadiusTertiary, mb: 1.5, })} /> ) : ( ({ borderRadius: theme.vars.shape.borderRadius, })} /> ({ borderRadius: theme.vars.shape.borderRadius, })} /> )} ) }