import Lottie from "react-lottie-player"; type IconProps = { isPlaying: boolean; index: number; json: object; }; const Icon: React.FC = ({ isPlaying, index, json }) => { return ( ); }; export default Icon;