JSPM

devsyntra-loader-ui

1.0.2
    • ESM via JSPM
    • ES Module Entrypoint
    • Export Map
    • Keywords
    • License
    • Repository URL
    • TypeScript Types
    • README
    • Created
    • Published
    • Downloads 1
    • Score
      100M100P100Q31127F
    • License ISC

    Package Exports

    • devsyntra-loader-ui
    • devsyntra-loader-ui/dist/main.js

    This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (devsyntra-loader-ui) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

    Readme

    🌀 DevSyntra Loader UI

    A lightweight, customizable React Loader / Spinner component for modern React and Next.js applications.
    Perfect for showing loading states during API calls, page transitions, or lazy-loaded components.


    Installation

    Install using npm:

    npm install devsyntra-loader-ui@latest
    
    OR
    
    yarn add devsyntra-loader-ui@latest

    How to use

    import React from "react";
    import Loader from "devsyntra-loader-ui";
    
    function App() {
      return (
        <div>
          <Loader size={60} color="dodgerblue" />
        </div>
      );
    }
    
    export default App;