@ng-solid/components
v19.5.3
Published
An Angular UI component library based on Ant Design.
Downloads
106
Maintainers
Readme
Angular UI Components
An Angular UI component library based on Ant Design.
Installation
$ ng new PROJECT_NAME
$ cd PROJECT_NAME
$ ng add @ng-solid/componentsYou can also install @ng-solid/components with npm or yarn
Usage
Import the component module you want to use in your app.module.ts file
or feature modules as you need.
Buttons
import { NsButtonModule } from '@ng-solid/components';
@NgModule({
imports: [...NsButtonModule]
})
export class AppModule {}and in your html template
<ns-button label="My Button" [theme]="true"></ns-button>