import cx from "classnames"; import React from "react"; import type { CardColor } from "../Card"; import { Card } from "../Card"; import { CLASS_ROOT } from "./constants"; export interface PromotionCardProps { className?: string; children?: React.ReactNode; color?: CardColor; [key: string]: any; } export const PromotionCard: React.FC = ({ className, children, color = "background-primary", ...other }) => { const classes = cx(CLASS_ROOT, className); return ( {children} ); }; PromotionCard.displayName = "PromotionCard";