import { LightningElement, api } from "lwc"; export default class Logo extends LightningElement { @api href: string = "/"; @api imgSrc: string = "https://developer.salesforce.com/ns-assets/salesforce-cloud.svg"; @api imgAlt: string = "Salesforce logo"; @api label!: string; }