UNPKG

fonteva-design-guide

Version:

## Dev, Build and Test

12 lines (10 loc) 335 B
import { LightningElement, api, track } from 'lwc'; import BASE from '@salesforce/resourceUrl/PFM_Portal'; export default class PfmSpacer extends LightningElement { @track spacerUrl; @api width = 'auto'; @api height = 'auto'; connectedCallback() { this.spacerUrl = BASE + '/img/spacer.png'; } }