import { LightningElement, api } from "lwc"; export default class Tooltip extends LightningElement { @api placement?: String = "top"; @api label: string = ""; }