import type { ClassName, TComponentIcon } from "@helpers/types"; export interface InlineMessageProps extends ClassName { icon?: TComponentIcon; text: string; variant?: "default" | "success" | "warning" | "info" | "error"; }