import {forwardRef} from 'react'; import theme from 'sentry/utils/theme'; import {SvgIcon, SVGIconProps} from './svgIcon'; interface Props extends SVGIconProps { direction?: 'up' | 'right' | 'down' | 'left'; } const IconPanel = forwardRef( ({direction = 'up', ...props}, ref) => { return ( ); } ); IconPanel.displayName = 'IconPanel'; export {IconPanel};