UNPKG

agora-classroom-sdk

Version:

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

14 lines (13 loc) 398 B
import { FC, PropsWithChildren } from 'react'; import { BaseProps } from '../util/type'; export interface FloatProps extends BaseProps { top?: number; left?: number; bottom?: number; right?: number; direction?: 'row' | 'col'; align?: 'flex-start' | 'flex-end'; justify?: 'start' | 'end'; gap: number; } export declare const Float: FC<PropsWithChildren<FloatProps>>;