Q. How should I import icons?
Prefer named imports from a specific icon-set folder:
import { tabOutlineMenu } from 'quasar-extras-svg-icons/tabler-icons-v3'Avoid importing large icon-set modules wholesale in application code. Named imports keep your intent clear and give bundlers the best chance to remove unused icons.
Q. When should I use versioned folders?
When an icon family has multiple supported majors, versioned folders such as tabler-icons-v3 make upgrades more explicit. Unversioned folders may move forward as the package tracks newer upstream releases.
Q. Why do some icons keep fixed colors?
Most monochrome icons are flattened to currentColor, which makes them work naturally with Quasar text and button colors. Some icon sets intentionally keep fixed colors, such as flags or color emoji.
Q. Should I check the source license?
The package ships upstream license files where available. Review the license for the specific icon set before using it in a product with strict compliance requirements.
