import { Box } from '@/ui/primitives/Box'; import { Stack } from '@/ui/primitives/Stack'; import { Surface } from '@/ui/primitives/Surface'; import { Text } from '@/ui/Text'; export function FeatureItem({ text }: { text: string }) { return ( {text} ); } export function ResultItem({ text, color }: { text: string, color: string }) { return ( {text} ); } export function StepItem({ step, text }: { step: number, text: string }) { return ( {step.toString().padStart(2, '0')} {text} ); }