import cx from "classnames"; import React from "react"; import { CLASS_CONTENT } from "./constants"; interface PromotionCardContentProps { className?: string; children?: React.ReactNode; [key: string]: any; } export const PromotionCardContent: React.FC = ({ className, children, ...other }) => { const classes = cx(CLASS_CONTENT, className); return (
{children}
); }; PromotionCardContent.displayName = "PromotionCardContent";