import { IconPublish, IconReject } from "@/components/_Icon/IconComponent"; import ButtonCustom from "@/components/Button/ButtonCustom"; import Grid from "@/components/Grid/GridCustom"; import { MainColor } from "@/constants/color-palet"; export default function AdminButtonReview({ isLoading, onPublish, onReject, }: { isLoading?: boolean; onPublish: () => void; onReject: () => void; }) { return ( <> } backgroundColor={MainColor.green} textColor="white" onPress={onPublish} > Publish } backgroundColor={MainColor.red} textColor="white" onPress={onReject} > Reject ); }