UNPKG

@gechiui/components

Version:
31 lines (27 loc) 703 B
import _extends from "@babel/runtime/helpers/esm/extends"; import { createElement } from "@gechiui/element"; /** * GeChiUI dependencies */ import { withPreferredColorScheme } from '@gechiui/compose'; /** * Internal dependencies */ import Cell from './cell'; import styles from './styles.scss'; function FooterMessageCell(_ref) { let { textAlign = 'left', ...props } = _ref; return createElement(Cell, _extends({}, props, { editable: false, value: '', accessibilityRole: 'text', labelStyle: [styles.footerMessageCell, { textAlign }] })); } export default withPreferredColorScheme(FooterMessageCell); //# sourceMappingURL=footer-message-cell.native.js.map