diff --git a/packages/gestalt/src/IconButtonFloating.tsx b/packages/gestalt/src/IconButtonFloating.tsx index f93f11e6a3..705c256c66 100644 --- a/packages/gestalt/src/IconButtonFloating.tsx +++ b/packages/gestalt/src/IconButtonFloating.tsx @@ -2,6 +2,7 @@ import { forwardRef } from 'react'; import Box from './Box'; import InternalIconButton from './IconButton/InternalIconButton'; import icons from './icons/index'; +import useInExperiment from './useInExperiment'; import { Indexable } from './zIndex'; type Props = { @@ -84,8 +85,13 @@ const IconButtonFloatingWithForwardRef = forwardRef( }: Props, ref, ) { + const isInVRExperiment = useInExperiment({ + webExperimentName: 'web_gestalt_visualRefresh', + mwebExperimentName: 'web_gestalt_visualRefresh', + }); + return ( - +