UNPKG

antd-mobile

Version:
10 lines 351 B
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))); };