ngx-atomic

An UI framework built on Angular Material

Usage no npm install needed!

<script type="module">
  import ngxAtomic from 'https://cdn.skypack.dev/ngx-atomic';
</script>

README

Atomic Framework

An UI Platform for layouts, icons, custom components and themes. This should be added as a dependency for any project that wants to use layouts, icons and themes for Angular Material.

Installation

This component can be installed as npm package.

npm i -save ngx-atomic

Setup

Import the modules from ngx-atomic/core, ngx-atomic/forms or ngx-atomic/components as needed in your NgModule:

import { AtLayoutModule } from 'ngx-atomic';
import { AtChips } from 'ngx-atomic';

@NgModule({
  imports: [
    AtLayoutModule,
    AtChips,
    ...
  ],
  ...
})
export class MyModule {}