Add: - app-information/information-bank/ Component Fix: - constans-value: Icon size re name ### No Issue
31 lines
744 B
TypeScript
31 lines
744 B
TypeScript
import Grid from "@/components/Grid/GridCustom";
|
|
import TextCustom from "@/components/Text/TextCustom";
|
|
import { View } from "react-native";
|
|
import AdminBackButton from "./BackButton";
|
|
|
|
export default function AdminBackButtonAntTitle({
|
|
title,
|
|
}: {
|
|
title: string;
|
|
}) {
|
|
return (
|
|
<>
|
|
<Grid>
|
|
<Grid.Col span={2}>
|
|
<AdminBackButton />
|
|
</Grid.Col>
|
|
<Grid.Col
|
|
span={8}
|
|
style={{ alignItems: "center", justifyContent: "center" }}
|
|
>
|
|
<TextCustom bold size={"large"} align="center">
|
|
{title}
|
|
</TextCustom>
|
|
</Grid.Col>
|
|
<Grid.Col span={2}>
|
|
<View />
|
|
</Grid.Col>
|
|
</Grid>
|
|
</>
|
|
);
|
|
} |