import { Component } from '@angular/core';

@Component({
  selector: 'nz-demo-back-top-basic',
  template: `
    <nz-back-top></nz-back-top>
    Scroll down to see the bottom-right
    <strong> gray </strong>
    button.
  `,
  styles: [`
  :host ::ng-deep strong {
    color: rgba(64, 64, 64, 0.6);
  }
  `]
})
export class NzDemoBackTopBasicComponent { }
