() => (
<Card title="Passenger info">
<CardSection
expandable
title="Yasmin Karenth"
icon={<GenderWoman ariaLabel="female" />}
>
<Stack direction="column" spacing="XSmall">
<Text type="secondary">January 20, 1978</Text>
<Text type="secondary">yas.karenth@example.com</Text>
</Stack>
</CardSection>
<CardSection
expandable
title="Robin Kask"
icon={<GenderMan ariaLabel="male" />}
>
<Stack direction="column" spacing="XSmall">
<Text type="secondary">June 11, 1985</Text>
<Text type="secondary">robin2fly@example.com</Text>
</Stack>
</CardSection>
</Card>
);