@wordpress/components
Version:
UI components for WordPress.
24 lines (21 loc) • 491 B
JavaScript
/**
* WordPress dependencies
*/
import { withPreferredColorScheme } from '@wordpress/compose';
/**
* Internal dependencies
*/
import Cell from './cell';
import styles from './styles.scss';
function FooterMessageCell( { textAlign = 'left', ...props } ) {
return (
<Cell
{ ...props }
editable={ false }
value=""
accessibilityRole="text"
labelStyle={ [ styles.footerMessageCell, { textAlign } ] }
/>
);
}
export default withPreferredColorScheme( FooterMessageCell );