├── .gitignore ├── README.md ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt └── src ├── Components ├── Accordion │ ├── index.js │ ├── index.module.css │ └── test.js ├── AlertBox │ ├── index.js │ ├── index.module.css │ └── test.js ├── Button │ ├── index.js │ └── index.module.css ├── Carousel │ ├── index.js │ └── index.module.css ├── Checkbox │ ├── index.js │ └── index.module.css ├── CheckboxGroup │ ├── index.js │ └── index.module.css ├── DropDown │ ├── index.js │ ├── index.module.css │ └── test.js ├── FileUploader │ ├── index.js │ └── index.module.css ├── ImageComparisonSlider │ ├── index.js │ └── index.module.css ├── ImageZoom │ ├── index.js │ ├── index.module.css │ └── test.js ├── Input │ ├── index.js │ └── index.module.css ├── Lazyloading │ ├── index.js │ └── index.module.css ├── Loader │ ├── index.js │ └── index.module.css ├── LoginForm │ ├── index.js │ └── index.module.css ├── Modal │ ├── index.js │ ├── index.module.css │ └── test.js ├── Pagination │ ├── index.js │ ├── index.module.css │ └── test.js ├── ProgressBar │ ├── index.js │ └── index.module.css ├── Radiobox │ ├── index.js │ └── index.module.css ├── ScrollIndicator │ ├── index.js │ └── index.module.css ├── ScrollSpy │ ├── index.js │ └── index.module.css ├── ScrollTop │ ├── index.js │ └── index.module.css ├── Search │ ├── index.js │ └── index.module.css ├── Select │ ├── index.js │ └── index.module.css ├── SlidingMenu │ ├── index.js │ ├── index.module.css │ └── test.js ├── SortableItems │ ├── arrayMove.js │ ├── index.js │ └── index.module.css ├── Tab │ ├── index.js │ ├── index.module.css │ └── test.js ├── Timeline │ ├── index.js │ └── index.module.css ├── ToggleSwitch │ ├── index.js │ └── index.module.css ├── Tooltip │ ├── index.js │ └── index.module.css ├── TypingEffect │ ├── index.js │ └── index.module.css └── VoiceVisualizer │ ├── index.js │ ├── index.module.css │ └── test.js ├── index.css ├── index.js ├── loader.gif ├── serviceWorker.js └── setupTests.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/know-prashant/react-components/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/know-prashant/react-components/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/know-prashant/react-components/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/know-prashant/react-components/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/know-prashant/react-components/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/know-prashant/react-components/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/know-prashant/react-components/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/know-prashant/react-components/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/know-prashant/react-components/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/Components/Accordion/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/know-prashant/react-components/HEAD/src/Components/Accordion/index.js -------------------------------------------------------------------------------- /src/Components/Accordion/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/know-prashant/react-components/HEAD/src/Components/Accordion/index.module.css -------------------------------------------------------------------------------- /src/Components/Accordion/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/know-prashant/react-components/HEAD/src/Components/Accordion/test.js -------------------------------------------------------------------------------- /src/Components/AlertBox/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/know-prashant/react-components/HEAD/src/Components/AlertBox/index.js -------------------------------------------------------------------------------- /src/Components/AlertBox/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/know-prashant/react-components/HEAD/src/Components/AlertBox/index.module.css -------------------------------------------------------------------------------- /src/Components/AlertBox/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/know-prashant/react-components/HEAD/src/Components/AlertBox/test.js -------------------------------------------------------------------------------- /src/Components/Button/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/know-prashant/react-components/HEAD/src/Components/Button/index.js -------------------------------------------------------------------------------- /src/Components/Button/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/know-prashant/react-components/HEAD/src/Components/Button/index.module.css -------------------------------------------------------------------------------- /src/Components/Carousel/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/know-prashant/react-components/HEAD/src/Components/Carousel/index.js -------------------------------------------------------------------------------- /src/Components/Carousel/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/know-prashant/react-components/HEAD/src/Components/Carousel/index.module.css -------------------------------------------------------------------------------- /src/Components/Checkbox/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/know-prashant/react-components/HEAD/src/Components/Checkbox/index.js -------------------------------------------------------------------------------- /src/Components/Checkbox/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/know-prashant/react-components/HEAD/src/Components/Checkbox/index.module.css -------------------------------------------------------------------------------- /src/Components/CheckboxGroup/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/know-prashant/react-components/HEAD/src/Components/CheckboxGroup/index.js -------------------------------------------------------------------------------- /src/Components/CheckboxGroup/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/know-prashant/react-components/HEAD/src/Components/CheckboxGroup/index.module.css -------------------------------------------------------------------------------- /src/Components/DropDown/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/know-prashant/react-components/HEAD/src/Components/DropDown/index.js -------------------------------------------------------------------------------- /src/Components/DropDown/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/know-prashant/react-components/HEAD/src/Components/DropDown/index.module.css -------------------------------------------------------------------------------- /src/Components/DropDown/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/know-prashant/react-components/HEAD/src/Components/DropDown/test.js -------------------------------------------------------------------------------- /src/Components/FileUploader/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/know-prashant/react-components/HEAD/src/Components/FileUploader/index.js -------------------------------------------------------------------------------- /src/Components/FileUploader/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/know-prashant/react-components/HEAD/src/Components/FileUploader/index.module.css -------------------------------------------------------------------------------- /src/Components/ImageComparisonSlider/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/know-prashant/react-components/HEAD/src/Components/ImageComparisonSlider/index.js -------------------------------------------------------------------------------- /src/Components/ImageComparisonSlider/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/know-prashant/react-components/HEAD/src/Components/ImageComparisonSlider/index.module.css -------------------------------------------------------------------------------- /src/Components/ImageZoom/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/know-prashant/react-components/HEAD/src/Components/ImageZoom/index.js -------------------------------------------------------------------------------- /src/Components/ImageZoom/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/know-prashant/react-components/HEAD/src/Components/ImageZoom/index.module.css -------------------------------------------------------------------------------- /src/Components/ImageZoom/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/know-prashant/react-components/HEAD/src/Components/ImageZoom/test.js -------------------------------------------------------------------------------- /src/Components/Input/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/know-prashant/react-components/HEAD/src/Components/Input/index.js -------------------------------------------------------------------------------- /src/Components/Input/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/know-prashant/react-components/HEAD/src/Components/Input/index.module.css -------------------------------------------------------------------------------- /src/Components/Lazyloading/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/know-prashant/react-components/HEAD/src/Components/Lazyloading/index.js -------------------------------------------------------------------------------- /src/Components/Lazyloading/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/know-prashant/react-components/HEAD/src/Components/Lazyloading/index.module.css -------------------------------------------------------------------------------- /src/Components/Loader/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/know-prashant/react-components/HEAD/src/Components/Loader/index.js -------------------------------------------------------------------------------- /src/Components/Loader/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/know-prashant/react-components/HEAD/src/Components/Loader/index.module.css -------------------------------------------------------------------------------- /src/Components/LoginForm/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/know-prashant/react-components/HEAD/src/Components/LoginForm/index.js -------------------------------------------------------------------------------- /src/Components/LoginForm/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/know-prashant/react-components/HEAD/src/Components/LoginForm/index.module.css -------------------------------------------------------------------------------- /src/Components/Modal/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/know-prashant/react-components/HEAD/src/Components/Modal/index.js -------------------------------------------------------------------------------- /src/Components/Modal/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/know-prashant/react-components/HEAD/src/Components/Modal/index.module.css -------------------------------------------------------------------------------- /src/Components/Modal/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/know-prashant/react-components/HEAD/src/Components/Modal/test.js -------------------------------------------------------------------------------- /src/Components/Pagination/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/know-prashant/react-components/HEAD/src/Components/Pagination/index.js -------------------------------------------------------------------------------- /src/Components/Pagination/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/know-prashant/react-components/HEAD/src/Components/Pagination/index.module.css -------------------------------------------------------------------------------- /src/Components/Pagination/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/know-prashant/react-components/HEAD/src/Components/Pagination/test.js -------------------------------------------------------------------------------- /src/Components/ProgressBar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/know-prashant/react-components/HEAD/src/Components/ProgressBar/index.js -------------------------------------------------------------------------------- /src/Components/ProgressBar/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/know-prashant/react-components/HEAD/src/Components/ProgressBar/index.module.css -------------------------------------------------------------------------------- /src/Components/Radiobox/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/know-prashant/react-components/HEAD/src/Components/Radiobox/index.js -------------------------------------------------------------------------------- /src/Components/Radiobox/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/know-prashant/react-components/HEAD/src/Components/Radiobox/index.module.css -------------------------------------------------------------------------------- /src/Components/ScrollIndicator/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/know-prashant/react-components/HEAD/src/Components/ScrollIndicator/index.js -------------------------------------------------------------------------------- /src/Components/ScrollIndicator/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/know-prashant/react-components/HEAD/src/Components/ScrollIndicator/index.module.css -------------------------------------------------------------------------------- /src/Components/ScrollSpy/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/know-prashant/react-components/HEAD/src/Components/ScrollSpy/index.js -------------------------------------------------------------------------------- /src/Components/ScrollSpy/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/know-prashant/react-components/HEAD/src/Components/ScrollSpy/index.module.css -------------------------------------------------------------------------------- /src/Components/ScrollTop/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/know-prashant/react-components/HEAD/src/Components/ScrollTop/index.js -------------------------------------------------------------------------------- /src/Components/ScrollTop/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/know-prashant/react-components/HEAD/src/Components/ScrollTop/index.module.css -------------------------------------------------------------------------------- /src/Components/Search/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/know-prashant/react-components/HEAD/src/Components/Search/index.js -------------------------------------------------------------------------------- /src/Components/Search/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/know-prashant/react-components/HEAD/src/Components/Search/index.module.css -------------------------------------------------------------------------------- /src/Components/Select/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/know-prashant/react-components/HEAD/src/Components/Select/index.js -------------------------------------------------------------------------------- /src/Components/Select/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/know-prashant/react-components/HEAD/src/Components/Select/index.module.css -------------------------------------------------------------------------------- /src/Components/SlidingMenu/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/know-prashant/react-components/HEAD/src/Components/SlidingMenu/index.js -------------------------------------------------------------------------------- /src/Components/SlidingMenu/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/know-prashant/react-components/HEAD/src/Components/SlidingMenu/index.module.css -------------------------------------------------------------------------------- /src/Components/SlidingMenu/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/know-prashant/react-components/HEAD/src/Components/SlidingMenu/test.js -------------------------------------------------------------------------------- /src/Components/SortableItems/arrayMove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/know-prashant/react-components/HEAD/src/Components/SortableItems/arrayMove.js -------------------------------------------------------------------------------- /src/Components/SortableItems/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/know-prashant/react-components/HEAD/src/Components/SortableItems/index.js -------------------------------------------------------------------------------- /src/Components/SortableItems/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/know-prashant/react-components/HEAD/src/Components/SortableItems/index.module.css -------------------------------------------------------------------------------- /src/Components/Tab/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/know-prashant/react-components/HEAD/src/Components/Tab/index.js -------------------------------------------------------------------------------- /src/Components/Tab/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/know-prashant/react-components/HEAD/src/Components/Tab/index.module.css -------------------------------------------------------------------------------- /src/Components/Tab/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/know-prashant/react-components/HEAD/src/Components/Tab/test.js -------------------------------------------------------------------------------- /src/Components/Timeline/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/know-prashant/react-components/HEAD/src/Components/Timeline/index.js -------------------------------------------------------------------------------- /src/Components/Timeline/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/know-prashant/react-components/HEAD/src/Components/Timeline/index.module.css -------------------------------------------------------------------------------- /src/Components/ToggleSwitch/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/know-prashant/react-components/HEAD/src/Components/ToggleSwitch/index.js -------------------------------------------------------------------------------- /src/Components/ToggleSwitch/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/know-prashant/react-components/HEAD/src/Components/ToggleSwitch/index.module.css -------------------------------------------------------------------------------- /src/Components/Tooltip/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/know-prashant/react-components/HEAD/src/Components/Tooltip/index.js -------------------------------------------------------------------------------- /src/Components/Tooltip/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/know-prashant/react-components/HEAD/src/Components/Tooltip/index.module.css -------------------------------------------------------------------------------- /src/Components/TypingEffect/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/know-prashant/react-components/HEAD/src/Components/TypingEffect/index.js -------------------------------------------------------------------------------- /src/Components/TypingEffect/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/know-prashant/react-components/HEAD/src/Components/TypingEffect/index.module.css -------------------------------------------------------------------------------- /src/Components/VoiceVisualizer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/know-prashant/react-components/HEAD/src/Components/VoiceVisualizer/index.js -------------------------------------------------------------------------------- /src/Components/VoiceVisualizer/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/know-prashant/react-components/HEAD/src/Components/VoiceVisualizer/index.module.css -------------------------------------------------------------------------------- /src/Components/VoiceVisualizer/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/know-prashant/react-components/HEAD/src/Components/VoiceVisualizer/test.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/know-prashant/react-components/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/know-prashant/react-components/HEAD/src/index.js -------------------------------------------------------------------------------- /src/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/know-prashant/react-components/HEAD/src/loader.gif -------------------------------------------------------------------------------- /src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/know-prashant/react-components/HEAD/src/serviceWorker.js -------------------------------------------------------------------------------- /src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/know-prashant/react-components/HEAD/src/setupTests.js --------------------------------------------------------------------------------