import CommonCardHeader from "@/CommonComponent/CommonCardHeader";
import { RoundedPillsWithIcons } from "@/Constant";
import { RoundedPillData, RoundedPillContext } from "@/Data/Uikits/TagAndPills";
import { Card, Col } from "reactstrap";
import CommonTagAndPillsCardBody from "./Common/CommonTagAndPillsCardBody";

const RoundedPillsWithIconsCart = () => {
  return (
    <Col sm="12" xl="6">
      <Card>
        <CommonCardHeader title={RoundedPillsWithIcons} span={RoundedPillData} />
        <CommonTagAndPillsCardBody number={RoundedPillContext} />
      </Card>
    </Col>
  );
};

export default RoundedPillsWithIconsCart;
