Files
hipmi/src/app_modules/colab/component/noted_box.tsx
Bagasbanuna02 66b9902d97 # fix
- PC: Loader chat
- QC: Auth , Profile, portofolio & user search
## No Issuue
git commit -m
2024-05-16 10:03:34 +08:00

23 lines
454 B
TypeScript

import { Center, Grid, Group, Paper, Text, Title } from "@mantine/core";
export default function ComponentColab_NotedBox({
informasi,
}: {
informasi: string;
}) {
return (
<>
<Paper bg={"blue.3"} p={10}>
<Group>
<Text fz={10} fs={"italic"}>
<Text span inherit c={"red"}>
Alasan:{" "}
</Text>
{informasi}
</Text>
</Group>
</Paper>
</>
);
}