# Card

Card is a wrapper component typically used for displaying Card Content.

## Props

This component extends React Native's [TouchableOpacityProps](https://reactnative.dev/docs/touchableopacity) component.

### `children`

Content to wrap to display.

| <span style="color:gray;font-size:14px">TYPE</span> | <span style="color:gray;font-size:14px">REQUIRED</span> |
| :-------------------------------------------------- | :------------------------------------------------------ |
| ReactNode                                           | Yes                                                     |

## Usage

```javascript
// Replace import with relative path.
import Card from 'app/component-library/components/Cards/Card/Card';

<Card>
  <SampleContent />
</Card>;
```
