12 lines
311 B
TypeScript
12 lines
311 B
TypeScript
import { Text } from '@/ui/Text';
|
|
import { Box } from '@/ui/Box';
|
|
|
|
export function OnboardingHelpText() {
|
|
return (
|
|
<Box marginTop={6} textAlign="center">
|
|
<Text size="xs" variant="low">
|
|
Your avatar will be AI-generated based on your photo and chosen suit color
|
|
</Text>
|
|
</Box>
|
|
);
|
|
} |