Awesome
compose-icons
Compose Multiplatform icons is a pack of libraries that provide well known Icon Packs. The library usage is inspired by Compose Material Icons.
Compose Support
- Android
- Desktop
- iOS
- MacOS Native
- Web (JSCanvas)
- Wasm JS
Adding to your project
Add the project repository:
repositories {
mavenCentral()
}
implementation("br.com.devsrsouza.compose.icons:{ICON_PACK}:1.1.1")
** {ICON_PACK}
is a placeholder, you should replace it with your icon pack of choose.
example: br.com.devsrsouza.compose.icons:font-awesome:1.1.1
Example
Icon(
imageVector = FontAwesomeIcons.Brands.Github,
)
You can find all code reference in the docs of the icon packs bellow.
Icon Packs
Icon pack | Icon Version | Dependency | All Icons Docs |
---|---|---|---|
Simple-Icons | 4.14.0 | simple-icons | docs |
Feather | 4.28.0 | feather | docs |
Tabler Icons | 1.39.1 | tabler-icons | docs |
Eva Icons | 1.1.3 | eva-icons | docs |
Font Awesome | 5.15.2 | font-awesome | docs |
Octicons | 12.1.0 | octicons | docs |
Linea | 1.0 | linea | docs |
Line Awesome | 1.3.0 (a60f113) | line-awesome | docs |
Weather Icons by Erik Flowers | 2.0.12 | erikflowers-weather-icons | docs |
css.gg | 2.0.0 | css-gg | docs |
Version Catalog
[versions]
composeIcons = "1.1.1"
[libraries]
composeIcons-cssGg = { module = "br.com.devsrsouza.compose.icons:css-gg", version.ref = "composeIcons" }
composeIcons-weatherIcons = { module = "br.com.devsrsouza.compose.icons:erikflowers-weather-icons", version.ref = "composeIcons" }
composeIcons-evaIcons = { module = "br.com.devsrsouza.compose.icons:eva-icons", version.ref = "composeIcons" }
composeIcons-feather = { module = "br.com.devsrsouza.compose.icons:feather", version.ref = "composeIcons" }
composeIcons-fontAwesome = { module = "br.com.devsrsouza.compose.icons:font-awesome", version.ref = "composeIcons" }
composeIcons-lineAwesome = { module = "br.com.devsrsouza.compose.icons:line-awesome", version.ref = "composeIcons" }
composeIcons-linea = { module = "br.com.devsrsouza.compose.icons:linea", version.ref = "composeIcons" }
composeIcons-octicons = { module = "br.com.devsrsouza.compose.icons:octicons", version.ref = "composeIcons" }
composeIcons-simpleIcons = { module = "br.com.devsrsouza.compose.icons:simple-icons", version.ref = "composeIcons" }
composeIcons-tablerIcons = { module = "br.com.devsrsouza.compose.icons:tabler-icons", version.ref = "composeIcons" }
Roadmap
- Add more icon packs
- Migrate code generator to Gradle
- Remove icons source from repository and check the abi when generate.
- Improve sample app
- Documentation to how add icon packs
How the project works
The project uses Kotlin Scripting (main.kts) to download and generate the icons into Compose source code, to generate the source code it uses the tooling library svg-to-compose.
Contribution
If you know a icon pack that the project could support, please, submit an issue :D
License
The icon packs have their own license that you can find at the All Icons Docs
Project license:
MIT License
Copyright (c) 2021 DevSrSouza
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Development
Update API Dump: ./gradlew desktopApiDump
Checking API Dump: ./gradlew desktopApiCheck