import React from 'react' import { InfoBlock } from '../info-block' import { GrAction } from 'react-icons/gr' export const ActionsBox = ({ actions }: { actions?: any }) => { return ( }> {!!actions ? 'Enabled' : 'N/A'} ) }