import {
Component,
Input,
HostBinding
} from '@angular/core';
@Component({
selector: 'sam-page-title',
template: `
{{ super }}
{{ title }}
`
})
export class SamPageTitle {
/**
* Skip nav target ID, should be unique
*/
@Input('id') public id = 'primary-content';
/**
* Sets the tabindex attribute on the header tag
*/
@Input() public tabIndex: number = 0;
/**
* Main text of the title
*/
@Input() public title: string;
/**
* Super text of the title
*/
@Input() public super: string;
/**
* If true makes text white
*/
@Input() public inverted: boolean;
}