gitextract_ypb2kcij/ ├── .eslintrc.js ├── .github/ │ └── workflows/ │ ├── public.yml │ └── release.yml ├── .gitignore ├── .husky/ │ └── commit-msg ├── CHANGELOG.md ├── LICENSE ├── README.md ├── babel.config.js ├── commitlint.config.js ├── jest.setup.js ├── package.json ├── src/ │ ├── components/ │ │ ├── Animation/ │ │ │ ├── Animation.styles.ts │ │ │ └── index.tsx │ │ ├── Avatar/ │ │ │ ├── Avatar.styles.ts │ │ │ └── index.tsx │ │ ├── AvatarList/ │ │ │ └── index.tsx │ │ ├── Content/ │ │ │ ├── Content.styles.ts │ │ │ └── index.tsx │ │ ├── Footer/ │ │ │ ├── Footer.styles.ts │ │ │ └── index.tsx │ │ ├── Header/ │ │ │ ├── Header.styles.ts │ │ │ └── index.tsx │ │ ├── Icon/ │ │ │ ├── close.tsx │ │ │ └── index.tsx │ │ ├── Image/ │ │ │ ├── Image.styles.ts │ │ │ ├── index.tsx │ │ │ └── video.tsx │ │ ├── InstagramStories/ │ │ │ ├── InstagramStories.styles.ts │ │ │ └── index.tsx │ │ ├── List/ │ │ │ ├── List.styles.ts │ │ │ └── index.tsx │ │ ├── Loader/ │ │ │ └── index.tsx │ │ ├── Modal/ │ │ │ ├── Modal.styles.ts │ │ │ ├── gesture.tsx │ │ │ └── index.tsx │ │ └── Progress/ │ │ ├── Progress.styles.ts │ │ ├── index.tsx │ │ └── item.tsx │ ├── core/ │ │ ├── constants/ │ │ │ └── index.ts │ │ ├── dto/ │ │ │ ├── componentsDTO.ts │ │ │ ├── helpersDTO.ts │ │ │ └── instagramStoriesDTO.ts │ │ └── helpers/ │ │ └── storage.ts │ ├── declarations.d.ts │ └── index.tsx ├── tests/ │ └── index.test.js └── tsconfig.json