@dynamic-labs/sdk-react-core
Version:
A React SDK for implementing wallet web3 authentication and authorization to your website.
18 lines (13 loc) • 652 B
JavaScript
'use client'
;
Object.defineProperty(exports, '__esModule', { value: true });
var jsxRuntime = require('react/jsx-runtime');
var React = require('react');
var classNames = require('../../utils/functions/classNames/classNames.cjs');
const EnterTileAnimation = ({ children, className = '', delay = 0, dataTestId, }) => {
const style = React.useMemo(() => ({
animationDelay: delay,
}), [delay]);
return (jsxRuntime.jsx("div", { "data-testid": dataTestId, className: classNames.classNames(className, 'enter-list-tile-animation'), style: style, children: children }));
};
exports.EnterTileAnimation = EnterTileAnimation;