CardContainerProps interface
Signature
export interface CardContainerProps extends HTMLAttributes<HTMLOrSVGElement>, CardInnerProps
Import
import { CardContainerProps } from '@grafana/ui';
Properties
Property | Type | Description |
---|---|---|
className | string | Custom container styles |
disableEvents | boolean | Disable pointer events for the Card, e.g. click events |
disableHover | boolean | No style change on hover |
isSelected | boolean | Makes the card selectable, set to “true” to apply selected styles |
className property
Custom container styles
Signature
className?: string;
disableEvents property
Disable pointer events for the Card, e.g. click events
Signature
disableEvents?: boolean;
disableHover property
No style change on hover
Signature
disableHover?: boolean;
isSelected property
Makes the card selectable, set to “true” to apply selected styles
Signature
isSelected?: boolean;