芝麻web文件管理V1.00
编辑当前文件:/home/e/p/h/ephorei/www/wp-content/themes/astra/admin/assets/components/PromoCard.js
import { classNames } from "@astra-utils/helpers"; const PromoCard = ({ className = "", id, icon, title, description, linkHRef, linkText, children, }) => { return (
{title}
{/* Card Icon */} {icon &&
{icon}
} {/* Card Title */}
{title}
{/* Card Description */} {!children && (
{description}
)} {/* Card Content */} {children} {/* Card Link */} {linkText && (
{linkText}
)}
); }; export default PromoCard;