├── .babelrc ├── .gitignore ├── LICENSE.md ├── README.md ├── docs ├── App.js ├── entry.js └── index.html ├── index.js ├── package.json ├── src ├── atoms │ ├── Avatar.js │ ├── ButtonGroup.js │ ├── Collapse.js │ ├── InputGroup.js │ ├── StyleReset.js │ ├── Tab.js │ ├── anchor │ │ └── Anchor.js │ ├── button │ │ ├── Button.js │ │ └── Button.style.js │ ├── checkbox │ │ ├── Checkbox.js │ │ └── Switch.js │ ├── collapse │ │ └── Collapse.js │ ├── div │ │ ├── Div.js │ │ └── Div.style.js │ ├── dropdown │ │ ├── Dropdown.js │ │ └── DropdownMenu.style.js │ ├── grid │ │ ├── Col.js │ │ ├── Col.style.js │ │ ├── Container.js │ │ └── Row.js │ ├── icon │ │ ├── Icon.js │ │ ├── Icon.style.js │ │ └── iconPaths.js │ ├── image │ │ ├── Image.js │ │ └── Image.style.js │ ├── input │ │ ├── Input.js │ │ ├── Input.style.js │ │ └── Textarea.js │ ├── label │ │ └── Label.js │ ├── modal │ │ └── Modal.js │ ├── notification │ │ └── Notification.js │ ├── radiobox │ │ └── Radiobox.js │ ├── sidedrawer │ │ └── SideDrawer.js │ ├── tag │ │ └── Tag.js │ └── text │ │ ├── Text.js │ │ └── Text.style.js ├── core │ ├── THEME.js │ └── ThemeContext.js ├── functions │ ├── currentDevice.js │ └── scrollTo.js ├── index.js └── style-functions │ ├── arrayKeyMapToObject.js │ ├── deviceQuerry.js │ ├── findBorder.js │ ├── findDirection.js │ ├── findRoundedDirection.js │ ├── makeResponsive.js │ └── mergeObjects.js ├── webpack.config.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["@babel/preset-env", "@babel/preset-react"] 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /dist 2 | /node_modules 3 | .DS_Store -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | Atomize React License 2 | 3 | Copyright (c) 2019 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 6 | 7 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 8 | 9 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 10 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

2 | 3 | 4 | 5 |

6 | 7 |

Atomize Code

8 | 9 |
10 | 11 | UI Design System for React JS 12 | 13 | [![npm package](https://img.shields.io/npm/v/atomize.svg?style=flat-square)](https://www.npmjs.org/package/atomize) [![NPM downloads](http://img.shields.io/npm/dm/atomize.svg?style=flat-square)](http://npmjs.com/atomize) [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](http://makeapullrequest.com) 14 | 15 |
16 | 17 | [![](https://firebasestorage.googleapis.com/v0/b/pawan-dev.appspot.com/o/Screenshot%202019-07-19%20at%2011.16.03%20AM.png?alt=media)](http://atomizecode.com) 18 | 19 | ## Features 20 | 21 | - UI design system for web apps. 22 | - Elegant and beautiful React components 23 | 24 | ## Environment Support 25 | 26 | - Modern browsers and Internet Explorer 9+ 27 | - Server-side Rendering 28 | - [Electron](http://electron.atom.io/) 29 | 30 | | [IE / Edge](http://godban.github.io/browsers-support-badges/)
IE / Edge | [Firefox](http://godban.github.io/browsers-support-badges/)
Firefox | [Chrome](http://godban.github.io/browsers-support-badges/)
Chrome | [Safari](http://godban.github.io/browsers-support-badges/)
Safari | [Opera](http://godban.github.io/browsers-support-badges/)
Opera | [Electron](http://godban.github.io/browsers-support-badges/)
Electron | 31 | | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | 32 | | IE9, IE10, IE11, Edge | last 2 versions | last 2 versions | last 2 versions | last 2 versions | last 2 versions | 33 | 34 | ## Install 35 | 36 | ```bash 37 | npm install atomize react-transition-group 38 | ``` 39 | 40 | ```bash 41 | yarn add atomize react-transition-group 42 | ``` 43 | 44 | ## Usage 45 | 46 | ```jsx 47 | import { Button } from "atomize"; 48 | ReactDOM.render(