Skip to content

Icons!

Warp Android release 0.0.29

2024-10-11

Warp Icon support

kotlin
Icon(
        imageVector = WarpTheme.icons.animalPaw,
        contentDescription = "Image of an animal paw",
        tint = WarpTheme.colors.icon.primary,
        modifier = Modifier.size(WarpTheme.dimensions.icon.default)
    )
xml
<ImageView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:src="@drawable/animalpaw"
    />