BorderLeft.jsx 337 Bytes
import React from 'react';
import classnmaes from 'classnames'
import style from './index.less';

const BorderLeft = (props) => {
  return (
    <div className={classnmaes(style.border_left, 'pos_btw')} style={{...props.style}}>
      <span>{props?.title || ''}</span>
      {props?.extra}
    </div>
  );
};

export default BorderLeft;