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