├── CHANGELOG.md ├── LICENSE ├── README.md ├── composer.json ├── config ├── asset_mapper.php ├── services.php └── twig_component.php └── src ├── Command ├── ImportIconCommand.php ├── LockIconsCommand.php ├── SearchIconCommand.php └── WarmCacheCommand.php ├── DependencyInjection └── UXIconsExtension.php ├── EventListener └── WarmIconCacheOnAssetCompileListener.php ├── Exception ├── HttpClientNotInstalledException.php └── IconNotFoundException.php ├── Icon.php ├── IconCacheWarmer.php ├── IconRegistryInterface.php ├── IconRenderer.php ├── IconRendererInterface.php ├── Iconify.php ├── Registry ├── CacheIconRegistry.php ├── ChainIconRegistry.php ├── IconifyOnDemandRegistry.php └── LocalSvgIconRegistry.php ├── Twig ├── IconFinder.php ├── UXIconComponent.php ├── UXIconExtension.php └── UXIconRuntime.php └── UXIconsBundle.php /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/ux-icons/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/ux-icons/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/ux-icons/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/ux-icons/HEAD/composer.json -------------------------------------------------------------------------------- /config/asset_mapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/ux-icons/HEAD/config/asset_mapper.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/ux-icons/HEAD/config/services.php -------------------------------------------------------------------------------- /config/twig_component.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/ux-icons/HEAD/config/twig_component.php -------------------------------------------------------------------------------- /src/Command/ImportIconCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/ux-icons/HEAD/src/Command/ImportIconCommand.php -------------------------------------------------------------------------------- /src/Command/LockIconsCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/ux-icons/HEAD/src/Command/LockIconsCommand.php -------------------------------------------------------------------------------- /src/Command/SearchIconCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/ux-icons/HEAD/src/Command/SearchIconCommand.php -------------------------------------------------------------------------------- /src/Command/WarmCacheCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/ux-icons/HEAD/src/Command/WarmCacheCommand.php -------------------------------------------------------------------------------- /src/DependencyInjection/UXIconsExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/ux-icons/HEAD/src/DependencyInjection/UXIconsExtension.php -------------------------------------------------------------------------------- /src/EventListener/WarmIconCacheOnAssetCompileListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/ux-icons/HEAD/src/EventListener/WarmIconCacheOnAssetCompileListener.php -------------------------------------------------------------------------------- /src/Exception/HttpClientNotInstalledException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/ux-icons/HEAD/src/Exception/HttpClientNotInstalledException.php -------------------------------------------------------------------------------- /src/Exception/IconNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/ux-icons/HEAD/src/Exception/IconNotFoundException.php -------------------------------------------------------------------------------- /src/Icon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/ux-icons/HEAD/src/Icon.php -------------------------------------------------------------------------------- /src/IconCacheWarmer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/ux-icons/HEAD/src/IconCacheWarmer.php -------------------------------------------------------------------------------- /src/IconRegistryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/ux-icons/HEAD/src/IconRegistryInterface.php -------------------------------------------------------------------------------- /src/IconRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/ux-icons/HEAD/src/IconRenderer.php -------------------------------------------------------------------------------- /src/IconRendererInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/ux-icons/HEAD/src/IconRendererInterface.php -------------------------------------------------------------------------------- /src/Iconify.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/ux-icons/HEAD/src/Iconify.php -------------------------------------------------------------------------------- /src/Registry/CacheIconRegistry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/ux-icons/HEAD/src/Registry/CacheIconRegistry.php -------------------------------------------------------------------------------- /src/Registry/ChainIconRegistry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/ux-icons/HEAD/src/Registry/ChainIconRegistry.php -------------------------------------------------------------------------------- /src/Registry/IconifyOnDemandRegistry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/ux-icons/HEAD/src/Registry/IconifyOnDemandRegistry.php -------------------------------------------------------------------------------- /src/Registry/LocalSvgIconRegistry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/ux-icons/HEAD/src/Registry/LocalSvgIconRegistry.php -------------------------------------------------------------------------------- /src/Twig/IconFinder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/ux-icons/HEAD/src/Twig/IconFinder.php -------------------------------------------------------------------------------- /src/Twig/UXIconComponent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/ux-icons/HEAD/src/Twig/UXIconComponent.php -------------------------------------------------------------------------------- /src/Twig/UXIconExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/ux-icons/HEAD/src/Twig/UXIconExtension.php -------------------------------------------------------------------------------- /src/Twig/UXIconRuntime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/ux-icons/HEAD/src/Twig/UXIconRuntime.php -------------------------------------------------------------------------------- /src/UXIconsBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/ux-icons/HEAD/src/UXIconsBundle.php --------------------------------------------------------------------------------