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@latestHow 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;