diff --git a/apps/explorer/src/components/ui/PlayPause.tsx b/apps/explorer/src/components/ui/PlayPause.tsx index 22553a3ec78..451ae069b42 100644 --- a/apps/explorer/src/components/ui/PlayPause.tsx +++ b/apps/explorer/src/components/ui/PlayPause.tsx @@ -2,6 +2,7 @@ // Modifications Copyright (c) 2024 IOTA Stiftung // SPDX-License-Identifier: Apache-2.0 +import { ButtonUnstyled } from '@iota/apps-ui-kit'; import { Pause, Play } from '@iota/ui-icons'; import { motion } from 'framer-motion'; import { useEffect } from 'react'; @@ -46,21 +47,23 @@ export function PlayPause({ paused, onChange, animate }: PlayPauseProps): JSX.El }, [animate, isAnimating]); return ( - + ); }