New to KendoReactLearn about KendoReact Free.

CardActionsProps

NameTypeDefaultDescription

children?

React.ReactNode

Sets the CardActions children elements.

jsx
<CardActions>
  <Button>Action 1</Button>
  <Button>Action 2</Button>
</CardActions>

className?

string

Sets additional classes to the CardActions.

jsx
<CardActions className="custom-class">
  <Button>Action</Button>
</CardActions>

layout?

string

Sets the layout of the actions.

The supported values are:

  • (Default) start
  • center
  • end
  • stretched
jsx
<CardActions layout="center">
  <Button>Action</Button>
</CardActions>

orientation?

string

Specifies the orientation of the Card action buttons.

The possible values are:

  • (Default) horizontal
  • vertical
jsx
<CardActions orientation="vertical">
  <Button>Action</Button>
</CardActions>

style?

React.CSSProperties

Sets additional CSS styles to the CardActions.

jsx
<CardActions style={{ justifyContent: 'center' }}>
  <Button>Action</Button>
</CardActions>
Not finding the help you need?
Contact Support