File "StatCard.js"

Full Path: /home/tekvhqgl/public_html/dev2024_old_skip/wp-content/plugins/presto-player/src/admin/ui/StatCard.js
File size: 508 bytes
MIME-type: text/x-java
Charset: utf-8

const { Card, CardBody } = wp.components;
import Loading from "@/admin/settings/components/Loading";

export default ({ loading, title, value, label }) => {
  if (loading) {
    return (
      <Card>
        <CardBody>
          <Loading />
        </CardBody>
      </Card>
    );
  }

  return (
    <Card className="presto-player__stat-card">
      <CardBody>
        <div className="presto-subtitle">{title}</div>
        <h1>{value}</h1>
        <div>{label}</div>
      </CardBody>
    </Card>
  );
};