import * as React from 'react'; import styles from './index.less'; const BoxSize = 20; const IconSize = 16; export const CollapsedIcon: React.FC<{ width?: number; height?: number }> = props => { const { width = 20, height = 20 } = props; return (