├── .babelrc ├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE.md ├── README.md ├── docs ├── App.js ├── Box.js ├── Button.js ├── Heading.js ├── Link.js ├── Logo.js ├── Pre.js ├── Text.js ├── index.html ├── logo.png ├── system.js └── theme.js ├── package.json ├── src └── index.js ├── test.js ├── test.js.md └── test.js.snap /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnblk/axs/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnblk/axs/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | docs 2 | .nyc_output 3 | coverage 4 | test.js* 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnblk/axs/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnblk/axs/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnblk/axs/HEAD/README.md -------------------------------------------------------------------------------- /docs/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnblk/axs/HEAD/docs/App.js -------------------------------------------------------------------------------- /docs/Box.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnblk/axs/HEAD/docs/Box.js -------------------------------------------------------------------------------- /docs/Button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnblk/axs/HEAD/docs/Button.js -------------------------------------------------------------------------------- /docs/Heading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnblk/axs/HEAD/docs/Heading.js -------------------------------------------------------------------------------- /docs/Link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnblk/axs/HEAD/docs/Link.js -------------------------------------------------------------------------------- /docs/Logo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnblk/axs/HEAD/docs/Logo.js -------------------------------------------------------------------------------- /docs/Pre.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnblk/axs/HEAD/docs/Pre.js -------------------------------------------------------------------------------- /docs/Text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnblk/axs/HEAD/docs/Text.js -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnblk/axs/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnblk/axs/HEAD/docs/logo.png -------------------------------------------------------------------------------- /docs/system.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnblk/axs/HEAD/docs/system.js -------------------------------------------------------------------------------- /docs/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnblk/axs/HEAD/docs/theme.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnblk/axs/HEAD/package.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnblk/axs/HEAD/src/index.js -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnblk/axs/HEAD/test.js -------------------------------------------------------------------------------- /test.js.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnblk/axs/HEAD/test.js.md -------------------------------------------------------------------------------- /test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnblk/axs/HEAD/test.js.snap --------------------------------------------------------------------------------