File size: 211 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 |
import clsx from 'clsx';
const ActionPanelBody = ( { children, className = '' } ) => {
return <div className={ clsx( 'action-panel__body', className ) }>{ children }</div>;
};
export default ActionPanelBody;
|