import {forwardRef, Fragment} from 'react'; import type {SVGIconProps} from './svgIcon'; import {SvgIcon} from './svgIcon'; interface Props extends SVGIconProps { isFocused?: boolean; } const IconFocus = forwardRef( ({isFocused = true, ...props}, ref) => { return ( {isFocused ? ( ) : ( )} ); } ); IconFocus.displayName = 'IconFocus'; export {IconFocus};