import { Text, clx } from "@medusajs/ui" import { ReactNode } from "react" export type SectionRowProps = { title: string value?: ReactNode | string | null actions?: ReactNode } export const SectionRow = ({ title, value, actions }: SectionRowProps) => { const isValueString = typeof value === "string" || !value return (