--- sidebar_label: "Section Row" --- import { TypeList } from "docs-ui" export const metadata = { title: `Section Row - Admin Components`, } # {metadata.title} The Medusa Admin often shows information in rows of label-values, such as when showing a product's details.  To create a component that shows information in the same structure, create the file `src/admin/components/section-row.tsx` with the following content: ```tsx title="src/admin/components/section-row.tsx" import { Text, clx } from "@medusajs/ui" export type SectionRowProps = { title: string value?: React.ReactNode | string | null actions?: React.ReactNode } export const SectionRow = ({ title, value, actions }: SectionRowProps) => { const isValueString = typeof value === "string" || !value return (