# CardHeader
Card header is the top, title bar of a card.

**Material documentation:**
[Cards](https://material.io/components/cards/)

**Selector:**
og-card-header

**Use:**
`<og-card-header></og-card-header>`

## Module
```javascript
import { CardHeaderModule } from '@opensesame/opensesameui';
```

## Types
```javascript
import { CardHeaderProps } from '@opensesame/opensesameui';
import { CardHeaderClasses } from '@opensesame/opensesameui';
```

## Props
Name | Type | Default | Description
---- | ---- | ------- | -----------
classes | object | | Override or extend the styles applied to the component.
className | string | | Class(es) applied to the component.
disableTypography | boolean | false | If `true`, header content does not use internal typography styling.
subheading | string | | The subheading content.
subheadingTypography | object | {} | Typography props passed to the subheading typography component.
title | string | | The title content.
titleTypography | object | {} | Typography props passed to the title typography component.

## Classes
Rule name | Class | Description
--------- | ----- | -----------
root | .og-card-header-root | Styles applied to the root element.
title | .og-card-header-title | Styles applied to the title.
subheading | .og-card-header-subheading | Styles applied to the subheading.
