├── .github └── workflows │ └── node.js.yml ├── CODEOWNERS ├── LICENSE ├── README.md ├── bower.json ├── generate.js ├── package.json ├── readme.head.md └── readme.tail.md /.github/workflows/node.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-elements/HEAD/.github/workflows/node.js.yml -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @github/primer-reviewers 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-elements/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-elements/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-elements/HEAD/bower.json -------------------------------------------------------------------------------- /generate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-elements/HEAD/generate.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-elements/HEAD/package.json -------------------------------------------------------------------------------- /readme.head.md: -------------------------------------------------------------------------------- 1 | # github-elements 2 | 3 | GitHub's Web Component collection. 4 | -------------------------------------------------------------------------------- /readme.tail.md: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------