import { BadgeCustom, BoxWithHeaderSection, Spacing, StackCustom, TextCustom, } from "@/components"; import { GStyles } from "@/styles/global-styles"; import { Voting_ComponentDetailDataSection } from "./ComponentDetailDataSection"; export function Voting_BoxDetailContributionSection({ data, headerAvatar, nameChoice, }: { data: any; headerAvatar?: React.ReactNode; nameChoice?: string; }) { return ( <> {headerAvatar && ( <> {headerAvatar} )} Pilihan Anda {nameChoice || "-"} ); }