UNPKG

@dynamic-labs/sdk-react-core

Version:

A React SDK for implementing wallet web3 authentication and authorization to your website.

10 lines (7 loc) 442 B
'use client' import { jsx } from 'react/jsx-runtime'; import { forwardRef } from 'react'; import { classNames } from '../../utils/functions/classNames/classNames.js'; const InlineWidget = forwardRef(({ children, className, dataTestId }, ref) => (jsx("div", { ref: ref, "data-testid": dataTestId, className: classNames('inline-widget', className), children: children }))); InlineWidget.displayName = 'InlineWidget'; export { InlineWidget };