Event Done
This commit is contained in:
17
src/app_modules/event/component/error_maksimal_input.tsx
Normal file
17
src/app_modules/event/component/error_maksimal_input.tsx
Normal file
@@ -0,0 +1,17 @@
|
||||
"use client"
|
||||
|
||||
import { Group, Text } from "@mantine/core";
|
||||
import { IconAlertTriangle } from "@tabler/icons-react";
|
||||
|
||||
export default function ComponentEvent_ErrorMaximalInput({max}:{max: number}){
|
||||
return (
|
||||
<>
|
||||
<Group spacing={"xs"}>
|
||||
<IconAlertTriangle size={15} />
|
||||
<Text fz={10} fs={"italic"}>
|
||||
Maksimal {max} karakter !
|
||||
</Text>
|
||||
</Group>
|
||||
</>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user