import {forwardRef} from 'react'; import {css} from '@emotion/react'; import type {SVGIconProps} from './svgIcon'; import {SvgIcon} from './svgIcon'; interface Props extends SVGIconProps { rotated?: boolean; } const IconSort = forwardRef(({rotated, ...props}, ref) => { return ( ); }); IconSort.displayName = 'IconSort'; export {IconSort};