import React from 'react'; import type { ComponentProps } from 'react'; import StyledHeroIcon from './HeroIcon'; import SpinWrapper from './SpinWrapper'; type AnimatedIconProps = ComponentProps; const AnimatedIcon = ({ style, ...otherProps }: AnimatedIconProps) => ( ); export default AnimatedIcon;