mirror of
https://github.com/flarum/core.git
synced 2025-10-11 15:04:25 +02:00
14 lines
385 B
TypeScript
14 lines
385 B
TypeScript
/**
|
|
* The `LogInButton` component displays a social login button which will open
|
|
* a popup window containing the specified path.
|
|
*
|
|
* ### Attrs
|
|
*
|
|
* - `path`
|
|
*/
|
|
export default class LogInButton extends Button<import("../../common/components/Button").IButtonAttrs> {
|
|
static initAttrs(attrs: any): void;
|
|
constructor();
|
|
}
|
|
import Button from "../../common/components/Button";
|