import React from 'react'; import Wrap from '../wrap/Wrap'; const Line = (props: ILine) => { const { wrapStyle = { padding: '6px 20px 6px 20px' }, lineStyle } = props; return ( ); }; export default Line; export interface ILine { wrapStyle: React.CSSProperties; lineStyle: React.CSSProperties; }