- PC: Loader chat - QC: Auth , Profile, portofolio & user search ## No Issuue git commit -m
23 lines
454 B
TypeScript
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>
|
|
</>
|
|
);
|
|
}
|