UNPKG

@wordpress/components

Version:
24 lines (21 loc) 491 B
/** * 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 );