gitextract_5k8z2tga/ ├── .changeset/ │ ├── README.md │ └── config.json ├── .github/ │ ├── CODEOWNERS │ ├── ISSUE_TEMPLATE/ │ │ ├── bug-report.md │ │ ├── config.yml │ │ └── feedback.md │ ├── actions/ │ │ ├── build_node/ │ │ │ ├── Dockerfile │ │ │ └── entrypoint.sh │ │ ├── build_ruby/ │ │ │ ├── Dockerfile │ │ │ └── entrypoint.sh │ │ ├── python/ │ │ │ └── requirements.txt │ │ └── version/ │ │ ├── Dockerfile │ │ └── entrypoint.js │ ├── dependabot.yml │ └── workflows/ │ ├── add-to-inbox.yml │ ├── check_for_changeset.yml │ ├── ci.yml │ ├── codeql.yml │ ├── optimize.yml │ ├── publish.yml │ ├── release.yml │ └── stale.yml ├── .gitignore ├── .npmrc ├── .rubocop.yml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Gemfile ├── LICENSE ├── README.md ├── add-octicon-checklist.md ├── keywords.json ├── lib/ │ ├── octicons_gem/ │ │ ├── .npmignore │ │ ├── Gemfile │ │ ├── LICENSE │ │ ├── README.md │ │ ├── Rakefile │ │ ├── lib/ │ │ │ ├── octicons/ │ │ │ │ ├── octicon.rb │ │ │ │ └── version.rb │ │ │ └── octicons.rb │ │ ├── octicons.gemspec │ │ └── test/ │ │ ├── helper.rb │ │ ├── octicon_test.rb │ │ └── octicons_test.rb │ ├── octicons_helper/ │ │ ├── .npmignore │ │ ├── Gemfile │ │ ├── LICENSE │ │ ├── README.md │ │ ├── Rakefile │ │ ├── lib/ │ │ │ ├── octicons_helper/ │ │ │ │ ├── helper.rb │ │ │ │ ├── railtie.rb │ │ │ │ └── version.rb │ │ │ └── octicons_helper.rb │ │ ├── octicons_helper.gemspec │ │ └── test/ │ │ ├── helper.rb │ │ └── octicons_helper_test.rb │ ├── octicons_jekyll/ │ │ ├── .npmignore │ │ ├── .rubocop.yml │ │ ├── Gemfile │ │ ├── LICENSE │ │ ├── README.md │ │ ├── Rakefile │ │ ├── jekyll-octicons.gemspec │ │ ├── lib/ │ │ │ ├── jekyll-octicons/ │ │ │ │ └── version.rb │ │ │ └── jekyll-octicons.rb │ │ └── test/ │ │ ├── helper.rb │ │ └── octicon_tag_test.rb │ ├── octicons_node/ │ │ ├── .npmignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── index.scss │ │ ├── package.json │ │ ├── prettier.config.js │ │ └── tests/ │ │ └── index.js │ ├── octicons_react/ │ │ ├── .eslintignore │ │ ├── .eslintrc.json │ │ ├── .gitignore │ │ ├── .npmignore │ │ ├── .nvmrc │ │ ├── LICENSE │ │ ├── README.md │ │ ├── __tests__/ │ │ │ ├── __snapshots__/ │ │ │ │ └── public-api.test.js.snap │ │ │ ├── public-api.test.js │ │ │ └── tree-shaking.test.js │ │ ├── babel.config.js │ │ ├── jest.config.js │ │ ├── next.config.mjs │ │ ├── package.json │ │ ├── pages/ │ │ │ ├── _document.mjs │ │ │ └── index.mjs │ │ ├── prettier.config.js │ │ ├── rollup.config.js │ │ ├── script/ │ │ │ ├── .eslintrc.json │ │ │ ├── build.js │ │ │ └── types.js │ │ ├── src/ │ │ │ ├── __tests__/ │ │ │ │ ├── .eslintrc.json │ │ │ │ ├── __snapshots__/ │ │ │ │ │ └── octicon.js.snap │ │ │ │ └── octicon.js │ │ │ ├── createIconComponent.js │ │ │ ├── index.d.ts │ │ │ └── index.js │ │ └── ts-tests/ │ │ ├── index.tsx │ │ └── tsconfig.json │ └── octicons_styled/ │ ├── .babelrc │ ├── .eslintignore │ ├── .eslintrc.json │ ├── .gitignore │ ├── .npmignore │ ├── .nvmrc │ ├── LICENSE │ ├── README.md │ ├── package.json │ ├── prettier.config.js │ ├── rollup.config.js │ ├── script/ │ │ ├── .eslintrc.json │ │ ├── build.js │ │ └── copy.sh │ ├── src/ │ │ ├── __tests__/ │ │ │ ├── .eslintrc.json │ │ │ └── octicon.js │ │ └── utils.js │ └── ts-tests/ │ ├── index.tsx │ └── tsconfig.json ├── package.json ├── prettier.config.js ├── script/ │ ├── build.js │ ├── changeset-publish │ └── version ├── svgo.config.js └── tests/ ├── build.js ├── index.js └── snapshots/ ├── build.js.md └── build.js.snap