"use client"; import { Group, Text } from "@mantine/core"; import { IconAlertTriangle } from "@tabler/icons-react"; export default function ComponentGlobal_ErrorInput({ max, text, color, }: { max?: number; text?: string; color?: string; }) { return ( <> {text ? text : ` Maksimal ${max ? max : "-"} karakter !`} ); }