UNPKG

agora-meeting-sdk

Version:

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

10 lines (9 loc) 261 B
import { FC } from 'react'; import { ToolItem } from './tool'; export interface PensProps extends ToolItem { pens?: string[]; activePen?: string; onClick?: (value: string) => void; isActive?: boolean; } export declare const Pens: FC<PensProps>;