Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save realtomaszkula/f1ff1bc1a4f7814180660d277192feb8 to your computer and use it in GitHub Desktop.
Save realtomaszkula/f1ff1bc1a4f7814180660d277192feb8 to your computer and use it in GitHub Desktop.
@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