/// /** * Details component properties */ export interface DetailsProperties { onClick?: () => void; icon?: string; color: string; title?: string; description?: string; background?: string; price?: string; flag?: string; counter: string | number; donut?: JSX.Element; goals?: React.ReactNode | React.ReactNode[]; }