import { Box } from "@awsui/components-react"; import React, { ReactNode } from "react"; interface Props { label: string; description?: string; infoLink?: ReactNode; prepend?: ReactNode; content: ReactNode; } export const SummaryItem: React.FC = React.memo(({ label, infoLink, prepend, content, description }) => (
{label} {infoLink}
{prepend}
{content}
));