SubTitle.js 504 B

1234567891011121314151617181920212223242526
  1. const SubTitle = ({ title, fontSize = '0.28rem' }) => {
  2. return (
  3. <div
  4. style={{
  5. display: 'flex',
  6. justifyContent: 'flex-start',
  7. alignItems: 'center',
  8. marginBottom: '0.1rem',
  9. fontSize,
  10. fontWeight: '600',
  11. }}
  12. >
  13. <div
  14. style={{
  15. width: '0.1rem',
  16. height: '0.1rem',
  17. background: '#1755ff',
  18. marginRight: '0.1rem',
  19. }}
  20. />
  21. {title}
  22. </div>
  23. );
  24. };
  25. export default SubTitle;