import {Component, Input} from '@angular/core';
import {animation} from "./animation";
import {transition, trigger} from "@angular/animations";
@Component({
selector: 'slide',
template: `
`,
animations: [animation,
trigger(
"blockInitialRenderAnimation",
[
transition( ":enter", [] )
]
)]
})
export class SlideComponent {
state: number = 1
y: number = -50;
medium: boolean = true;
}