├── .gitignore ├── README.md ├── copyfiles.js ├── docs ├── .nojekyll ├── 404.html ├── _next │ └── static │ │ ├── chunks │ │ ├── 5b51021badba4c9ee16049bcba4163789a5d5796.c0073fe95520e8fef0a8.js │ │ ├── framework.6b96cc89cff609028929.js │ │ └── styles.1e43d43e02ce0b67f769.js │ │ ├── css │ │ ├── static │ │ │ └── nJaiPBvRgLy-cPlE_vOjF │ │ │ │ └── pages │ │ │ │ └── _app.js.797992d1.chunk.css │ │ └── styles.92c73bcf.chunk.css │ │ ├── nJaiPBvRgLy-cPlE_vOjF │ │ ├── _buildManifest.js │ │ ├── _ssgManifest.js │ │ └── pages │ │ │ ├── _app.js │ │ │ ├── _error.js │ │ │ └── index.js │ │ └── runtime │ │ ├── main-27ee3196b923f5854ca8.js │ │ ├── polyfills-65ef27f830dcfb7b71e7.js │ │ └── webpack-9369c5c69dbf6d4912cb.js └── index.html ├── package.json ├── rollup.config.js ├── site ├── .gitignore ├── next-env.d.ts ├── next.config.js ├── package.json ├── pages │ ├── _app.tsx │ ├── _document.tsx │ ├── index.tsx │ └── style.scss ├── postcss.config.js ├── styles │ ├── _mixins.scss │ ├── _utilities.scss │ ├── _variables.scss │ └── style.scss ├── tsconfig.json ├── types │ └── types.d.ts └── yarn.lock ├── src ├── Preloader.tsx ├── index.ts ├── loaders │ ├── Audio.tsx │ ├── BallTriangle.tsx │ ├── Bars.tsx │ ├── Circles.tsx │ ├── Grid.tsx │ ├── Hearts.tsx │ ├── Oval.tsx │ ├── Puff.tsx │ ├── Rings.tsx │ ├── Spinning.tsx │ ├── TailSpin.tsx │ └── ThreeDots.tsx └── utils │ └── loop.ts ├── tsconfig.json ├── tslint.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyeong/react-preloader-icon/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyeong/react-preloader-icon/HEAD/README.md -------------------------------------------------------------------------------- /copyfiles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyeong/react-preloader-icon/HEAD/copyfiles.js -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyeong/react-preloader-icon/HEAD/docs/404.html -------------------------------------------------------------------------------- /docs/_next/static/chunks/5b51021badba4c9ee16049bcba4163789a5d5796.c0073fe95520e8fef0a8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyeong/react-preloader-icon/HEAD/docs/_next/static/chunks/5b51021badba4c9ee16049bcba4163789a5d5796.c0073fe95520e8fef0a8.js -------------------------------------------------------------------------------- /docs/_next/static/chunks/framework.6b96cc89cff609028929.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyeong/react-preloader-icon/HEAD/docs/_next/static/chunks/framework.6b96cc89cff609028929.js -------------------------------------------------------------------------------- /docs/_next/static/chunks/styles.1e43d43e02ce0b67f769.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyeong/react-preloader-icon/HEAD/docs/_next/static/chunks/styles.1e43d43e02ce0b67f769.js -------------------------------------------------------------------------------- /docs/_next/static/css/static/nJaiPBvRgLy-cPlE_vOjF/pages/_app.js.797992d1.chunk.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyeong/react-preloader-icon/HEAD/docs/_next/static/css/static/nJaiPBvRgLy-cPlE_vOjF/pages/_app.js.797992d1.chunk.css -------------------------------------------------------------------------------- /docs/_next/static/css/styles.92c73bcf.chunk.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyeong/react-preloader-icon/HEAD/docs/_next/static/css/styles.92c73bcf.chunk.css -------------------------------------------------------------------------------- /docs/_next/static/nJaiPBvRgLy-cPlE_vOjF/_buildManifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyeong/react-preloader-icon/HEAD/docs/_next/static/nJaiPBvRgLy-cPlE_vOjF/_buildManifest.js -------------------------------------------------------------------------------- /docs/_next/static/nJaiPBvRgLy-cPlE_vOjF/_ssgManifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyeong/react-preloader-icon/HEAD/docs/_next/static/nJaiPBvRgLy-cPlE_vOjF/_ssgManifest.js -------------------------------------------------------------------------------- /docs/_next/static/nJaiPBvRgLy-cPlE_vOjF/pages/_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyeong/react-preloader-icon/HEAD/docs/_next/static/nJaiPBvRgLy-cPlE_vOjF/pages/_app.js -------------------------------------------------------------------------------- /docs/_next/static/nJaiPBvRgLy-cPlE_vOjF/pages/_error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyeong/react-preloader-icon/HEAD/docs/_next/static/nJaiPBvRgLy-cPlE_vOjF/pages/_error.js -------------------------------------------------------------------------------- /docs/_next/static/nJaiPBvRgLy-cPlE_vOjF/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyeong/react-preloader-icon/HEAD/docs/_next/static/nJaiPBvRgLy-cPlE_vOjF/pages/index.js -------------------------------------------------------------------------------- /docs/_next/static/runtime/main-27ee3196b923f5854ca8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyeong/react-preloader-icon/HEAD/docs/_next/static/runtime/main-27ee3196b923f5854ca8.js -------------------------------------------------------------------------------- /docs/_next/static/runtime/polyfills-65ef27f830dcfb7b71e7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyeong/react-preloader-icon/HEAD/docs/_next/static/runtime/polyfills-65ef27f830dcfb7b71e7.js -------------------------------------------------------------------------------- /docs/_next/static/runtime/webpack-9369c5c69dbf6d4912cb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyeong/react-preloader-icon/HEAD/docs/_next/static/runtime/webpack-9369c5c69dbf6d4912cb.js -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyeong/react-preloader-icon/HEAD/docs/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyeong/react-preloader-icon/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyeong/react-preloader-icon/HEAD/rollup.config.js -------------------------------------------------------------------------------- /site/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .next 3 | -------------------------------------------------------------------------------- /site/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyeong/react-preloader-icon/HEAD/site/next-env.d.ts -------------------------------------------------------------------------------- /site/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyeong/react-preloader-icon/HEAD/site/next.config.js -------------------------------------------------------------------------------- /site/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyeong/react-preloader-icon/HEAD/site/package.json -------------------------------------------------------------------------------- /site/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyeong/react-preloader-icon/HEAD/site/pages/_app.tsx -------------------------------------------------------------------------------- /site/pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyeong/react-preloader-icon/HEAD/site/pages/_document.tsx -------------------------------------------------------------------------------- /site/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyeong/react-preloader-icon/HEAD/site/pages/index.tsx -------------------------------------------------------------------------------- /site/pages/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyeong/react-preloader-icon/HEAD/site/pages/style.scss -------------------------------------------------------------------------------- /site/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyeong/react-preloader-icon/HEAD/site/postcss.config.js -------------------------------------------------------------------------------- /site/styles/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyeong/react-preloader-icon/HEAD/site/styles/_mixins.scss -------------------------------------------------------------------------------- /site/styles/_utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyeong/react-preloader-icon/HEAD/site/styles/_utilities.scss -------------------------------------------------------------------------------- /site/styles/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyeong/react-preloader-icon/HEAD/site/styles/_variables.scss -------------------------------------------------------------------------------- /site/styles/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyeong/react-preloader-icon/HEAD/site/styles/style.scss -------------------------------------------------------------------------------- /site/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyeong/react-preloader-icon/HEAD/site/tsconfig.json -------------------------------------------------------------------------------- /site/types/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyeong/react-preloader-icon/HEAD/site/types/types.d.ts -------------------------------------------------------------------------------- /site/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyeong/react-preloader-icon/HEAD/site/yarn.lock -------------------------------------------------------------------------------- /src/Preloader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyeong/react-preloader-icon/HEAD/src/Preloader.tsx -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyeong/react-preloader-icon/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/loaders/Audio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyeong/react-preloader-icon/HEAD/src/loaders/Audio.tsx -------------------------------------------------------------------------------- /src/loaders/BallTriangle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyeong/react-preloader-icon/HEAD/src/loaders/BallTriangle.tsx -------------------------------------------------------------------------------- /src/loaders/Bars.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyeong/react-preloader-icon/HEAD/src/loaders/Bars.tsx -------------------------------------------------------------------------------- /src/loaders/Circles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyeong/react-preloader-icon/HEAD/src/loaders/Circles.tsx -------------------------------------------------------------------------------- /src/loaders/Grid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyeong/react-preloader-icon/HEAD/src/loaders/Grid.tsx -------------------------------------------------------------------------------- /src/loaders/Hearts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyeong/react-preloader-icon/HEAD/src/loaders/Hearts.tsx -------------------------------------------------------------------------------- /src/loaders/Oval.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyeong/react-preloader-icon/HEAD/src/loaders/Oval.tsx -------------------------------------------------------------------------------- /src/loaders/Puff.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyeong/react-preloader-icon/HEAD/src/loaders/Puff.tsx -------------------------------------------------------------------------------- /src/loaders/Rings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyeong/react-preloader-icon/HEAD/src/loaders/Rings.tsx -------------------------------------------------------------------------------- /src/loaders/Spinning.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyeong/react-preloader-icon/HEAD/src/loaders/Spinning.tsx -------------------------------------------------------------------------------- /src/loaders/TailSpin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyeong/react-preloader-icon/HEAD/src/loaders/TailSpin.tsx -------------------------------------------------------------------------------- /src/loaders/ThreeDots.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyeong/react-preloader-icon/HEAD/src/loaders/ThreeDots.tsx -------------------------------------------------------------------------------- /src/utils/loop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyeong/react-preloader-icon/HEAD/src/utils/loop.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyeong/react-preloader-icon/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyeong/react-preloader-icon/HEAD/tslint.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyeong/react-preloader-icon/HEAD/yarn.lock --------------------------------------------------------------------------------