antd-mobile
Version:
<div align="center">
8 lines • 329 B
JavaScript
import React from 'react';
import { withNativeProps } from '../../utils/native-props';
const classPrefix = 'adm-auto-center';
export const AutoCenter = props => withNativeProps(props, React.createElement("div", {
className: classPrefix
}, React.createElement("div", {
className: `${classPrefix}-content`
}, props.children)));