芝麻web文件管理V1.00
编辑当前文件:/home/freeclou/app.optimyar.com/backend/.cache/admin/src/components/SizedInput/index.js
import React from 'react'; import { Col } from 'reactstrap'; import PropTypes from 'prop-types'; import IntlInput from '../IntlInput'; // TODO: remove this component const SizedInput = ({ size, ...rest }) => { return (
); }; SizedInput.defaultProps = { size: { xs: '6', }, }; SizedInput.propTypes = { size: PropTypes.object, }; export default SizedInput;