Fix: tampilan status dan detail status sudah terintegrasi API - create dan buntton status sudah terintegrasi ### No Issue
40 lines
1.1 KiB
TypeScript
40 lines
1.1 KiB
TypeScript
import { BaseBox, StackCustom, Grid, TextCustom } from "@/components";
|
|
import { MainColor } from "@/constants/color-palet";
|
|
import { ICON_SIZE_SMALL } from "@/constants/constans-value";
|
|
import { Ionicons } from "@expo/vector-icons";
|
|
|
|
export default function Donation_ComponentStoryFunrising({
|
|
id,
|
|
dataStory,
|
|
}: {
|
|
id: string;
|
|
dataStory: any;
|
|
}) {
|
|
return (
|
|
<>
|
|
<BaseBox href={`/donation/${id}/detail-story`}>
|
|
<StackCustom gap={"xs"}>
|
|
<Grid>
|
|
<Grid.Col span={10}>
|
|
<TextCustom bold size="large">
|
|
Cerita Penggalang Dana
|
|
</TextCustom>
|
|
</Grid.Col>
|
|
<Grid.Col span={2}>
|
|
<Ionicons
|
|
name="chevron-forward-circle-outline"
|
|
size={ICON_SIZE_SMALL}
|
|
color={MainColor.yellow}
|
|
style={{
|
|
alignSelf: "flex-end",
|
|
}}
|
|
/>
|
|
</Grid.Col>
|
|
</Grid>
|
|
<TextCustom truncate={3}>{dataStory?.pembukaan || "-"}</TextCustom>
|
|
</StackCustom>
|
|
</BaseBox>
|
|
</>
|
|
);
|
|
}
|