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