UNPKG

velocity-verification

Version:

JavaScript SDK view layer for identity verification

12 lines (9 loc) 305 B
import { h } from 'preact' import theme from '../Theme/style.css' import style from './style.css' const FallbackButton = ({text, onClick}) => ( <button type="button" className={`${style.fallbackButton} ${theme.warning}`} onClick={onClick}> {text} </button> ) export default FallbackButton