├── .gitignore ├── .prettierrc ├── README.md ├── logo.png ├── package.json ├── src └── styleshape.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatorib/styleshape/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatorib/styleshape/HEAD/README.md -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatorib/styleshape/HEAD/logo.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatorib/styleshape/HEAD/package.json -------------------------------------------------------------------------------- /src/styleshape.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatorib/styleshape/HEAD/src/styleshape.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatorib/styleshape/HEAD/yarn.lock --------------------------------------------------------------------------------