* Upload the SVG file as a static resource in Salesforce. * Import it in the LWC JavaScript file and define it as a property. * Reference the property in the component's HTML template. Example: import mySvg from '@salesforce/resourceUrl/mySvg'; export default class MyComponent extends LightningElement { svgUrl = mySvg; }