UNPKG

@buzuosheng/loading

Version:
26 lines (23 loc) 516 B
import React from "react"; import "./loading.css"; import { Spinner } from "./svg/index"; const loadingNames = [ "Audio", "Oval", "Flicker", "HalfCircle", "LittleCircle", "Rain", "Stretch", "StretchFlicker", ]; export const Loading = (props) => { return ( <div className={props.className} style={props.style}> {React.createElement( loadingNames.includes(props.type) ? Spinner[props.type] : Spinner.Oval, { ...props } )} </div> ); };