UNPKG

agora-classroom-sdk

Version:

For publishing npm package agora-classroom-sdk (Web & Electron). Get more information from https://docs.agora.io

7 lines (6 loc) 296 B
import { ButtonProps } from 'antd/lib/button'; import { FC, PropsWithChildren } from 'react'; import './abutton.css'; declare type AButtonProps = Pick<ButtonProps, 'className' | 'onClick' | 'icon' | 'type' | 'style'>; export declare const AButton: FC<PropsWithChildren<AButtonProps>>; export {};