Created
July 2, 2018 11:27
-
-
Save realtomaszkula/f1ff1bc1a4f7814180660d277192feb8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Component({ | |
selector: 'app-bordered-box', | |
template: `<ng-content></ng-content>`, | |
styles: [` | |
:host { | |
border: 1px solid black; | |
} | |
`] | |
}) | |
export class BorderedBoxComponent { | |
private _borderWidth: string; | |
@Input() | |
@HostBinding('style.border-width') | |
set borderWidth(value: string) { | |
this._borderWidth = coerceCssPixelValue(value); | |
} | |
get borderWidth() { | |
return this._borderWidth; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment