# Card A card is nothing but a v-sheet with predefined building blocks to enforce consistency. ## Usage ```html Hello, world! This is a card Consectetur enim ullamco sint sit deserunt proident consectetur. Save ``` Cards can be used to consistently style dialogs: ```html Are you sure you want to delete 1 item? Cancel Yes ``` ## Reference #### Props | Prop | Description | Default | Type | | ---------- | ------------------------------------------------- | ------- | --------- | | `disabled` | Disable the card, prevents all cursor interaction | `false` | `Boolean` | | `tile` | Render without rounded corners | `false` | `Boolean` | #### Events n/a #### Slots | Slot | Description | Data | | --------- | ----------- | ---- | | _default_ | | | #### CSS Variables | Variable | Default | | --------------------------- | --------------------------- | | `--v-card-min-width` | `none` | | `--v-card-max-width` | `400px` | | `--v-card-min-height` | `none` | | `--v-card-max-height` | `min-content` | | `--v-card-padding` | `16px` | | `--v-card-background-color` | `var(--background-subdued)` | | `--v-card-height` | `auto` | --- # Card Title Functional component that enforces consistent styling. ## Usage ```html Hello, world! ```