import { IconLockAccessOff } from "@tabler/icons-react"; import { Empty, type EmptyProps } from "./Empty"; const NotFound = (props: Partial) => ; const NotAllowed = (props: Partial) => ; const MissingPermission = ({ what, ...props }: Partial & { what?: string; }) => ( ); export const Message = { NotFound, NotAllowed, MissingPermission };