import PropTypes from "prop-types"; // @mui import { Box, Card, IconButton, Link, Skeleton, Stack, Tooltip, Typography, } from "@mui/material"; import { styled } from "@mui/material/styles"; // utils import { fCurrency } from "@/utils/formatNumber"; // components import IconFont from "@/components/IconFont"; // ---------------------------------------------------------------------- const StyledProductImg = styled("img")({ top: 0, width: "92%", height: "92%", marginTop: "4%", objectFit: "cover", position: "absolute", }); // ---------------------------------------------------------------------- ShopProductLoadingCard.propTypes = { product: PropTypes.object, }; export default function ShopProductLoadingCard({ product, loading }) { const { courseName, picUrl, price, status, priceSale } = product; return ( ); }