/** * Profile Box Wrapper */ // Setup the block const { Component } = wp.element; // Import block dependencies and components import classnames from 'classnames'; // Create a profile box wrapper Component export default class ProfileBox extends Component { constructor( props ) { super( ...arguments ); } render() { // Setup the attributes const { profileAlignment, profileImgURL, profileFontSize, profileBackgroundColor, profileTextColor, profileAvatarShape } = this.props.attributes; return (