Вы передаете его так же, как передавали его от родительского к дочернему компоненту.
Родительский компонент
<app-child [customInput]="input></app-child>
Дочерний компонент
Контроллер
export class ChildComponent {
@Input() customInput: any;
.
.
}
Шаблон
<app-grandchild [customInput]="customInput"></app-grandchild>
Великий ребенок
Контроллер
import { Component, OnInit, OnDestroy, ChangeDetectionRef } from '@angular/core';
export class GrandChildComponent {
@Input() customInput: any;
.
.
}