UNPKG

@dynamic-labs/sdk-react-core

Version:

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

12 lines (9 loc) 489 B
'use client' import { jsx } from 'react/jsx-runtime'; import { Icon } from '../Icon/Icon.js'; import 'react'; import { ReactComponent as SvgSignInWithPhone } from '../../shared/assets/sign-in-with-phone.js'; import '@dynamic-labs/iconic'; import '../../context/ViewContext/ViewContext.js'; const PhoneIcon = (props) => (jsx(Icon, { color: 'brand-primary', children: jsx(SvgSignInWithPhone, Object.assign({}, props, { "data-testid": 'sign-in-with-sms-icon' })) })); export { PhoneIcon };