import { Box } from "@12-apps/ui/mui/Box"; import { Stack } from "@12-apps/ui/mui/Stack"; import { Text } from "@12-apps/ui/typography/Text"; /** One entry of a landing's trust/feature strip. */ export interface FeatureBadgeItem { icon: React.ReactNode; label: string; caption: string; } /** * One item of an onboarding landing's trust/feature strip: a paper icon tile * (primary-coloured glyph) with a two-line label + caption. */ export function FeatureBadge({ icon, label, caption }: FeatureBadgeItem): React.JSX.Element { return ( {icon} {label} {caption} ); }