import React from 'react';
import Row from 'antd/es/grid/row';

import { getPrefixCls } from '../config-provider';
import './index.less';

export default props => {
  const { prefixCls: customizePrefixCls, ...restProps } = props;
  const prefixCls = getPrefixCls('row', customizePrefixCls);
  return <Row {...restProps} prefixCls={prefixCls} />;
};
