Card
Card
A card component which can be used to group related content.
Example
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
parameter
PropsWithChildren<{ title?: string; paddingX?: boolean }>