Title here
Summary here
This guide helps you verify that Thulite SVG is resolving and rendering SVG markup as expected.
View page source in your browser and confirm that inline SVG markup is generated.
Check for:
<svg> output where expected (from shortcode and/or partial)id value (for example svg-check) and expected classes (including svg-inline)role, aria-labelledby, and aria-describedby when configured<title> and <desc> nodes when providedwidth, height, viewBox, and custom attributes (for example stroke-width)<!doctype html>
<html lang="en" data-bs-theme="auto">
<head>
</head>
<body>
<svg
xmlns="http://www.w3.org/2000/svg"
class="svg-inline"
id="svg-check"
role="img"
aria-labelledby="title-svg-check"
aria-describedby="desc-svg-check"
width="24"
height="24"
>
<title id="title-svg-check">Success</title>
<desc id="desc-svg-check">Operation completed successfully</desc>
<path d="M5 12l5 5l10 -10"></path>
</svg>
</body>
</html>Confirm that the integration resolves both icon names and SVG file paths correctly.
Check for:
iconSetDir (for example src="check")logo.svg and svgs/logos/logo.svg)If an SVG is not found, review
Placement and
Configuration and verify your src path is correct relative to assets.
Open your pages in DevTools and verify runtime behavior in real conditions.
Check for:
Use external tools to validate accessibility and rendering quality.
For example:
If anything looks incorrect, continue to the Troubleshooting guide.