Html Tailwind Guideline: Images — SVG explicit dimensions. Description: Add width/height attributes to SVGs to prevent layout shift before CSS loads. Do: <svg class='size-6' width='24' height='24'>. Don't: SVG without explicit dimensions. Good Example: <svg class='size-6' width='24' height='24'>. Bad Example: <svg class='size-6'>. Severity: High. Docs: .