1234567891011121314151617181920212223242526 |
- const SubTitle = ({ title, fontSize = '0.28rem' }) => {
- return (
- <div
- style={{
- display: 'flex',
- justifyContent: 'flex-start',
- alignItems: 'center',
- marginBottom: '0.1rem',
- fontSize,
- fontWeight: '600',
- }}
- >
- <div
- style={{
- width: '0.1rem',
- height: '0.1rem',
- background: '#1755ff',
- marginRight: '0.1rem',
- }}
- />
- {title}
- </div>
- );
- };
- export default SubTitle;
|