import {SpaceBetween, Box} from '@cloudscape-design/components' import {PropsWithChildren, ReactElement} from 'react' export const ValueWithLabel = ({ label, children, info, }: PropsWithChildren<{label: string; info?: ReactElement}>) => (
{label} {info}
{children}
)