UNPKG

quick-ui-design

Version:

A Quick UI library for user interface design with React fast and easy.

12 lines (11 loc) 357 B
import { FloatButtonProps } from 'antd'; import { FC } from 'react'; import { FLOAT_BUTTON } from '../../Types'; export interface IFloatButtonProps extends FloatButtonProps { } export interface IFloatButton { ctype: typeof FLOAT_BUTTON; props: IFloatButtonProps; } declare const FloatButton: FC<IFloatButton>; export default FloatButton;