You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
351 B
20 lines
351 B
import { useLottie } from "lottie-react";
|
|
import downArrow from "../assets/downArrow.json";
|
|
|
|
const DownArrow = () => {
|
|
const options = {
|
|
animationData: downArrow,
|
|
loop: true,
|
|
autoplay: true,
|
|
};
|
|
|
|
const style = {
|
|
height: 150,
|
|
};
|
|
|
|
const { View } = useLottie(options, style);
|
|
|
|
return <>{View}</>;
|
|
};
|
|
|
|
export default DownArrow;
|
|
|