import React from 'react' import CardActions from '@mui/material/CardActions' import { LmComponentRender } from '@LmComponentRender' import { CardListItemProps } from './cardTypes' function CardListItemActions({ options, content }: CardListItemProps): JSX.Element | null { const cardActionsBody = content.card_actions_body || [] if (!cardActionsBody.length) { return null } return ( {cardActionsBody.map((blok) => ( ))} ) } export default CardListItemActions