Skip to main content

Card

A card component which can be used to group related content.

Example

Ts
import { Card } from '@vendure/admin-ui/react';export function MyComponent() {  return (    <Card title='My Title'>      <p>Some content</p>    </Card>  );}
Signature
function Card(props: PropsWithChildren<{ title?: string; paddingX?: boolean }>): void

Parameters

props

parameterPropsWithChildren<{ title?: string; paddingX?: boolean }>
Was this chapter helpful?
Report Issue
Edited Feb 2, 2026·Edit this page