@onehat/ui
Version:
Base UI for OneHat apps
15 lines (14 loc) • 335 B
JavaScript
import {
Text,
VStack,
} from '@project-components/Gluestack';
import clsx from 'clsx';
export default function Unauthorized(props) {
const
{
text = 'Unauthorized.',
} = props;
return <VStack className="w-full flex-1 justify-center items-center">
<Text className="text-center text-[#f00]">{text}</Text>
</VStack>;
}