import React from 'react'; import cn from 'classnames'; interface Props { left: number; className?: string; height?: string; width?: string; } function VerticalLine(props: Props) { const { left, className = 'border-gray-dark', height = '100%', width = '1px' } = props; return
; } export default VerticalLine;