├── .eslintrc.cjs ├── .gitignore ├── README.md ├── index.html ├── lib ├── components │ └── CircularProgressBar │ │ ├── Flat.tsx │ │ ├── Heat.tsx │ │ └── Nested.tsx ├── hooks │ ├── useAnimatedValue.tsx │ └── useIntersection.tsx ├── index.ts └── types.d.ts ├── package.json ├── postcss.config.cjs ├── public ├── left.svg ├── right.svg └── vite.svg ├── src ├── App.tsx ├── assets │ └── react.svg ├── components │ ├── CodeHighlighter │ │ ├── CodeHighlighter.tsx │ │ └── style.css │ ├── FlatDemo │ │ ├── FlatDemo.tsx │ │ └── Settings.tsx │ ├── Header.tsx │ ├── HeatDemo │ │ ├── HeatDemo.tsx │ │ └── Settings.tsx │ └── NestedDemo │ │ ├── NestedDemo.tsx │ │ └── Settings.tsx ├── features │ └── fontFamilies.ts ├── index.css ├── main.tsx ├── types.d.ts ├── utils │ ├── checkFlatProps.ts │ ├── checkFlatSx.ts │ ├── checkHeatProps.ts │ ├── checkHeatSx.ts │ └── checkNestedSx.ts └── vite-env.d.ts ├── tailwind.config.cjs ├── tsconfig.json ├── tsup.config.js └── vite.config.ts /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alptugidin/react-circular-progress-bar/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alptugidin/react-circular-progress-bar/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alptugidin/react-circular-progress-bar/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alptugidin/react-circular-progress-bar/HEAD/index.html -------------------------------------------------------------------------------- /lib/components/CircularProgressBar/Flat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alptugidin/react-circular-progress-bar/HEAD/lib/components/CircularProgressBar/Flat.tsx -------------------------------------------------------------------------------- /lib/components/CircularProgressBar/Heat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alptugidin/react-circular-progress-bar/HEAD/lib/components/CircularProgressBar/Heat.tsx -------------------------------------------------------------------------------- /lib/components/CircularProgressBar/Nested.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alptugidin/react-circular-progress-bar/HEAD/lib/components/CircularProgressBar/Nested.tsx -------------------------------------------------------------------------------- /lib/hooks/useAnimatedValue.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alptugidin/react-circular-progress-bar/HEAD/lib/hooks/useAnimatedValue.tsx -------------------------------------------------------------------------------- /lib/hooks/useIntersection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alptugidin/react-circular-progress-bar/HEAD/lib/hooks/useIntersection.tsx -------------------------------------------------------------------------------- /lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alptugidin/react-circular-progress-bar/HEAD/lib/index.ts -------------------------------------------------------------------------------- /lib/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alptugidin/react-circular-progress-bar/HEAD/lib/types.d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alptugidin/react-circular-progress-bar/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alptugidin/react-circular-progress-bar/HEAD/postcss.config.cjs -------------------------------------------------------------------------------- /public/left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alptugidin/react-circular-progress-bar/HEAD/public/left.svg -------------------------------------------------------------------------------- /public/right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alptugidin/react-circular-progress-bar/HEAD/public/right.svg -------------------------------------------------------------------------------- /public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alptugidin/react-circular-progress-bar/HEAD/public/vite.svg -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alptugidin/react-circular-progress-bar/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alptugidin/react-circular-progress-bar/HEAD/src/assets/react.svg -------------------------------------------------------------------------------- /src/components/CodeHighlighter/CodeHighlighter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alptugidin/react-circular-progress-bar/HEAD/src/components/CodeHighlighter/CodeHighlighter.tsx -------------------------------------------------------------------------------- /src/components/CodeHighlighter/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alptugidin/react-circular-progress-bar/HEAD/src/components/CodeHighlighter/style.css -------------------------------------------------------------------------------- /src/components/FlatDemo/FlatDemo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alptugidin/react-circular-progress-bar/HEAD/src/components/FlatDemo/FlatDemo.tsx -------------------------------------------------------------------------------- /src/components/FlatDemo/Settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alptugidin/react-circular-progress-bar/HEAD/src/components/FlatDemo/Settings.tsx -------------------------------------------------------------------------------- /src/components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alptugidin/react-circular-progress-bar/HEAD/src/components/Header.tsx -------------------------------------------------------------------------------- /src/components/HeatDemo/HeatDemo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alptugidin/react-circular-progress-bar/HEAD/src/components/HeatDemo/HeatDemo.tsx -------------------------------------------------------------------------------- /src/components/HeatDemo/Settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alptugidin/react-circular-progress-bar/HEAD/src/components/HeatDemo/Settings.tsx -------------------------------------------------------------------------------- /src/components/NestedDemo/NestedDemo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alptugidin/react-circular-progress-bar/HEAD/src/components/NestedDemo/NestedDemo.tsx -------------------------------------------------------------------------------- /src/components/NestedDemo/Settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alptugidin/react-circular-progress-bar/HEAD/src/components/NestedDemo/Settings.tsx -------------------------------------------------------------------------------- /src/features/fontFamilies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alptugidin/react-circular-progress-bar/HEAD/src/features/fontFamilies.ts -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alptugidin/react-circular-progress-bar/HEAD/src/index.css -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alptugidin/react-circular-progress-bar/HEAD/src/main.tsx -------------------------------------------------------------------------------- /src/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alptugidin/react-circular-progress-bar/HEAD/src/types.d.ts -------------------------------------------------------------------------------- /src/utils/checkFlatProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alptugidin/react-circular-progress-bar/HEAD/src/utils/checkFlatProps.ts -------------------------------------------------------------------------------- /src/utils/checkFlatSx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alptugidin/react-circular-progress-bar/HEAD/src/utils/checkFlatSx.ts -------------------------------------------------------------------------------- /src/utils/checkHeatProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alptugidin/react-circular-progress-bar/HEAD/src/utils/checkHeatProps.ts -------------------------------------------------------------------------------- /src/utils/checkHeatSx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alptugidin/react-circular-progress-bar/HEAD/src/utils/checkHeatSx.ts -------------------------------------------------------------------------------- /src/utils/checkNestedSx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alptugidin/react-circular-progress-bar/HEAD/src/utils/checkNestedSx.ts -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alptugidin/react-circular-progress-bar/HEAD/tailwind.config.cjs -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alptugidin/react-circular-progress-bar/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alptugidin/react-circular-progress-bar/HEAD/tsup.config.js -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alptugidin/react-circular-progress-bar/HEAD/vite.config.ts --------------------------------------------------------------------------------