UNPKG

quick-ui-design

Version:

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

10 lines (9 loc) 232 B
import { SpinProps } from 'antd'; import { FC } from 'react'; import { SPIN } from '../../Types'; export interface ISpin { ctype: typeof SPIN; props: SpinProps; } declare const Spin: FC<ISpin>; export default Spin;