UNPKG

@icedesign/algorithm-model-admin-scaffold

Version:

该模板适用于数据模型类的管理类后台,内置通用的介绍页和丰富的区块,使用时需要根据需求进行删除和添加

28 lines (23 loc) 522 B
import React from 'react'; import PropTypes from 'prop-types'; const ContainerTitle = ({ title, style, ...props }) => { return ( <h3 {...props} style={{ ...styles.title, ...style }}> {title} </h3> ); }; const styles = { title: { margin: '0', padding: '15px 20px', fonSize: '16px', color: 'rgba(0, 0, 0, 0.85)', fontWeight: '500', borderBottom: '1px solid #f0f0f0', }, }; ContainerTitle.propTypes = { title: PropTypes.string.isRequired, }; export default ContainerTitle;