import React from 'react'; interface CardProps { children: React.ReactNode; title?: React.ReactNode; icon?: string; extra?: React.ReactNode; className?: string; bodyClassName?: string; noDivider?: boolean; } export function Card({ children, title, icon, extra, className = '', bodyClassName = '', noDivider = true, }: CardProps) { return (