PM-29866: Remove redundant content description in icon buttons (#6565)

This commit is contained in:
David Perez
2026-02-23 11:41:13 -06:00
committed by GitHub
parent c9f3afa851
commit 8b2aaf9c79
3 changed files with 3 additions and 3 deletions

View File

@@ -40,7 +40,7 @@ fun BitwardenFilledIconButton(
) { ) {
Icon( Icon(
painter = rememberVectorPainter(id = vectorIconRes), painter = rememberVectorPainter(id = vectorIconRes),
contentDescription = contentDescription, contentDescription = null,
) )
} }
} }

View File

@@ -71,7 +71,7 @@ fun BitwardenStandardIconButton(
) { ) {
Icon( Icon(
painter = painter, painter = painter,
contentDescription = contentDescription, contentDescription = null,
) )
} }
} }

View File

@@ -40,7 +40,7 @@ fun BitwardenTonalIconButton(
) { ) {
Icon( Icon(
painter = rememberVectorPainter(id = vectorIconRes), painter = rememberVectorPainter(id = vectorIconRes),
contentDescription = contentDescription, contentDescription = null,
) )
} }
} }