CardHeader Edit

CardHeader renders an optional header within a Card.

Usage Usage

import { Card, CardHeader } from '@wordpress/components';

const Example = () => (
    <Card>
        <CardHeader>...</CardHeader>
        <CardBody>...</CardBody>
    </Card>
);

Top ↑

Props Props

Note: This component is connected to Card‘s Context. The value of the size and isBorderless props is derived from the Card parent component (if there is one). Setting these props directly on this component will override any derived values.

Top ↑

isBorderless: boolean isBorderless: boolean

Renders without a border.

  • Required: No
  • Default: false

Top ↑

isShady: boolean isShady: boolean

Renders with a light gray background color.

  • Required: No
  • Default: false

Top ↑

size: string size: string

Determines the amount of padding within the component.

  • Required: No
  • Default: medium
  • Allowed values: xSmall, small, medium, large