UNPKG

primereact

Version:

[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![npm version](https://badge.fury.io/js/primereact.svg)](https://badge.fury.io/js/primereact) [![Discord Chat](https://img.shields.io/discord/5579

15 lines (13 loc) 330 B
import * as React from 'react'; interface CaptchaProps { id?: string; siteKey?: string; theme?: string; type?: string; size?: string; tabIndex?: number; language?: string; onResponse?(response: any): void; onExpire?(): void; } export class Captcha extends React.Component<CaptchaProps,any> {}