@foreverrbum/ethsign
Version:
This package will allow you to electronically sign documents within your application
25 lines (19 loc) • 510 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.Lottie = void 0;
var _lottieReact = require("lottie-react");
/**
* @author pzhu
* @description for simple lottie
*/
var Lottie = function Lottie(props) {
var options = props.options,
_props$style = props.style,
style = _props$style === void 0 ? {} : _props$style;
var _useLottie = (0, _lottieReact.useLottie)(options, style),
View = _useLottie.View;
return View;
};
exports.Lottie = Lottie;