import React from 'react'
import Grid from '@mui/material/Unstable_Grid2'
import { LmComponentRender } from '@LmComponentRender'
import { LmToolbarRowProps } from './toolbarTypes'
import ToolbarSystemBarRow from './ToolbarSystemBarRow'
export function LmToolbarRow({ content }: LmToolbarRowProps): JSX.Element {
if (content.is_system_bar) {
return
}
return (
{content.body?.map((blok) => (
))}
)
}