File size: 229 Bytes
1e92f2d
 
 
 
 
 
 
1
2
3
4
5
6
7
8
import clsx from 'clsx';

const ActionPanelFigureHeader = ( { children, className } ) => {
	return <h3 className={ clsx( 'action-panel__figure-header', className ) }>{ children }</h3>;
};

export default ActionPanelFigureHeader;