UNPKG

smart-react-components

Version:

React UI library, wide variety of editable ready to use Styled and React components.

13 lines (12 loc) 339 B
import React from "react"; interface Props { element: JSX.Element; status: boolean; transitionClassName: string; transitionType: string; transitionDuration: number; transitionShowAnimation: boolean; transitionHideAnimation: boolean; } declare const Loading: React.FC<Props>; export default Loading;