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