diff --git a/compound/screenshots/Avatar Colors - Dark.png b/compound/screenshots/Avatar Colors - Dark.png index 3baf602..5cf6cbd 100644 --- a/compound/screenshots/Avatar Colors - Dark.png +++ b/compound/screenshots/Avatar Colors - Dark.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7a08cc01007ac1d1e85ec119e6b428ebf8ac9640560194de94ba9b70910eee8a -size 13410 +oid sha256:caf2de32caf0fa5368da899297e2eabd5a0c6891dd94f81295ef8a933d79ce16 +size 10751 diff --git a/compound/screenshots/Avatar Colors - Light.png b/compound/screenshots/Avatar Colors - Light.png index 3ee6b4f..7069762 100644 --- a/compound/screenshots/Avatar Colors - Light.png +++ b/compound/screenshots/Avatar Colors - Light.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fa2c64328eb84eb999b8c070f11137162a960a59f4b2a080b1602a091e9a513d -size 14109 +oid sha256:80e44e94d7b23af2ec4fd1c5a871851ae2567b40e478b30145de199076f20e95 +size 11296 diff --git a/compound/screenshots/Compound Icons - Dark.png b/compound/screenshots/Compound Icons - Dark.png index 2b3848c..f58a39a 100644 --- a/compound/screenshots/Compound Icons - Dark.png +++ b/compound/screenshots/Compound Icons - Dark.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9d7390a2473da7873ae3fc948643d8931d8a209f302e500ae716758c87ceda50 -size 152647 +oid sha256:db66bcfa418bf69ed6c8e21da939202d956e8ee8aec53062f82a14c4591d0ac9 +size 157549 diff --git a/compound/screenshots/Compound Icons - Light.png b/compound/screenshots/Compound Icons - Light.png index 200acfb..530f348 100644 --- a/compound/screenshots/Compound Icons - Light.png +++ b/compound/screenshots/Compound Icons - Light.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e898ea21f3b5ab040114019dd9bd2943a81fb8069089b88ba74ba019cdcc18a9 -size 159846 +oid sha256:01b299a094f60bd1bc0b060820af2502dfe444b667f0b5848ae29f05daa3ad4f +size 165070 diff --git a/compound/screenshots/Compound Vector Icons - Dark.png b/compound/screenshots/Compound Vector Icons - Dark.png index ea75ebe..345cb07 100644 --- a/compound/screenshots/Compound Vector Icons - Dark.png +++ b/compound/screenshots/Compound Vector Icons - Dark.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1cc1c1ce46f135a7e16d71714d787ef3c7b98ec15a397a8e8220efde32fe9cc6 -size 55303 +oid sha256:a72440bb978d3d7b0b508afb3ac57e91421ab9c0f06285fa35b204add2ce838d +size 56145 diff --git a/compound/screenshots/Compound Vector Icons - Light.png b/compound/screenshots/Compound Vector Icons - Light.png index d14ef31..7dc8195 100644 --- a/compound/screenshots/Compound Vector Icons - Light.png +++ b/compound/screenshots/Compound Vector Icons - Light.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:55e3a500c090461245c17be1c6d75400374688a6c89c93a2687fc9dea4e74eec -size 59016 +oid sha256:7fc919d5e84c4e85417181b3f365513bbce93b013e3cb8b52674245aefd3d53f +size 60032 diff --git a/compound/src/main/kotlin/io/element/android/compound/theme/AvatarColors.kt b/compound/src/main/kotlin/io/element/android/compound/theme/AvatarColors.kt index 64e91cf..1dc0d8e 100644 --- a/compound/src/main/kotlin/io/element/android/compound/theme/AvatarColors.kt +++ b/compound/src/main/kotlin/io/element/android/compound/theme/AvatarColors.kt @@ -13,9 +13,6 @@ import androidx.compose.ui.Modifier import androidx.compose.ui.graphics.Color import androidx.compose.ui.tooling.preview.Preview import androidx.compose.ui.unit.dp -import io.element.android.compound.annotations.CoreColorToken -import io.element.android.compound.tokens.generated.internal.DarkColorTokens -import io.element.android.compound.tokens.generated.internal.LightColorTokens /** * Data class to hold avatar colors. @@ -28,42 +25,25 @@ data class AvatarColors( ) /** - * Avatar colors are not yet part of SemanticColors, so create list here. - * LightColorTokens is internal to the module. + * Avatar colors using semantic tokens. */ -@OptIn(CoreColorToken::class) -val avatarColorsLight = listOf( - AvatarColors(background = LightColorTokens.colorBlue300, foreground = LightColorTokens.colorBlue1200), - AvatarColors(background = LightColorTokens.colorFuchsia300, foreground = LightColorTokens.colorFuchsia1200), - AvatarColors(background = LightColorTokens.colorGreen300, foreground = LightColorTokens.colorGreen1200), - AvatarColors(background = LightColorTokens.colorPink300, foreground = LightColorTokens.colorPink1200), - AvatarColors(background = LightColorTokens.colorOrange300, foreground = LightColorTokens.colorOrange1200), - AvatarColors(background = LightColorTokens.colorCyan300, foreground = LightColorTokens.colorCyan1200), - AvatarColors(background = LightColorTokens.colorPurple300, foreground = LightColorTokens.colorPurple1200), - AvatarColors(background = LightColorTokens.colorLime300, foreground = LightColorTokens.colorLime1200), -) - -/** - * Avatar colors are not yet part of SemanticColors, so create list here. - * DarkColorTokens is internal to the module. - */ -@OptIn(CoreColorToken::class) -val avatarColorsDark = listOf( - AvatarColors(background = DarkColorTokens.colorBlue300, foreground = DarkColorTokens.colorBlue1200), - AvatarColors(background = DarkColorTokens.colorFuchsia300, foreground = DarkColorTokens.colorFuchsia1200), - AvatarColors(background = DarkColorTokens.colorGreen300, foreground = DarkColorTokens.colorGreen1200), - AvatarColors(background = DarkColorTokens.colorPink300, foreground = DarkColorTokens.colorPink1200), - AvatarColors(background = DarkColorTokens.colorOrange300, foreground = DarkColorTokens.colorOrange1200), - AvatarColors(background = DarkColorTokens.colorCyan300, foreground = DarkColorTokens.colorCyan1200), - AvatarColors(background = DarkColorTokens.colorPurple300, foreground = DarkColorTokens.colorPurple1200), - AvatarColors(background = DarkColorTokens.colorLime300, foreground = DarkColorTokens.colorLime1200), -) +@Composable +fun avatarColors(): List { + return listOf( + AvatarColors(background = ElementTheme.colors.bgDecorative1, foreground = ElementTheme.colors.textDecorative1), + AvatarColors(background = ElementTheme.colors.bgDecorative2, foreground = ElementTheme.colors.textDecorative2), + AvatarColors(background = ElementTheme.colors.bgDecorative3, foreground = ElementTheme.colors.textDecorative3), + AvatarColors(background = ElementTheme.colors.bgDecorative4, foreground = ElementTheme.colors.textDecorative4), + AvatarColors(background = ElementTheme.colors.bgDecorative5, foreground = ElementTheme.colors.textDecorative5), + AvatarColors(background = ElementTheme.colors.bgDecorative6, foreground = ElementTheme.colors.textDecorative6), + ) +} @Preview @Composable -internal fun AvatarColorsLightPreview() { - val chunks = avatarColorsLight.chunked(4) +internal fun AvatarColorsPreviewLight() { ElementTheme { + val chunks = avatarColors().chunked(4) Column(verticalArrangement = Arrangement.spacedBy(8.dp)) { for (chunk in chunks) { AvatarColorRow(chunk) @@ -74,9 +54,9 @@ internal fun AvatarColorsLightPreview() { @Preview @Composable -internal fun AvatarColorsDarkPreview() { - val chunks = avatarColorsDark.chunked(4) - ElementTheme { +internal fun AvatarColorsPreviewDark() { + ElementTheme(darkTheme = true) { + val chunks = avatarColors().chunked(4) Column(verticalArrangement = Arrangement.spacedBy(8.dp)) { for (chunk in chunks) { AvatarColorRow(chunk) diff --git a/compound/src/main/kotlin/io/element/android/compound/tokens/generated/CompoundIcons.kt b/compound/src/main/kotlin/io/element/android/compound/tokens/generated/CompoundIcons.kt index 4d42726..227a3a8 100644 --- a/compound/src/main/kotlin/io/element/android/compound/tokens/generated/CompoundIcons.kt +++ b/compound/src/main/kotlin/io/element/android/compound/tokens/generated/CompoundIcons.kt @@ -60,6 +60,9 @@ object CompoundIcons { @Composable fun Bold(): ImageVector { return ImageVector.vectorResource(R.drawable.ic_compound_bold) } + @Composable fun Calendar(): ImageVector { + return ImageVector.vectorResource(R.drawable.ic_compound_calendar) + } @Composable fun Chart(): ImageVector { return ImageVector.vectorResource(R.drawable.ic_compound_chart) } @@ -300,6 +303,9 @@ object CompoundIcons { @Composable fun MarkAsUnread(): ImageVector { return ImageVector.vectorResource(R.drawable.ic_compound_mark_as_unread) } + @Composable fun MarkThreadsAsRead(): ImageVector { + return ImageVector.vectorResource(R.drawable.ic_compound_mark_threads_as_read) + } @Composable fun MarkerReadReceipts(): ImageVector { return ImageVector.vectorResource(R.drawable.ic_compound_marker_read_receipts) } @@ -402,6 +408,9 @@ object CompoundIcons { @Composable fun Restart(): ImageVector { return ImageVector.vectorResource(R.drawable.ic_compound_restart) } + @Composable fun Room(): ImageVector { + return ImageVector.vectorResource(R.drawable.ic_compound_room) + } @Composable fun Search(): ImageVector { return ImageVector.vectorResource(R.drawable.ic_compound_search) } @@ -477,6 +486,9 @@ object CompoundIcons { @Composable fun UnknownSolid(): ImageVector { return ImageVector.vectorResource(R.drawable.ic_compound_unknown_solid) } + @Composable fun Unpin(): ImageVector { + return ImageVector.vectorResource(R.drawable.ic_compound_unpin) + } @Composable fun User(): ImageVector { return ImageVector.vectorResource(R.drawable.ic_compound_user) } @@ -554,6 +566,7 @@ object CompoundIcons { Attachment(), Block(), Bold(), + Calendar(), Chart(), Chat(), ChatNew(), @@ -634,6 +647,7 @@ object CompoundIcons { LockSolid(), MarkAsRead(), MarkAsUnread(), + MarkThreadsAsRead(), MarkerReadReceipts(), Mention(), Menu(), @@ -668,6 +682,7 @@ object CompoundIcons { ReactionAdd(), Reply(), Restart(), + Room(), Search(), Send(), SendSolid(), @@ -693,6 +708,7 @@ object CompoundIcons { Underline(), Unknown(), UnknownSolid(), + Unpin(), User(), UserAdd(), UserAddSolid(), @@ -727,6 +743,7 @@ object CompoundIcons { R.drawable.ic_compound_attachment, R.drawable.ic_compound_block, R.drawable.ic_compound_bold, + R.drawable.ic_compound_calendar, R.drawable.ic_compound_chart, R.drawable.ic_compound_chat, R.drawable.ic_compound_chat_new, @@ -807,6 +824,7 @@ object CompoundIcons { R.drawable.ic_compound_lock_solid, R.drawable.ic_compound_mark_as_read, R.drawable.ic_compound_mark_as_unread, + R.drawable.ic_compound_mark_threads_as_read, R.drawable.ic_compound_marker_read_receipts, R.drawable.ic_compound_mention, R.drawable.ic_compound_menu, @@ -841,6 +859,7 @@ object CompoundIcons { R.drawable.ic_compound_reaction_add, R.drawable.ic_compound_reply, R.drawable.ic_compound_restart, + R.drawable.ic_compound_room, R.drawable.ic_compound_search, R.drawable.ic_compound_send, R.drawable.ic_compound_send_solid, @@ -866,6 +885,7 @@ object CompoundIcons { R.drawable.ic_compound_underline, R.drawable.ic_compound_unknown, R.drawable.ic_compound_unknown_solid, + R.drawable.ic_compound_unpin, R.drawable.ic_compound_user, R.drawable.ic_compound_user_add, R.drawable.ic_compound_user_add_solid, diff --git a/compound/src/main/kotlin/io/element/android/compound/tokens/generated/TypographyTokens.kt b/compound/src/main/kotlin/io/element/android/compound/tokens/generated/TypographyTokens.kt index 0540574..b6ce1d4 100644 --- a/compound/src/main/kotlin/io/element/android/compound/tokens/generated/TypographyTokens.kt +++ b/compound/src/main/kotlin/io/element/android/compound/tokens/generated/TypographyTokens.kt @@ -40,7 +40,7 @@ object TypographyTokens { fontWeight = FontWeight.W500, lineHeight = 22.sp, fontSize = 16.sp, - letterSpacing = 0.015629999999999998.em, + letterSpacing = 0.015625.em, platformStyle = PlatformTextStyle(includeFontPadding = false), lineHeightStyle = LineHeightStyle(LineHeightStyle.Alignment.Center, LineHeightStyle.Trim.None) ) @@ -49,7 +49,7 @@ object TypographyTokens { fontWeight = FontWeight.W400, lineHeight = 22.sp, fontSize = 16.sp, - letterSpacing = 0.015629999999999998.em, + letterSpacing = 0.015625.em, platformStyle = PlatformTextStyle(includeFontPadding = false), lineHeightStyle = LineHeightStyle(LineHeightStyle.Alignment.Center, LineHeightStyle.Trim.None) ) @@ -58,7 +58,7 @@ object TypographyTokens { fontWeight = FontWeight.W500, lineHeight = 20.sp, fontSize = 14.sp, - letterSpacing = 0.01786.em, + letterSpacing = 0.017857.em, platformStyle = PlatformTextStyle(includeFontPadding = false), lineHeightStyle = LineHeightStyle(LineHeightStyle.Alignment.Center, LineHeightStyle.Trim.None) ) @@ -67,7 +67,7 @@ object TypographyTokens { fontWeight = FontWeight.W400, lineHeight = 20.sp, fontSize = 14.sp, - letterSpacing = 0.01786.em, + letterSpacing = 0.017857.em, platformStyle = PlatformTextStyle(includeFontPadding = false), lineHeightStyle = LineHeightStyle(LineHeightStyle.Alignment.Center, LineHeightStyle.Trim.None) ) @@ -76,7 +76,7 @@ object TypographyTokens { fontWeight = FontWeight.W500, lineHeight = 17.sp, fontSize = 12.sp, - letterSpacing = 0.03333.em, + letterSpacing = 0.033333.em, platformStyle = PlatformTextStyle(includeFontPadding = false), lineHeightStyle = LineHeightStyle(LineHeightStyle.Alignment.Center, LineHeightStyle.Trim.None) ) @@ -85,7 +85,7 @@ object TypographyTokens { fontWeight = FontWeight.W400, lineHeight = 17.sp, fontSize = 12.sp, - letterSpacing = 0.03333.em, + letterSpacing = 0.033333.em, platformStyle = PlatformTextStyle(includeFontPadding = false), lineHeightStyle = LineHeightStyle(LineHeightStyle.Alignment.Center, LineHeightStyle.Trim.None) ) @@ -94,7 +94,7 @@ object TypographyTokens { fontWeight = FontWeight.W500, lineHeight = 15.sp, fontSize = 11.sp, - letterSpacing = 0.04545.em, + letterSpacing = 0.045454.em, platformStyle = PlatformTextStyle(includeFontPadding = false), lineHeightStyle = LineHeightStyle(LineHeightStyle.Alignment.Center, LineHeightStyle.Trim.None) ) @@ -103,7 +103,7 @@ object TypographyTokens { fontWeight = FontWeight.W400, lineHeight = 15.sp, fontSize = 11.sp, - letterSpacing = 0.04545.em, + letterSpacing = 0.045454.em, platformStyle = PlatformTextStyle(includeFontPadding = false), lineHeightStyle = LineHeightStyle(LineHeightStyle.Alignment.Center, LineHeightStyle.Trim.None) ) diff --git a/compound/src/main/res/drawable/ic_compound_calendar.xml b/compound/src/main/res/drawable/ic_compound_calendar.xml new file mode 100644 index 0000000..04f2077 --- /dev/null +++ b/compound/src/main/res/drawable/ic_compound_calendar.xml @@ -0,0 +1,9 @@ + + + diff --git a/compound/src/main/res/drawable/ic_compound_chat_problem.xml b/compound/src/main/res/drawable/ic_compound_chat_problem.xml index a8d075a..6ed2ea7 100644 --- a/compound/src/main/res/drawable/ic_compound_chat_problem.xml +++ b/compound/src/main/res/drawable/ic_compound_chat_problem.xml @@ -5,8 +5,8 @@ android:viewportHeight="24"> + android:pathData="M12.71 16.71A0.97 0.97 0 0 1 12 17a0.97 0.97 0 0 1-0.71-0.29A0.97 0.97 0 0 1 11 16c0-0.28 0.1-0.52 0.29-0.71A0.97 0.97 0 0 1 12 15c0.28 0 0.52 0.1 0.71 0.29C12.91 15.48 13 15.72 13 16s-0.1 0.52-0.29 0.71Zm0-4A0.97 0.97 0 0 1 12 13a0.97 0.97 0 0 1-0.71-0.29A0.97 0.97 0 0 1 11 12V8c0-0.28 0.1-0.52 0.29-0.71A0.97 0.97 0 0 1 12 7c0.28 0 0.52 0.1 0.71 0.29C12.91 7.48 13 7.72 13 8v4c0 0.28-0.1 0.52-0.29 0.71Z"/> + android:pathData="M2.95 16.3a10.23 10.23 0 0 1-0.71-2.1A10.17 10.17 0 0 1 2 12a9.74 9.74 0 0 1 0.79-3.9 10.1 10.1 0 0 1 2.14-3.17c0.9-0.9 1.95-1.62 3.17-2.14A9.74 9.74 0 0 1 12 2a9.74 9.74 0 0 1 3.9 0.79 10.1 10.1 0 0 1 3.17 2.14c0.9 0.9 1.62 1.95 2.14 3.17A9.74 9.74 0 0 1 22 12a9.74 9.74 0 0 1-0.79 3.9 10.1 10.1 0 0 1-2.14 3.17c-0.9 0.9-1.95 1.62-3.17 2.14A9.74 9.74 0 0 1 12 22c-0.75 0-1.48-0.08-2.2-0.24a10.23 10.23 0 0 1-2.1-0.71L2.75 22.5a0.94 0.94 0 0 1-1-0.25 0.94 0.94 0 0 1-0.25-1l1.45-4.95Zm4.2 2.8a0.95 0.95 0 0 1 0.28-0.06l0.27-0.01c0.15 0 0.3 0 0.44 0.03s0.28 0.07 0.41 0.14a7.43 7.43 0 0 0 1.68 0.6C10.8 19.93 11.4 20 12 20c2.23 0 4.13-0.77 5.68-2.32C19.23 16.13 20 14.23 20 12c0-2.23-0.78-4.13-2.33-5.67C16.13 4.78 14.24 4 12 4S7.87 4.78 6.33 6.33C4.78 7.87 4 9.77 4 12c0 0.6 0.07 1.2 0.2 1.77s0.33 1.15 0.6 1.68c0.12 0.22 0.18 0.45 0.19 0.69a2.29 2.29 0 0 1-0.09 0.71l-0.95 3.2 3.2-0.95Z"/> diff --git a/compound/src/main/res/drawable/ic_compound_check.xml b/compound/src/main/res/drawable/ic_compound_check.xml index 16a6fdc..e927330 100644 --- a/compound/src/main/res/drawable/ic_compound_check.xml +++ b/compound/src/main/res/drawable/ic_compound_check.xml @@ -5,5 +5,5 @@ android:viewportHeight="24"> + android:pathData="M9.55 17.57c-0.13 0-0.26-0.02-0.38-0.06a0.88 0.88 0 0 1-0.32-0.21L4.55 13c-0.18-0.18-0.27-0.42-0.26-0.71 0-0.3 0.1-0.53 0.28-0.71a0.95 0.95 0 0 1 0.7-0.28 0.95 0.95 0 0 1 0.7 0.28l3.58 3.57 8.47-8.47c0.19-0.19 0.42-0.28 0.72-0.28 0.29 0 0.53 0.1 0.71 0.28 0.18 0.18 0.28 0.42 0.28 0.7 0 0.3-0.1 0.54-0.28 0.72l-9.2 9.2c-0.1 0.1-0.2 0.17-0.33 0.21a1.1 1.1 0 0 1-0.37 0.06Z"/> diff --git a/compound/src/main/res/drawable/ic_compound_chevron_up_down.xml b/compound/src/main/res/drawable/ic_compound_chevron_up_down.xml index ffdfad5..a0931e3 100644 --- a/compound/src/main/res/drawable/ic_compound_chevron_up_down.xml +++ b/compound/src/main/res/drawable/ic_compound_chevron_up_down.xml @@ -5,5 +5,5 @@ android:viewportHeight="24"> + android:pathData="M8.22 8.32C8.04 8.14 7.96 7.9 7.96 7.6s0.1-0.54 0.28-0.72L11.3 3.8c0.1-0.1 0.2-0.17 0.33-0.21a1.18 1.18 0 0 1 0.76 0C12.5 3.63 12.62 3.7 12.7 3.8l3.1 3.1c0.18 0.18 0.27 0.42 0.26 0.71a1 1 0 0 1-0.28 0.72C15.59 8.5 15.35 8.6 15.04 8.6s-0.54-0.1-0.72-0.27L12 6 9.65 8.35C9.47 8.53 9.23 8.62 8.94 8.61a1 1 0 0 1-0.71-0.28ZM12 20.57a0.94 0.94 0 0 1-0.38-0.07 1.31 1.31 0 0 1-0.32-0.2l-3.08-3.08c-0.18-0.18-0.27-0.42-0.27-0.72s0.1-0.54 0.28-0.72c0.18-0.19 0.42-0.28 0.72-0.28s0.54 0.1 0.73 0.28L12 18.1l2.35-2.35c0.18-0.18 0.42-0.27 0.71-0.26 0.3 0 0.53 0.1 0.71 0.29 0.19 0.18 0.28 0.42 0.28 0.72s-0.1 0.54-0.28 0.73L12.7 20.3a1.03 1.03 0 0 1-0.7 0.28Z"/> diff --git a/compound/src/main/res/drawable/ic_compound_circle.xml b/compound/src/main/res/drawable/ic_compound_circle.xml index 00e9a71..a4b1ace 100644 --- a/compound/src/main/res/drawable/ic_compound_circle.xml +++ b/compound/src/main/res/drawable/ic_compound_circle.xml @@ -5,5 +5,5 @@ android:viewportHeight="24"> + android:pathData="M12 22a9.74 9.74 0 0 1-3.9-0.79 10.1 10.1 0 0 1-3.17-2.14c-0.9-0.9-1.62-1.95-2.14-3.17A9.74 9.74 0 0 1 2 12a9.74 9.74 0 0 1 0.79-3.9 10.1 10.1 0 0 1 2.13-3.17c0.9-0.9 1.96-1.62 3.18-2.14A9.74 9.74 0 0 1 12 2a9.74 9.74 0 0 1 3.9 0.79 10.1 10.1 0 0 1 3.17 2.14c0.9 0.9 1.62 1.95 2.14 3.17A9.74 9.74 0 0 1 22 12a9.74 9.74 0 0 1-0.79 3.9 10.1 10.1 0 0 1-2.14 3.17c-0.9 0.9-1.95 1.62-3.17 2.14A9.74 9.74 0 0 1 12 22Zm0-2c2.23 0 4.13-0.78 5.67-2.33C19.23 16.13 20 14.24 20 12s-0.78-4.13-2.33-5.67C16.13 4.78 14.24 4 12 4S7.87 4.78 6.33 6.33C4.78 7.87 4 9.77 4 12s0.78 4.13 2.33 5.67C7.87 19.23 9.77 20 12 20Z"/> diff --git a/compound/src/main/res/drawable/ic_compound_collapse.xml b/compound/src/main/res/drawable/ic_compound_collapse.xml index 763a854..bdeae99 100644 --- a/compound/src/main/res/drawable/ic_compound_collapse.xml +++ b/compound/src/main/res/drawable/ic_compound_collapse.xml @@ -5,5 +5,5 @@ android:viewportHeight="24"> + android:pathData="M12 11.03a1 1 0 0 0 0.29 0.7v0.01c0.19 0.18 0.44 0.3 0.71 0.3h8a1 1 0 1 0 0-2h-5.59L22 3.43a1 1 0 0 0-1.41-1.4L14 8.61V3.03a1 1 0 1 0-2 0v8ZM12 13a1 1 0 0 0-0.29-0.7A1 1 0 0 0 11 12H3a1 1 0 0 0 0 2h5.59L2 20.59A1 1 0 1 0 3.41 22L10 15.41V21a1 1 0 1 0 2 0v-8Z"/> diff --git a/compound/src/main/res/drawable/ic_compound_edit.xml b/compound/src/main/res/drawable/ic_compound_edit.xml index d155d0b..6283283 100644 --- a/compound/src/main/res/drawable/ic_compound_edit.xml +++ b/compound/src/main/res/drawable/ic_compound_edit.xml @@ -6,5 +6,5 @@ + android:pathData="M15.7 2.64a2 2 0 0 1 2.84 0l2.82 2.82a2 2 0 0 1 0 2.83L9.61 20.05a1 1 0 0 1-0.47 0.26l-5.66 1.42a1 1 0 0 1-1.2-1.21l1.4-5.66a1 1 0 0 1 0.27-0.46L15.7 2.64Zm1.23 7.26L14.1 7.07l-8.54 8.54-0.94 3.77 3.77-0.94 8.54-8.54Z"/> diff --git a/compound/src/main/res/drawable/ic_compound_edit_solid.xml b/compound/src/main/res/drawable/ic_compound_edit_solid.xml index b04c490..fce8ac7 100644 --- a/compound/src/main/res/drawable/ic_compound_edit_solid.xml +++ b/compound/src/main/res/drawable/ic_compound_edit_solid.xml @@ -12,6 +12,6 @@ android:pathData="M4.4 13.95l-0.03 0.02-0.42 0.42a1 1 0 0 0-0.26 0.46l-1.41 5.66a1 1 0 0 0 1.2 1.21l5.67-1.4a1 1 0 0 0 0.46-0.27L21.36 8.29a2 2 0 0 0 0-2.82l-2.82-2.83a2 2 0 0 0-2.83 0L4.39 13.95Zm12.72-9.9l-2.97 2.97 2.83 2.83 2.97-2.97-2.83-2.83Z"/> + android:pathData="M4.37 13.97l1.42 1.41-1.42-1.41Zm0.02-0.02l-1.41-1.41H2.97l1.42 1.41Zm-0.44 0.44l1.42 1.42-1.42-1.42ZM3.7 14.86l1.94 0.48-1.94-0.48ZM2.28 20.5l-1.94-0.48 1.94 0.48Zm1.2 1.21L3 19.8l0.49 1.94Zm5.67-1.4l0.48 1.93-0.49-1.94Zm0.46-0.27l1.41 1.41-1.41-1.41ZM21.36 8.29l-1.41-1.41 1.41 1.41Zm0-2.82l1.42-1.42-1.42 1.42Zm-2.82-2.83l-1.42 1.41 1.42-1.41Zm-2.83 0l-1.42-1.42 1.42 1.42Zm-1.56 4.38l-1.42-1.41-1.41 1.41 1.41 1.42 1.42-1.42Zm2.97-2.97l1.41-1.41-1.41-1.42-1.41 1.42 1.41 1.41Zm-0.14 5.8l-1.42 1.42 1.42 1.41 1.41-1.41-1.41-1.42Zm2.97-2.97l1.41 1.41 1.42-1.41-1.42-1.41-1.41 1.41ZM5.8 15.38l0.02-0.03-2.85-2.8-0.02 0.01 2.85 2.81ZM5.37 15.8l0.42-0.42-2.83-2.83-0.42 0.43 2.83 2.82Zm0.26-0.46a1 1 0 0 1-0.26 0.47l-2.83-2.83a3 3 0 0 0-0.8 1.39l3.89 0.97ZM4.22 21l1.41-5.66-3.88-0.97-1.42 5.66L4.21 21ZM3 19.78A1 1 0 0 1 4.22 21l-3.88-0.97c-0.55 2.2 1.44 4.18 3.63 3.63L3 19.79Zm5.66-1.41L3 19.78l0.97 3.89 5.66-1.42-0.97-3.88Zm-0.47 0.26a1 1 0 0 1 0.47-0.26l0.97 3.88a3 3 0 0 0 1.4-0.79L8.2 18.63ZM19.95 6.88l2.83 2.83a4 4 0 0 0 0-5.66l-2.83 2.83Zm-2.83-2.83l2.83 2.83 2.83-2.83-2.83-2.83-2.83 2.83Zm0 0l2.83-2.83a4 4 0 0 0-5.66 0l2.83 2.83ZM5.81 15.37L17.12 4.04l-2.83-2.83L2.98 12.54l2.83 2.83Zm9.75-6.93l2.98-2.97-2.83-2.83-2.98 2.97 2.83 2.83Zm2.83 0L15.56 5.6l-2.83 2.83 2.83 2.83 2.83-2.83Zm0.15-2.97l-2.98 2.97 2.83 2.83 2.97-2.98-2.82-2.82Zm-2.83 0l2.82 2.82 2.83-2.82-2.82-2.83-2.83 2.83Zm4.24 1.41L8.2 18.63l2.82 2.83L22.78 9.71l-2.83-2.83Z"/> diff --git a/compound/src/main/res/drawable/ic_compound_forward.xml b/compound/src/main/res/drawable/ic_compound_forward.xml index c9e19a1..4992ccb 100644 --- a/compound/src/main/res/drawable/ic_compound_forward.xml +++ b/compound/src/main/res/drawable/ic_compound_forward.xml @@ -5,5 +5,5 @@ android:viewportHeight="24"> + android:pathData="M14.6 5.7a1 1 0 0 1 0-1.4 1 1 0 0 1 1.4 0L20.7 9c0.4 0.4 0.4 1.03 0 1.42L16 15.14a1 1 0 0 1-1.4 0 1 1 0 0 1 0-1.42l3.04-3.05H8.49c-1.9 0-3.49 1.6-3.49 3.66C5 16.4 6.6 18 8.49 18h2.1a1 1 0 1 1 0 2h-2.1C5.42 20 3 17.43 3 14.33c0-3.09 2.42-5.66 5.49-5.66h9.05L14.6 5.7Z"/> diff --git a/compound/src/main/res/drawable/ic_compound_inline_code.xml b/compound/src/main/res/drawable/ic_compound_inline_code.xml index 0e2b73d..748988d 100644 --- a/compound/src/main/res/drawable/ic_compound_inline_code.xml +++ b/compound/src/main/res/drawable/ic_compound_inline_code.xml @@ -5,5 +5,5 @@ android:viewportHeight="24"> + android:pathData="M14.96 5.62a1 1 0 0 0-1.92-0.57l-4 13.33a1 1 0 0 0 1.92 0.57l4-13.33ZM5.97 7.23a1 1 0 0 0-1.4 0.13l-3.34 4a1 1 0 0 0 0 1.28l3.34 4a1 1 0 1 0 1.53-1.28L3.3 12l2.8-3.36a1 1 0 0 0-0.13-1.4Zm12.06 0a1 1 0 0 1 1.4 0.13l3.34 4a1 1 0 0 1 0 1.28l-3.33 4a1 1 0 1 1-1.54-1.28L20.7 12l-2.8-3.36a1 1 0 0 1 0.13-1.4Z"/> diff --git a/compound/src/main/res/drawable/ic_compound_link.xml b/compound/src/main/res/drawable/ic_compound_link.xml index c05880f..b9a34ab 100644 --- a/compound/src/main/res/drawable/ic_compound_link.xml +++ b/compound/src/main/res/drawable/ic_compound_link.xml @@ -5,5 +5,5 @@ android:viewportHeight="24"> + android:pathData="M12 19.07c-0.98 0.98-2.16 1.47-3.54 1.47-1.37 0-2.55-0.5-3.53-1.47-0.98-0.98-1.47-2.16-1.47-3.53 0-1.38 0.5-2.56 1.47-3.54l2.12-2.12c0.2-0.2 0.44-0.3 0.7-0.3 0.28 0 0.51 0.1 0.71 0.3 0.2 0.2 0.3 0.43 0.3 0.7 0 0.28-0.1 0.51-0.3 0.71l-2.12 2.12a2.9 2.9 0 0 0-0.88 2.13c0 0.82 0.3 1.53 0.88 2.12 0.6 0.59 1.3 0.88 2.12 0.88s1.54-0.3 2.13-0.88l2.12-2.12c0.2-0.2 0.43-0.3 0.7-0.3 0.28 0 0.51 0.1 0.71 0.3 0.2 0.2 0.3 0.43 0.3 0.7 0 0.27-0.1 0.5-0.3 0.71L12 19.07Zm-1.41-4.24c-0.2 0.2-0.44 0.3-0.71 0.3a0.97 0.97 0 0 1-0.7-0.3 0.97 0.97 0 0 1-0.3-0.7c0-0.28 0.1-0.52 0.3-0.72l4.23-4.24c0.2-0.2 0.44-0.3 0.71-0.3 0.27 0 0.5 0.1 0.7 0.3 0.2 0.2 0.3 0.44 0.3 0.7 0 0.28-0.1 0.52-0.3 0.72l-4.23 4.24Zm6.36-0.7c-0.2 0.2-0.44 0.3-0.7 0.3a0.97 0.97 0 0 1-0.71-0.3 0.97 0.97 0 0 1-0.3-0.72c0-0.27 0.1-0.5 0.3-0.7l2.12-2.12c0.59-0.6 0.88-1.3 0.88-2.13s-0.3-1.53-0.88-2.12a2.9 2.9 0 0 0-2.12-0.88c-0.83 0-1.54 0.3-2.13 0.88L11.3 8.46c-0.2 0.2-0.43 0.3-0.7 0.3a0.97 0.97 0 0 1-0.71-0.3 0.97 0.97 0 0 1-0.3-0.7c0-0.27 0.1-0.5 0.3-0.71L12 4.93c0.98-0.98 2.16-1.47 3.54-1.47 1.37 0 2.55 0.5 3.53 1.47 0.98 0.98 1.47 2.16 1.47 3.54 0 1.37-0.5 2.55-1.47 3.53l-2.12 2.12Z"/> diff --git a/compound/src/main/res/drawable/ic_compound_location_navigator.xml b/compound/src/main/res/drawable/ic_compound_location_navigator.xml index bc5ff44..639d6b9 100644 --- a/compound/src/main/res/drawable/ic_compound_location_navigator.xml +++ b/compound/src/main/res/drawable/ic_compound_location_navigator.xml @@ -5,5 +5,5 @@ android:viewportHeight="24"> + android:pathData="M11 22v-1c-2.08-0.23-3.87-1.1-5.36-2.59-1.5-1.49-2.36-3.28-2.59-5.36h-1a0.97 0.97 0 0 1-0.71-0.29 0.97 0.97 0 0 1-0.29-0.71c0-0.28 0.1-0.52 0.29-0.71a0.97 0.97 0 0 1 0.71-0.29h1c0.23-2.08 1.1-3.87 2.59-5.36C7.13 4.19 8.92 3.33 11 3.1v-1a0.97 0.97 0 0 1 0.29-0.71A0.97 0.97 0 0 1 12 1.1a0.97 0.97 0 0 1 0.71 0.29A0.97 0.97 0 0 1 13 2.1v1c2.08 0.23 3.87 1.1 5.36 2.59 1.5 1.49 2.36 3.28 2.59 5.36h1a0.97 0.97 0 0 1 0.71 0.29c0.2 0.19 0.29 0.43 0.29 0.71s-0.1 0.52-0.29 0.71a0.97 0.97 0 0 1-0.71 0.29h-1c-0.23 2.08-1.1 3.87-2.59 5.36-1.49 1.5-3.28 2.36-5.36 2.59v1c0 0.28-0.1 0.52-0.29 0.71A0.97 0.97 0 0 1 12 23a0.97 0.97 0 0 1-0.71-0.29A0.97 0.97 0 0 1 11 22Zm1-2.95c1.93 0 3.58-0.68 4.95-2.05 1.37-1.37 2.05-3.02 2.05-4.95 0-1.93-0.68-3.58-2.05-4.95-1.37-1.37-3.02-2.05-4.95-2.05-1.93 0-3.58 0.68-4.95 2.05C5.68 8.47 5 10.12 5 12.05c0 1.93 0.68 3.58 2.05 4.95 1.37 1.37 3.02 2.05 4.95 2.05Z"/> diff --git a/compound/src/main/res/drawable/ic_compound_location_navigator_centred.xml b/compound/src/main/res/drawable/ic_compound_location_navigator_centred.xml index 3f1e180..14d1af9 100644 --- a/compound/src/main/res/drawable/ic_compound_location_navigator_centred.xml +++ b/compound/src/main/res/drawable/ic_compound_location_navigator_centred.xml @@ -5,5 +5,5 @@ android:viewportHeight="24"> + android:pathData="M11 21.95v-1c-2.08-0.23-3.87-1.1-5.36-2.59-1.5-1.49-2.36-3.28-2.59-5.36h-1a0.97 0.97 0 0 1-0.71-0.29A0.97 0.97 0 0 1 1.05 12a0.97 0.97 0 0 1 0.29-0.71A0.97 0.97 0 0 1 2.05 11h1c0.23-2.08 1.1-3.87 2.59-5.36C7.13 4.14 8.92 3.28 11 3.05v-1a0.97 0.97 0 0 1 0.29-0.71A0.97 0.97 0 0 1 12 1.05a0.97 0.97 0 0 1 0.71 0.29A0.97 0.97 0 0 1 13 2.05v1c2.08 0.23 3.87 1.1 5.36 2.59 1.5 1.49 2.36 3.28 2.59 5.36h1c0.28 0 0.52 0.1 0.71 0.29 0.2 0.19 0.29 0.43 0.29 0.71s-0.1 0.52-0.29 0.71A0.97 0.97 0 0 1 21.95 13h-1c-0.23 2.08-1.1 3.87-2.59 5.36-1.49 1.5-3.28 2.36-5.36 2.59v1c0 0.28-0.1 0.52-0.29 0.71A0.97 0.97 0 0 1 12 22.95a0.97 0.97 0 0 1-0.71-0.29 0.97 0.97 0 0 1-0.29-0.71ZM12 19c1.93 0 3.58-0.68 4.95-2.05C18.32 15.58 19 13.93 19 12c0-1.93-0.68-3.58-2.05-4.95C15.58 5.68 13.93 5 12 5c-1.93 0-3.58 0.68-4.95 2.05C5.68 8.42 5 10.07 5 12c0 1.93 0.68 3.58 2.05 4.95C8.42 18.32 10.07 19 12 19Zm0-3c-1.1 0-2.04-0.4-2.83-1.18C8.4 14.04 8 13.1 8 12s0.4-2.04 1.18-2.83C9.96 8.4 10.9 8 12 8s2.04 0.4 2.83 1.18C15.6 9.96 16 10.9 16 12s-0.4 2.04-1.18 2.83C14.04 15.6 13.1 16 12 16Z"/> diff --git a/compound/src/main/res/drawable/ic_compound_lock_off.xml b/compound/src/main/res/drawable/ic_compound_lock_off.xml index cc44a74..aa764cc 100644 --- a/compound/src/main/res/drawable/ic_compound_lock_off.xml +++ b/compound/src/main/res/drawable/ic_compound_lock_off.xml @@ -5,5 +5,5 @@ android:viewportHeight="24"> + android:pathData="M6 22c-0.55 0-1.02-0.2-1.41-0.59A1.93 1.93 0 0 1 4 20V10c0-0.55 0.2-1.02 0.59-1.41 0.2-0.21 0.44-0.37 0.7-0.46L1.33 4.17a1 1 0 0 1 1.42-1.42L7 7.01V6.99l13 13v0.02l1.25 1.24a1 1 0 0 1-1.42 1.42l-0.9-0.9A1.94 1.94 0 0 1 18 22H6Zm14-4.83V10c0-0.55-0.2-1.02-0.59-1.41A1.93 1.93 0 0 0 18 8h-1V6c0-1.38-0.49-2.56-1.46-3.54C14.56 1.5 13.38 1 12 1S9.44 1.49 8.46 2.46a4.88 4.88 0 0 0-1.22 1.95L9 6.17V6c0-0.83 0.3-1.54 0.88-2.13A2.9 2.9 0 0 1 12 3c0.83 0 1.54 0.3 2.13 0.88S15 5.17 15 6v2h-4.17L20 17.17Z"/> diff --git a/compound/src/main/res/drawable/ic_compound_mark_threads_as_read.xml b/compound/src/main/res/drawable/ic_compound_mark_threads_as_read.xml new file mode 100644 index 0000000..44b76dc --- /dev/null +++ b/compound/src/main/res/drawable/ic_compound_mark_threads_as_read.xml @@ -0,0 +1,9 @@ + + + diff --git a/compound/src/main/res/drawable/ic_compound_notifications_off.xml b/compound/src/main/res/drawable/ic_compound_notifications_off.xml index ab625e5..45bf0e2 100644 --- a/compound/src/main/res/drawable/ic_compound_notifications_off.xml +++ b/compound/src/main/res/drawable/ic_compound_notifications_off.xml @@ -8,5 +8,5 @@ android:pathData="M4.92 2.08l17 17a1 1 0 0 1-1.42 1.42L19 19H4.42c-0.89 0-1.33-1.08-0.7-1.7L5 16v-6s0-2.03 1.1-3.91l-2.6-2.6a1 1 0 0 1 1.42-1.4ZM17 17L7.58 7.57a6.73 6.73 0 0 0-0.5 1.67A6.6 6.6 0 0 0 7 9.98V10v6.82L6.83 17H17ZM17 11.35V9.99 9.84a6.6 6.6 0 0 0-0.08-0.6 6.6 6.6 0 0 0-0.58-1.85c-0.32-0.63-0.77-1.21-1.4-1.63C14.32 5.34 13.4 5 12 5c-0.47 0-0.88 0.04-1.25 0.1L9.14 3.5C9.93 3.19 10.87 3 12 3c7 0 7 7 7 7v3.35l-2-2Z"/> + android:pathData="M10 20h4a2 2 0 0 1-4 0Z"/> diff --git a/compound/src/main/res/drawable/ic_compound_notifications_off_solid.xml b/compound/src/main/res/drawable/ic_compound_notifications_off_solid.xml index e10012f..037313f 100644 --- a/compound/src/main/res/drawable/ic_compound_notifications_off_solid.xml +++ b/compound/src/main/res/drawable/ic_compound_notifications_off_solid.xml @@ -8,5 +8,5 @@ android:pathData="M4.92 2.08l17 17a1 1 0 0 1-1.42 1.42L19 19H4.42c-0.89 0-1.33-1.08-0.7-1.7L5 16v-6s0-2.03 1.1-3.91l-2.6-2.6a1 1 0 0 1 1.42-1.4ZM19 13.35L9.14 3.48C9.93 3.18 10.87 3 12 3c7 0 7 7 7 7v3.35Z"/> + android:pathData="M10 20h4a2 2 0 0 1-4 0Z"/> diff --git a/compound/src/main/res/drawable/ic_compound_offline.xml b/compound/src/main/res/drawable/ic_compound_offline.xml index b077522..f91df98 100644 --- a/compound/src/main/res/drawable/ic_compound_offline.xml +++ b/compound/src/main/res/drawable/ic_compound_offline.xml @@ -5,5 +5,5 @@ android:viewportHeight="24"> + android:pathData="M3.5 3.5a1 1 0 1 0-1.41 1.41l4.1 4.12a5.48 5.48 0 0 0-0.17 1.07A5 5 0 0 0 7 20h10.17l1.92 1.91a1 1 0 0 0 1.41-1.41l-0.98-0.98L7.15 7.14 3.5 3.5Zm18.5 12a4.48 4.48 0 0 1-0.93 2.74L8.64 5.8A5.47 5.47 0 0 1 11.5 5a5.49 5.49 0 0 1 4.25 2 4 4 0 0 1 4.19 4.72A4.5 4.5 0 0 1 22 15.5Z"/> diff --git a/compound/src/main/res/drawable/ic_compound_room.xml b/compound/src/main/res/drawable/ic_compound_room.xml new file mode 100644 index 0000000..533c878 --- /dev/null +++ b/compound/src/main/res/drawable/ic_compound_room.xml @@ -0,0 +1,9 @@ + + + diff --git a/compound/src/main/res/drawable/ic_compound_share.xml b/compound/src/main/res/drawable/ic_compound_share.xml index 749524c..b972c8b 100644 --- a/compound/src/main/res/drawable/ic_compound_share.xml +++ b/compound/src/main/res/drawable/ic_compound_share.xml @@ -5,5 +5,5 @@ android:viewportHeight="24"> + android:pathData="M12 16a0.97 0.97 0 0 1-0.71-0.29A0.97 0.97 0 0 1 11 15V7.85L9.12 9.73c-0.2 0.2-0.43 0.3-0.7 0.3-0.26 0-0.5-0.11-0.72-0.33a0.93 0.93 0 0 1-0.29-0.71A0.98 0.98 0 0 1 7.7 8.3l3.6-3.6c0.1-0.1 0.2-0.17 0.33-0.21 0.11-0.04 0.24-0.06 0.37-0.06s0.26 0.02 0.38 0.06A0.88 0.88 0 0 1 12.7 4.7l3.6 3.6c0.2 0.2 0.3 0.44 0.29 0.71A0.98 0.98 0 0 1 16.3 9.7c-0.2 0.2-0.44 0.3-0.71 0.31a0.93 0.93 0 0 1-0.71-0.28L13 7.84V15c0 0.28-0.1 0.52-0.29 0.71A0.97 0.97 0 0 1 12 16Zm-6 4c-0.55 0-1.02-0.2-1.41-0.59A1.93 1.93 0 0 1 4 18v-2c0-0.28 0.1-0.52 0.29-0.71A0.97 0.97 0 0 1 5 15c0.28 0 0.52 0.1 0.71 0.29C5.91 15.48 6 15.72 6 16v2h12v-2a0.97 0.97 0 0 1 0.29-0.71A0.97 0.97 0 0 1 19 15a0.97 0.97 0 0 1 0.71 0.29C19.91 15.48 20 15.72 20 16v2c0 0.55-0.2 1.02-0.59 1.41A1.93 1.93 0 0 1 18 20H6Z"/> diff --git a/compound/src/main/res/drawable/ic_compound_sign_out.xml b/compound/src/main/res/drawable/ic_compound_sign_out.xml index e7d2869..b27c2b1 100644 --- a/compound/src/main/res/drawable/ic_compound_sign_out.xml +++ b/compound/src/main/res/drawable/ic_compound_sign_out.xml @@ -5,5 +5,5 @@ android:viewportHeight="24"> + android:pathData="M9 12.03c0-0.28 0.1-0.52 0.29-0.71A0.97 0.97 0 0 1 10 11.03h7.15l-1.88-1.88a0.96 0.96 0 0 1-0.3-0.7c0-0.26 0.11-0.5 0.33-0.72a0.93 0.93 0 0 1 0.71-0.29 0.98 0.98 0 0 1 0.69 0.29l3.6 3.6c0.1 0.1 0.17 0.2 0.21 0.33 0.04 0.11 0.06 0.24 0.06 0.37s-0.02 0.26-0.06 0.38a0.88 0.88 0 0 1-0.21 0.32l-3.6 3.6a0.93 0.93 0 0 1-0.71 0.29 0.98 0.98 0 0 1-0.69-0.29 1.02 1.02 0 0 1-0.31-0.71 0.93 0.93 0 0 1 0.28-0.72l1.88-1.87H10a0.97 0.97 0 0 1-0.71-0.29A0.97 0.97 0 0 1 9 12.03Zm-6-7c0-0.55 0.2-1.02 0.59-1.41A1.93 1.93 0 0 1 5 3.03h6a0.97 0.97 0 0 1 0.71 0.29A0.97 0.97 0 0 1 12 4.03a0.97 0.97 0 0 1-0.29 0.71A0.97 0.97 0 0 1 11 5.03H5v14h6a0.97 0.97 0 0 1 0.71 0.29 0.97 0.97 0 0 1 0.29 0.71 0.97 0.97 0 0 1-0.29 0.71 0.97 0.97 0 0 1-0.71 0.29H5c-0.55 0-1.02-0.2-1.41-0.59A1.93 1.93 0 0 1 3 19.03v-14Z"/> diff --git a/compound/src/main/res/drawable/ic_compound_strikethrough.xml b/compound/src/main/res/drawable/ic_compound_strikethrough.xml index e7a51a3..eb56acc 100644 --- a/compound/src/main/res/drawable/ic_compound_strikethrough.xml +++ b/compound/src/main/res/drawable/ic_compound_strikethrough.xml @@ -5,5 +5,5 @@ android:viewportHeight="24"> + android:pathData="M12.15 20c-1.27 0-2.4-0.38-3.38-1.13-0.98-0.75-1.69-1.77-2.12-3.07l2.2-0.95c0.23 0.8 0.64 1.46 1.21 1.98 0.58 0.51 1.29 0.77 2.14 0.77 0.7 0 1.33-0.17 1.9-0.5 0.57-0.33 0.85-0.87 0.85-1.6 0-0.3-0.06-0.57-0.17-0.82A2.36 2.36 0 0 0 14.3 14h2.8a4.28 4.28 0 0 1 0.25 1.5c0 1.43-0.51 2.54-1.54 3.33C14.8 19.6 13.57 20 12.15 20ZM3 12a0.97 0.97 0 0 1-0.71-0.29A0.97 0.97 0 0 1 2 11c0-0.28 0.1-0.52 0.29-0.71A0.97 0.97 0 0 1 3 10h18c0.28 0 0.52 0.1 0.71 0.29C21.91 10.48 22 10.72 22 11s-0.1 0.52-0.29 0.71A0.97 0.97 0 0 1 21 12H3Zm9.05-8.15c1.1 0 2.06 0.27 2.89 0.81 0.82 0.54 1.46 1.37 1.91 2.49l-2.2 0.97a2.99 2.99 0 0 0-0.84-1.3c-0.4-0.38-0.98-0.57-1.71-0.57-0.68 0-1.25 0.15-1.7 0.46C9.95 7.02 9.7 7.45 9.65 8h-2.4c0.03-1.15 0.49-2.13 1.36-2.94 0.88-0.8 2.02-1.21 3.44-1.21Z"/> diff --git a/compound/src/main/res/drawable/ic_compound_switch_camera_solid.xml b/compound/src/main/res/drawable/ic_compound_switch_camera_solid.xml index 0d60f1e..227ce9d 100644 --- a/compound/src/main/res/drawable/ic_compound_switch_camera_solid.xml +++ b/compound/src/main/res/drawable/ic_compound_switch_camera_solid.xml @@ -5,7 +5,7 @@ android:viewportHeight="24"> + android:pathData="M15.8 2.3a1 1 0 0 1 1.4 0l2 2a1 1 0 0 1 0 1.4l-2 2a1 1 0 1 1-1.4-1.4L16.08 6H5.5a2 2 0 0 0-2 2v7a1 1 0 1 1-2 0V8a4 4 0 0 1 4-4h10.59l-0.3-0.3a1 1 0 0 1 0-1.4ZM17.5 18H6.91l0.3-0.3a1 1 0 1 0-1.42-1.4l-2 2a1 1 0 0 0 0 1.4l2 2a1 1 0 0 0 1.42-1.4L6.9 20H17.5a4 4 0 0 0 4-4V9a1 1 0 1 0-2 0v7a2 2 0 0 1-2 2Z"/> diff --git a/compound/src/main/res/drawable/ic_compound_unpin.xml b/compound/src/main/res/drawable/ic_compound_unpin.xml new file mode 100644 index 0000000..a26ca84 --- /dev/null +++ b/compound/src/main/res/drawable/ic_compound_unpin.xml @@ -0,0 +1,13 @@ + + + + diff --git a/compound/src/main/res/drawable/ic_compound_verified.xml b/compound/src/main/res/drawable/ic_compound_verified.xml index 3d1130d..3d3e62c 100644 --- a/compound/src/main/res/drawable/ic_compound_verified.xml +++ b/compound/src/main/res/drawable/ic_compound_verified.xml @@ -5,5 +5,5 @@ android:viewportHeight="24"> + android:pathData="M8.15 21.75L6.7 19.3l-2.75-0.6a0.94 0.94 0 0 1-0.6-0.39 0.93 0.93 0 0 1-0.17-0.68l0.27-2.83-1.88-2.15A0.93 0.93 0 0 1 1.34 12c0-0.25 0.08-0.47 0.25-0.65L3.45 9.2 3.17 6.37A0.93 0.93 0 0 1 3.36 5.7a0.94 0.94 0 0 1 0.6-0.39L6.7 4.7l1.45-2.45A0.98 0.98 0 0 1 8.7 1.81a0.97 0.97 0 0 1 0.7 0.04l2.6 1.1 2.6-1.1a0.97 0.97 0 0 1 0.7-0.04 0.98 0.98 0 0 1 0.55 0.44L17.3 4.7l2.75 0.6c0.25 0.05 0.45 0.18 0.6 0.39 0.15 0.2 0.2 0.43 0.18 0.68L20.55 9.2l1.88 2.15c0.16 0.18 0.25 0.4 0.25 0.65s-0.09 0.47-0.25 0.65l-1.88 2.15 0.28 2.83a0.93 0.93 0 0 1-0.18 0.68 0.94 0.94 0 0 1-0.6 0.39l-2.75 0.6-1.45 2.45a0.98 0.98 0 0 1-0.55 0.44 0.97 0.97 0 0 1-0.7-0.04l-2.6-1.1-2.6 1.1a0.97 0.97 0 0 1-0.7 0.04 0.98 0.98 0 0 1-0.55-0.44Zm2.8-9.05L9.5 11.28A0.93 0.93 0 0 0 8.81 11c-0.27 0-0.51 0.1-0.71 0.3A0.95 0.95 0 0 0 7.83 12a0.95 0.95 0 0 0 0.27 0.7l2.15 2.15c0.2 0.2 0.43 0.3 0.7 0.3 0.27 0 0.5-0.1 0.7-0.3l4.25-4.25c0.2-0.2 0.3-0.43 0.29-0.7a1.05 1.05 0 0 0-0.29-0.7 1.02 1.02 0 0 0-0.71-0.31 0.93 0.93 0 0 0-0.71 0.28l-3.53 3.53Z"/> diff --git a/compound/src/main/res/drawable/ic_compound_video_call_off.xml b/compound/src/main/res/drawable/ic_compound_video_call_off.xml index 0c5949a..9e24426 100644 --- a/compound/src/main/res/drawable/ic_compound_video_call_off.xml +++ b/compound/src/main/res/drawable/ic_compound_video_call_off.xml @@ -5,5 +5,5 @@ android:viewportHeight="24"> + android:pathData="M2.75 2.75l1.6 1.6L6.02 6H5.99L16 16l2 2 3.25 3.25a1 1 0 0 1-1.42 1.42l-2.9-2.9A2 2 0 0 1 16 20H6a4 4 0 0 1-4-4V8c0-0.9 0.3-1.72 0.79-2.38L1.33 4.17a1 1 0 0 1 1.42-1.42Zm1.48 4.32A2 2 0 0 0 4 8v8a2 2 0 0 0 2 2h9.17L4.23 7.07ZM16 6H8.83l-2-2H16a2 2 0 0 1 2 2v4.29l3.35-2.87A1 1 0 0 1 23 8.16v7.65a1 1 0 0 1-1.65 0.76L18 13.73v1.44l-2-2V6Zm5 7.65v-3.3L19.07 12 21 13.65Z"/> diff --git a/compound/src/main/res/drawable/ic_compound_video_call_off_solid.xml b/compound/src/main/res/drawable/ic_compound_video_call_off_solid.xml index 87d0174..4f329c8 100644 --- a/compound/src/main/res/drawable/ic_compound_video_call_off_solid.xml +++ b/compound/src/main/res/drawable/ic_compound_video_call_off_solid.xml @@ -5,5 +5,5 @@ android:viewportHeight="24"> + android:pathData="M2.75 2.75l1.6 1.6L18 18v0.02l3.25 3.24a1 1 0 0 1-1.42 1.42l-2.9-2.9A2 2 0 0 1 16 20H6a4 4 0 0 1-4-4V8c0-0.9 0.3-1.72 0.79-2.38L1.33 4.17a1 1 0 0 1 1.42-1.42ZM18 15.17L6.83 4H16a2 2 0 0 1 2 2v4.29l3.35-2.87A1 1 0 0 1 23 8.16v7.65a1 1 0 0 1-1.65 0.76L18 13.73v1.44Z"/> diff --git a/compound/src/main/res/drawable/ic_compound_visibility_off.xml b/compound/src/main/res/drawable/ic_compound_visibility_off.xml index 5bb70e6..e973ab4 100644 --- a/compound/src/main/res/drawable/ic_compound_visibility_off.xml +++ b/compound/src/main/res/drawable/ic_compound_visibility_off.xml @@ -5,5 +5,5 @@ android:viewportHeight="24"> + android:pathData="M16.1 13.3l-1.45-1.45c0.15-0.78-0.07-1.52-0.67-2.2-0.6-0.68-1.38-0.95-2.33-0.8L10.2 7.4c0.28-0.13 0.57-0.23 0.86-0.3A4.2 4.2 0 0 1 12 7c1.25 0 2.31 0.44 3.19 1.31 0.87 0.88 1.31 1.94 1.31 3.19 0 0.33-0.03 0.65-0.1 0.94a4.29 4.29 0 0 1-0.3 0.86Zm3.2 3.15l-1.45-1.4a10.95 10.95 0 0 0 1.69-1.59 8.9 8.9 0 0 0 1.26-1.96 9.84 9.84 0 0 0-3.59-4.01C15.65 6.49 13.91 6 12 6c-0.48 0-0.96 0.03-1.43 0.1A9.62 9.62 0 0 0 9.2 6.4L7.65 4.85A11.08 11.08 0 0 1 12 4c2.38 0 4.53 0.63 6.42 1.89 1.9 1.26 3.33 2.9 4.28 4.91a0.81 0.81 0 0 1 0.1 0.31l0.03 0.39a1.97 1.97 0 0 1-0.13 0.7 10.9 10.9 0 0 1-3.4 4.25Zm-0.2 5.45l-3.5-3.45c-0.58 0.18-1.17 0.32-1.76 0.41-0.6 0.1-1.2 0.14-1.84 0.14-2.38 0-4.53-0.63-6.42-1.89-1.9-1.26-3.33-2.9-4.28-4.91a0.81 0.81 0 0 1-0.1-0.31 2.93 2.93 0 0 1 0-0.77 0.8 0.8 0 0 1 0.1-0.3c0.35-0.75 0.77-1.44 1.25-2.07A13.3 13.3 0 0 1 4.15 7L2.07 4.9A0.93 0.93 0 0 1 1.8 4.21c0-0.27 0.1-0.51 0.3-0.71a0.95 0.95 0 0 1 0.7-0.27 0.95 0.95 0 0 1 0.7 0.27l17 17c0.18 0.18 0.28 0.41 0.29 0.69a0.93 0.93 0 0 1-0.29 0.71 0.95 0.95 0 0 1-0.7 0.28 0.95 0.95 0 0 1-0.7-0.28ZM5.55 8.4a10.72 10.72 0 0 0-1.32 1.43A9.01 9.01 0 0 0 3.2 11.5a9.83 9.83 0 0 0 3.59 4.01c1.56 1 3.3 1.49 5.21 1.49 0.33 0 0.66-0.02 0.97-0.06l0.98-0.14-0.9-0.95c-0.18 0.05-0.36 0.09-0.53 0.11A3.54 3.54 0 0 1 12 16c-1.25 0-2.31-0.44-3.19-1.31C7.94 13.8 7.5 12.75 7.5 11.5c0-0.18 0.01-0.36 0.04-0.53a4.55 4.55 0 0 1 0.11-0.52L5.55 8.4Z"/> diff --git a/compound/src/main/res/drawable/ic_compound_voice_call.xml b/compound/src/main/res/drawable/ic_compound_voice_call.xml index a3f7ab9..cfaf123 100644 --- a/compound/src/main/res/drawable/ic_compound_voice_call.xml +++ b/compound/src/main/res/drawable/ic_compound_voice_call.xml @@ -5,5 +5,5 @@ android:viewportHeight="24"> + android:pathData="M20.96 16.37L21 19.9c0 0.29-0.11 0.54-0.33 0.76-0.22 0.22-0.48 0.33-0.76 0.33a15.97 15.97 0 0 1-6.57-1.1 16.22 16.22 0 0 1-5.56-3.67 16.08 16.08 0 0 1-3.65-5.57A16.31 16.31 0 0 1 3 4.09c0-0.29 0.11-0.54 0.33-0.76C3.56 3.1 3.81 3 4.1 3l3.52 0.04a1.07 1.07 0 0 1 1.09 0.93l0.54 3.95c0.03 0.18 0.01 0.35-0.04 0.5a1.09 1.09 0 0 1-0.27 0.43L7.3 10.5c0.34 0.67 0.72 1.31 1.16 1.91 0.43 0.6 1.44 1.7 1.44 1.7s1.1 1 1.7 1.44c0.6 0.43 1.23 0.82 1.9 1.15l1.64-1.64a1.08 1.08 0 0 1 0.43-0.27c0.16-0.05 0.32-0.06 0.5-0.04l3.96 0.55a1.07 1.07 0 0 1 0.93 1.08Z"/> diff --git a/compound/src/main/res/drawable/ic_compound_volume_on_solid.xml b/compound/src/main/res/drawable/ic_compound_volume_on_solid.xml index 29bdee8..7711846 100644 --- a/compound/src/main/res/drawable/ic_compound_volume_on_solid.xml +++ b/compound/src/main/res/drawable/ic_compound_volume_on_solid.xml @@ -8,5 +8,5 @@ android:pathData="M3 14v-4a2 2 0 0 1 2-2h2l3.3-3.3C10.91 4.09 12 4.53 12 5.42V18.6c0 0.89-1.08 1.33-1.7 0.7L7 16H5a2 2 0 0 1-2-2Zm11.12-5.54a1 1 0 0 1 1.42 0A4.99 4.99 0 0 1 17 12c0 1.38-0.56 2.63-1.46 3.54a1 1 0 0 1-1.42-1.42A2.99 2.99 0 0 0 15 12c0-0.83-0.33-1.58-0.88-2.12a1 1 0 0 1 0-1.42Z"/> + android:pathData="M16.95 5.64a1 1 0 0 1 1.41 0A8.97 8.97 0 0 1 21 12a8.97 8.97 0 0 1-2.64 6.36 1 1 0 1 1-1.41-1.41A6.97 6.97 0 0 0 19 12a6.97 6.97 0 0 0-2.05-4.95 1 1 0 0 1 0-1.41Z"/> diff --git a/compound/src/main/res/drawable/ic_compound_warning.xml b/compound/src/main/res/drawable/ic_compound_warning.xml index 7cebbdf..6668034 100644 --- a/compound/src/main/res/drawable/ic_compound_warning.xml +++ b/compound/src/main/res/drawable/ic_compound_warning.xml @@ -5,7 +5,7 @@ android:viewportHeight="24"> + android:pathData="M12.71 17.71A0.97 0.97 0 0 1 12 18a0.97 0.97 0 0 1-0.71-0.29A0.97 0.97 0 0 1 11 17a0.97 0.97 0 0 1 0.29-0.71A0.97 0.97 0 0 1 12 16a0.97 0.97 0 0 1 0.71 0.29A0.97 0.97 0 0 1 13 17a0.97 0.97 0 0 1-0.29 0.71Zm0-4A0.97 0.97 0 0 1 12 14a0.97 0.97 0 0 1-0.71-0.29A0.97 0.97 0 0 1 11 13V9a0.97 0.97 0 0 1 0.29-0.71A0.97 0.97 0 0 1 12 8a0.97 0.97 0 0 1 0.71 0.29A0.97 0.97 0 0 1 13 9v4a0.97 0.97 0 0 1-0.29 0.71Z"/>