Updated on 2026-08-14

This commit is contained in:
Tangem 2026-06-29 18:35:57 +03:00
parent 6f3007f0e3
commit 62d1577a00
87 changed files with 3097 additions and 73 deletions

@ -1 +1 @@
Subproject commit 76d6a50dc3161cfc6cc7055afc8ce4ba619ac5c6
Subproject commit 42aac70c1d2d0d636470fa476703cab353010bba

View file

@ -9,7 +9,7 @@ import androidx.compose.foundation.layout.Column
import androidx.compose.foundation.layout.Row
import androidx.compose.foundation.layout.padding
import androidx.compose.foundation.layout.widthIn
import androidx.compose.foundation.shape.RoundedCornerShape
import androidx.compose.foundation.shape.CircleShape
import androidx.compose.material3.Text
import androidx.compose.runtime.Composable
import androidx.compose.runtime.getValue
@ -108,7 +108,7 @@ fun TangemButton(
enabled = isEnabled,
color = backgroundColor,
border = resolveBorder(isFocused = isFocused, colorTokens = colorTokens, contentAlpha = contentAlpha),
shape = RoundedCornerShape(999.dp),
shape = CircleShape,
interactionSource = interactionSource,
isMaterial = variant == TangemButton.Variant.Material,
) {

View file

@ -250,7 +250,7 @@ private fun CloseButton(onClick: () -> Unit) {
@Composable
private fun Preview(@PreviewParameter(TangemSearchStateProvider::class) state: TangemSearch.State) {
TangemThemePreviewRedesign {
Box(modifier = Modifier.background(TangemTheme.colors3.bg.secondary)) {
Box(modifier = Modifier.background(TangemTheme.colors3.bg.tertiary)) {
TangemSearch(
state = state,
modifier = Modifier

View file

@ -12,8 +12,12 @@ import androidx.compose.ui.Alignment
import androidx.compose.ui.Modifier
import androidx.compose.ui.draw.clip
import androidx.compose.ui.geometry.Offset
import androidx.compose.ui.geometry.Size
import androidx.compose.ui.graphics.Brush
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.graphics.LinearGradientShader
import androidx.compose.ui.graphics.Shader
import androidx.compose.ui.graphics.ShaderBrush
import androidx.compose.ui.graphics.Shape
import androidx.compose.ui.unit.DpOffset
import androidx.compose.ui.unit.dp
@ -113,7 +117,7 @@ fun TangemSurface(
@Composable
private fun Modifier.materialShadow(shape: Shape): Modifier = softLayerShadow(
radius = 40.dp,
color = Color.Black.copy(alpha = 0.10f),
color = Color.Black.copy(alpha = 0.12f),
shape = shape,
spread = 0.dp,
offset = DpOffset(x = 0.dp, y = 8.dp),
@ -141,19 +145,22 @@ private fun Modifier.materialBorder(shape: Shape): Modifier = border(
@Composable
private fun Modifier.materialFill(): Modifier {
val isBlurEnabled = LocalHazeState.current.blurEnabled
val material = TangemTheme.colors3.material
val hazed = hazeEffectTangem(
style = HazeStyle(
backgroundColor = TangemTheme.colors3.material.fill.blur,
backgroundColor = Color.Transparent,
blurRadius = 32.dp,
tints = emptyList(),
tints = listOf(
HazeTint(material.fill.blur),
),
),
) {
fallbackTint = HazeTint(Color.Transparent)
}
return hazed.conditionalCompose(!isBlurEnabled) {
// Paint the opaque fill first, then layer the translucent tint on top so both are visible.
background(TangemTheme.colors3.material.fill.solid)
.background(TangemTheme.colors3.material.tint.solid)
background(material.fill.solid)
.background(material.tint.solid)
}
}
@ -162,13 +169,22 @@ private fun Modifier.materialFill(): Modifier {
@ReadOnlyComposable
private fun materialBorderBrush(): Brush {
val border = TangemTheme.colors3.material.border
return Brush.linearGradient(
0f to border.start,
0.5f to border.mid,
1f to border.end,
start = Offset.Zero,
end = Offset.Infinite,
)
val startColor = border.start
val midColor = Color.Transparent
val endColor = border.end
return object : ShaderBrush() {
override fun createShader(size: Size): Shader {
val w = size.width
val h = size.height
val k = 2f * w * h / (w * w + h * h)
return LinearGradientShader(
from = Offset.Zero,
to = Offset(x = k * h, y = k * w),
colors = listOf(startColor, midColor, midColor, endColor),
colorStops = listOf(0f, 0.40f, 0.60f, 1f),
)
}
}
}
// endregion

View file

@ -47,6 +47,9 @@ private enum class SlotId { Start, Content, Group, End }
* @param contentAlign How [contentColumn] is aligned horizontally within the bar.
* @param windowInsets Top inset applied above the row. Pass `WindowInsets(0)` inside a bottom
* sheet / modal.
* @param contentPadding Inner padding applied to the row, inside [windowInsets]. Defaults to
* [TangemTopNavigation.DefaultContentPadding] (top 8, bottom 16, horizontal 16). Override a single
* edge via [com.tangem.core.ui.extensions.copy], e.g. `DefaultContentPadding.copy(top = 16.dp)`.
* @param blurBackground Whether the fade behind the row should blur the content below.
* @param startButton Leading slot. Typically a back button (see [TangemButton.Back]).
* @param endButtonsGroup Optional pill-grouped secondary actions placed just before [endButton].
@ -59,6 +62,7 @@ fun TangemTopNavigation(
modifier: Modifier = Modifier,
contentAlign: TangemTopNavigation.ContentAlign = TangemTopNavigation.ContentAlign.Start,
windowInsets: WindowInsets = WindowInsets.statusBars,
contentPadding: PaddingValues = TangemTopNavigation.DefaultContentPadding,
blurBackground: Boolean = true,
startButton: (@Composable () -> Unit)? = null,
endButtonsGroup: (@Composable RowScope.() -> Unit)? = null,
@ -89,12 +93,7 @@ fun TangemTopNavigation(
modifier = Modifier
.fillMaxWidth()
.windowInsetsPadding(windowInsets)
.padding(
top = 8.dp,
bottom = 16.dp,
start = 16.dp,
end = 16.dp,
),
.padding(contentPadding),
content = {
val displayedStart = rememberLastNonNull(startButton)
Box(modifier = Modifier.layoutId(SlotId.Start)) {
@ -208,6 +207,7 @@ fun TangemTopNavigation(
subtitle: TextReference? = null,
contentAlign: TangemTopNavigation.ContentAlign = TangemTopNavigation.ContentAlign.Start,
windowInsets: WindowInsets = WindowInsets.statusBars,
contentPadding: PaddingValues = TangemTopNavigation.DefaultContentPadding,
blurBackground: Boolean = true,
onBack: (() -> Unit)? = null,
endButtonsGroup: (@Composable RowScope.() -> Unit)? = null,
@ -217,6 +217,7 @@ fun TangemTopNavigation(
modifier = modifier,
contentAlign = contentAlign,
windowInsets = windowInsets,
contentPadding = contentPadding,
blurBackground = blurBackground,
startButton = onBack?.let { { TangemButton.Back(onClick = it) } },
endButtonsGroup = endButtonsGroup,
@ -233,6 +234,7 @@ fun TangemTopNavigation(
subtitle: TextReference? = null,
contentAlign: TangemTopNavigation.ContentAlign = TangemTopNavigation.ContentAlign.Start,
windowInsets: WindowInsets = WindowInsets.statusBars,
contentPadding: PaddingValues = TangemTopNavigation.DefaultContentPadding,
blurBackground: Boolean = true,
endButtonsGroup: (@Composable RowScope.() -> Unit)? = null,
onClose: (() -> Unit)? = null,
@ -242,6 +244,7 @@ fun TangemTopNavigation(
modifier = modifier,
contentAlign = contentAlign,
windowInsets = windowInsets,
contentPadding = contentPadding,
blurBackground = blurBackground,
startButton = startButton,
endButtonsGroup = endButtonsGroup,
@ -258,6 +261,7 @@ fun TangemTopNavigation(
subtitle: TextReference? = null,
contentAlign: TangemTopNavigation.ContentAlign = TangemTopNavigation.ContentAlign.Start,
windowInsets: WindowInsets = WindowInsets.statusBars,
contentPadding: PaddingValues = TangemTopNavigation.DefaultContentPadding,
blurBackground: Boolean = true,
onBack: (() -> Unit)? = null,
endButton: @Composable () -> Unit,
@ -266,6 +270,7 @@ fun TangemTopNavigation(
modifier = modifier,
contentAlign = contentAlign,
windowInsets = windowInsets,
contentPadding = contentPadding,
blurBackground = blurBackground,
startButton = onBack?.let { { TangemButton.Back(onClick = it) } },
endButton = endButton,
@ -308,7 +313,7 @@ private fun ColumnScope.TitleSubtitle(title: TextReference, subtitle: TextRefere
) {
displayedSubtitle?.let { text ->
Column {
Spacer(Modifier.height(2.dp))
Spacer(Modifier.height(4.dp))
TangemNavigationText(text = text, role = TangemNavigationText.Role.Subtitle)
}
}
@ -317,6 +322,15 @@ private fun ColumnScope.TitleSubtitle(title: TextReference, subtitle: TextRefere
object TangemTopNavigation {
/** Default inner padding of the row: top 8, bottom 16, horizontal 16. */
@Suppress("MagicNumber")
val DefaultContentPadding: PaddingValues = PaddingValues(
top = 8.dp,
bottom = 16.dp,
start = 16.dp,
end = 16.dp,
)
/** Horizontal alignment of the center content slot. */
enum class ContentAlign {
Start, Center

View file

@ -0,0 +1,22 @@
package com.tangem.core.ui.extensions
import androidx.compose.foundation.layout.PaddingValues
import androidx.compose.foundation.layout.calculateEndPadding
import androidx.compose.foundation.layout.calculateStartPadding
import androidx.compose.runtime.Composable
import androidx.compose.ui.platform.LocalLayoutDirection
import androidx.compose.ui.unit.Dp
/**
* Returns a copy of this [PaddingValues] with the given edges overridden, leaving the rest unchanged.
*/
@Composable
fun PaddingValues.copy(start: Dp? = null, top: Dp? = null, end: Dp? = null, bottom: Dp? = null): PaddingValues {
val layoutDirection = LocalLayoutDirection.current
return PaddingValues(
start = start ?: calculateStartPadding(layoutDirection),
top = top ?: calculateTopPadding(),
end = end ?: calculateEndPadding(layoutDirection),
bottom = bottom ?: calculateBottomPadding(),
)
}

View file

@ -1 +1 @@
7a974320353cf7ea1e0a25ca074f8e200ce44506044cc5b2bdcb00aee2c6dc85
d90598b8786899b4dbdd8f8744c24c13ea8a9545971b0f20c1c2136be83e63be

View file

@ -19,6 +19,7 @@ class TangemColors3 internal constructor(
val border: Border,
val overlay: Overlay,
val interaction: Interaction,
val glow: Glow,
val material: Material,
) {
@ -135,6 +136,7 @@ class TangemColors3 internal constructor(
orange: Color,
yellow: Color,
green: Color,
neutral: Color,
) {
var blue by mutableStateOf(blue)
private set
@ -148,6 +150,8 @@ class TangemColors3 internal constructor(
private set
var green by mutableStateOf(green)
private set
var neutral by mutableStateOf(neutral)
private set
fun update(other: Accent) {
blue = other.blue
@ -156,6 +160,7 @@ class TangemColors3 internal constructor(
orange = other.orange
yellow = other.yellow
green = other.green
neutral = other.neutral
}
}
@ -264,6 +269,7 @@ class TangemColors3 internal constructor(
orange: Color,
yellow: Color,
green: Color,
neutral: Color,
) {
var blue by mutableStateOf(blue)
private set
@ -277,6 +283,8 @@ class TangemColors3 internal constructor(
private set
var green by mutableStateOf(green)
private set
var neutral by mutableStateOf(neutral)
private set
fun update(other: Accent) {
blue = other.blue
@ -285,6 +293,7 @@ class TangemColors3 internal constructor(
orange = other.orange
yellow = other.yellow
green = other.green
neutral = other.neutral
}
}
@ -361,6 +370,7 @@ class TangemColors3 internal constructor(
orange: Color,
yellow: Color,
green: Color,
neutral: Color,
) {
var blue by mutableStateOf(blue)
private set
@ -374,6 +384,8 @@ class TangemColors3 internal constructor(
private set
var green by mutableStateOf(green)
private set
var neutral by mutableStateOf(neutral)
private set
fun update(other: Accent) {
blue = other.blue
@ -382,6 +394,7 @@ class TangemColors3 internal constructor(
orange = other.orange
yellow = other.yellow
green = other.green
neutral = other.neutral
}
}
@ -485,6 +498,7 @@ class TangemColors3 internal constructor(
orange: Color,
yellow: Color,
green: Color,
neutral: Color,
) {
var blue by mutableStateOf(blue)
private set
@ -498,6 +512,8 @@ class TangemColors3 internal constructor(
private set
var green by mutableStateOf(green)
private set
var neutral by mutableStateOf(neutral)
private set
fun update(other: Accent) {
blue = other.blue
@ -506,6 +522,7 @@ class TangemColors3 internal constructor(
orange = other.orange
yellow = other.yellow
green = other.green
neutral = other.neutral
}
}
@ -534,28 +551,30 @@ class TangemColors3 internal constructor(
@Stable
class Interaction internal constructor(
pressStaticLight: Color,
pressStaticDark: Color,
val press: Press,
val focusRing: FocusRing,
) {
var pressStaticLight by mutableStateOf(pressStaticLight)
private set
var pressStaticDark by mutableStateOf(pressStaticDark)
private set
@Stable
class Press internal constructor(
default: Color,
staticLight: Color,
staticDark: Color,
inverse: Color,
) {
var default by mutableStateOf(default)
private set
var staticLight by mutableStateOf(staticLight)
private set
var staticDark by mutableStateOf(staticDark)
private set
var inverse by mutableStateOf(inverse)
private set
fun update(other: Press) {
default = other.default
staticLight = other.staticLight
staticDark = other.staticDark
inverse = other.inverse
}
}
@ -577,13 +596,319 @@ class TangemColors3 internal constructor(
}
fun update(other: Interaction) {
pressStaticLight = other.pressStaticLight
pressStaticDark = other.pressStaticDark
press.update(other.press)
focusRing.update(other.focusRing)
}
}
@Stable
class Glow internal constructor(
val magic: Magic,
val magicBlend: MagicBlend,
val success: Success,
val error: Error,
val warning: Warning,
val info: Info,
) {
@Stable
class Magic internal constructor(
step1: Color,
step2: Color,
step3: Color,
step4: Color,
step5: Color,
step6: Color,
step7: Color,
step8: Color,
step9: Color,
step10: Color,
) {
var step1 by mutableStateOf(step1)
private set
var step2 by mutableStateOf(step2)
private set
var step3 by mutableStateOf(step3)
private set
var step4 by mutableStateOf(step4)
private set
var step5 by mutableStateOf(step5)
private set
var step6 by mutableStateOf(step6)
private set
var step7 by mutableStateOf(step7)
private set
var step8 by mutableStateOf(step8)
private set
var step9 by mutableStateOf(step9)
private set
var step10 by mutableStateOf(step10)
private set
fun update(other: Magic) {
step1 = other.step1
step2 = other.step2
step3 = other.step3
step4 = other.step4
step5 = other.step5
step6 = other.step6
step7 = other.step7
step8 = other.step8
step9 = other.step9
step10 = other.step10
}
}
@Stable
class MagicBlend internal constructor(
step1: Color,
step2: Color,
step3: Color,
step4: Color,
step5: Color,
step6: Color,
step7: Color,
step8: Color,
step9: Color,
step10: Color,
) {
var step1 by mutableStateOf(step1)
private set
var step2 by mutableStateOf(step2)
private set
var step3 by mutableStateOf(step3)
private set
var step4 by mutableStateOf(step4)
private set
var step5 by mutableStateOf(step5)
private set
var step6 by mutableStateOf(step6)
private set
var step7 by mutableStateOf(step7)
private set
var step8 by mutableStateOf(step8)
private set
var step9 by mutableStateOf(step9)
private set
var step10 by mutableStateOf(step10)
private set
fun update(other: MagicBlend) {
step1 = other.step1
step2 = other.step2
step3 = other.step3
step4 = other.step4
step5 = other.step5
step6 = other.step6
step7 = other.step7
step8 = other.step8
step9 = other.step9
step10 = other.step10
}
}
@Stable
class Success internal constructor(
step1: Color,
step2: Color,
step3: Color,
step4: Color,
step5: Color,
step6: Color,
step7: Color,
step8: Color,
step9: Color,
step10: Color,
) {
var step1 by mutableStateOf(step1)
private set
var step2 by mutableStateOf(step2)
private set
var step3 by mutableStateOf(step3)
private set
var step4 by mutableStateOf(step4)
private set
var step5 by mutableStateOf(step5)
private set
var step6 by mutableStateOf(step6)
private set
var step7 by mutableStateOf(step7)
private set
var step8 by mutableStateOf(step8)
private set
var step9 by mutableStateOf(step9)
private set
var step10 by mutableStateOf(step10)
private set
fun update(other: Success) {
step1 = other.step1
step2 = other.step2
step3 = other.step3
step4 = other.step4
step5 = other.step5
step6 = other.step6
step7 = other.step7
step8 = other.step8
step9 = other.step9
step10 = other.step10
}
}
@Stable
class Error internal constructor(
step1: Color,
step2: Color,
step3: Color,
step4: Color,
step5: Color,
step6: Color,
step7: Color,
step8: Color,
step9: Color,
step10: Color,
) {
var step1 by mutableStateOf(step1)
private set
var step2 by mutableStateOf(step2)
private set
var step3 by mutableStateOf(step3)
private set
var step4 by mutableStateOf(step4)
private set
var step5 by mutableStateOf(step5)
private set
var step6 by mutableStateOf(step6)
private set
var step7 by mutableStateOf(step7)
private set
var step8 by mutableStateOf(step8)
private set
var step9 by mutableStateOf(step9)
private set
var step10 by mutableStateOf(step10)
private set
fun update(other: Error) {
step1 = other.step1
step2 = other.step2
step3 = other.step3
step4 = other.step4
step5 = other.step5
step6 = other.step6
step7 = other.step7
step8 = other.step8
step9 = other.step9
step10 = other.step10
}
}
@Stable
class Warning internal constructor(
step1: Color,
step2: Color,
step3: Color,
step4: Color,
step5: Color,
step6: Color,
step7: Color,
step8: Color,
step9: Color,
step10: Color,
) {
var step1 by mutableStateOf(step1)
private set
var step2 by mutableStateOf(step2)
private set
var step3 by mutableStateOf(step3)
private set
var step4 by mutableStateOf(step4)
private set
var step5 by mutableStateOf(step5)
private set
var step6 by mutableStateOf(step6)
private set
var step7 by mutableStateOf(step7)
private set
var step8 by mutableStateOf(step8)
private set
var step9 by mutableStateOf(step9)
private set
var step10 by mutableStateOf(step10)
private set
fun update(other: Warning) {
step1 = other.step1
step2 = other.step2
step3 = other.step3
step4 = other.step4
step5 = other.step5
step6 = other.step6
step7 = other.step7
step8 = other.step8
step9 = other.step9
step10 = other.step10
}
}
@Stable
class Info internal constructor(
step1: Color,
step2: Color,
step3: Color,
step4: Color,
step5: Color,
step6: Color,
step7: Color,
step8: Color,
step9: Color,
step10: Color,
) {
var step1 by mutableStateOf(step1)
private set
var step2 by mutableStateOf(step2)
private set
var step3 by mutableStateOf(step3)
private set
var step4 by mutableStateOf(step4)
private set
var step5 by mutableStateOf(step5)
private set
var step6 by mutableStateOf(step6)
private set
var step7 by mutableStateOf(step7)
private set
var step8 by mutableStateOf(step8)
private set
var step9 by mutableStateOf(step9)
private set
var step10 by mutableStateOf(step10)
private set
fun update(other: Info) {
step1 = other.step1
step2 = other.step2
step3 = other.step3
step4 = other.step4
step5 = other.step5
step6 = other.step6
step7 = other.step7
step8 = other.step8
step9 = other.step9
step10 = other.step10
}
}
fun update(other: Glow) {
magic.update(other.magic)
magicBlend.update(other.magicBlend)
success.update(other.success)
error.update(other.error)
warning.update(other.warning)
info.update(other.info)
}
}
@Stable
class Material internal constructor(
val tint: Tint,
@ -709,6 +1034,7 @@ class TangemColors3 internal constructor(
border.update(other.border)
overlay.update(other.overlay)
interaction.update(other.interaction)
glow.update(other.glow)
material.update(other.material)
}
}

View file

@ -43,6 +43,7 @@ internal fun darkColors3() =
orange = TangemColorPalette.Orange.`40`,
yellow = TangemColorPalette.Yellow.`40`,
green = TangemColorPalette.Green.`40`,
neutral = TangemColorPalette.Neutral.`40`,
),
),
bg = TangemColors3.Bg(
@ -74,6 +75,7 @@ internal fun darkColors3() =
orange = TangemColorPalette.Orange.`50`,
yellow = TangemColorPalette.Yellow.`50`,
green = TangemColorPalette.Green.`50`,
neutral = TangemColorPalette.Neutral.`50`,
),
),
icon = TangemColors3.Icon(
@ -97,6 +99,7 @@ internal fun darkColors3() =
orange = TangemColorPalette.Orange.`40`,
yellow = TangemColorPalette.Yellow.`40`,
green = TangemColorPalette.Green.`40`,
neutral = TangemColorPalette.Neutral.`40`,
),
),
border = TangemColors3.Border(
@ -126,16 +129,17 @@ internal fun darkColors3() =
orange = TangemColorPalette.Orange.`40`,
yellow = TangemColorPalette.Yellow.`40`,
green = TangemColorPalette.Green.`40`,
neutral = TangemColorPalette.Neutral.`40`,
),
),
overlay = TangemColors3.Overlay(
modal = TangemColorPalette.Opaque.BaseBlack.`80`,
),
interaction = TangemColors3.Interaction(
pressStaticLight = TangemColorPalette.Opaque.BaseBlack.`10`,
pressStaticDark = TangemColorPalette.Opaque.BaseWhite.`10`,
press = TangemColors3.Interaction.Press(
default = TangemColorPalette.Opaque.BaseWhite.`10`,
staticLight = TangemColorPalette.Opaque.BaseBlack.`10`,
staticDark = TangemColorPalette.Opaque.BaseWhite.`10`,
inverse = TangemColorPalette.Opaque.BaseBlack.`10`,
),
focusRing = TangemColors3.Interaction.FocusRing(
@ -143,6 +147,80 @@ internal fun darkColors3() =
brand = TangemColorPalette.Blue.`50`,
),
),
glow = TangemColors3.Glow(
magic = TangemColors3.Glow.Magic(
step1 = TangemColorPalette.Yellow.`30`,
step2 = Color(0x000077E1),
step3 = Color(0x000C58AF),
step4 = TangemColorPalette.Blue.`50`,
step5 = Color(0x005EBDF9),
step6 = Color(0x00473068),
step7 = TangemColorPalette.Violet.`50`,
step8 = Color(0x00E12C2E),
step9 = Color(0x4D473068),
step10 = Color(0x0067419B),
),
magicBlend = TangemColors3.Glow.MagicBlend(
step1 = TangemColorPalette.Violet.`50`,
step2 = Color(0x00143C70),
step3 = Color(0x00FA6931),
step4 = TangemColorPalette.Yellow.`30`,
step5 = Color(0x002DAE3B),
step6 = Color(0x0098D7FF),
step7 = TangemColorPalette.Green.`20`,
step8 = Color(0x00A967FD),
step9 = Color(0x4D67419B),
step10 = Color(0x00FF5E66),
),
success = TangemColors3.Glow.Success(
step1 = TangemColorPalette.Green.`50`,
step2 = Color(0x001C4415),
step3 = Color(0x001C4415),
step4 = TangemColorPalette.Green.`60`,
step5 = Color(0x001C4415),
step6 = Color(0x001C4415),
step7 = TangemColorPalette.Green.`40`,
step8 = Color(0x001C4415),
step9 = Color(0x4D1C4415),
step10 = Color(0x001C4415),
),
error = TangemColors3.Glow.Error(
step1 = TangemColorPalette.Red.`50`,
step2 = Color(0x006D2323),
step3 = Color(0x006D2323),
step4 = TangemColorPalette.Red.`60`,
step5 = Color(0x006D2323),
step6 = Color(0x006D2323),
step7 = TangemColorPalette.Red.`40`,
step8 = Color(0x006D2323),
step9 = Color(0x4D6D2323),
step10 = Color(0x006D2323),
),
warning = TangemColors3.Glow.Warning(
step1 = TangemColorPalette.Yellow.`40`,
step2 = Color(0x00573414),
step3 = Color(0x00573414),
step4 = TangemColorPalette.Yellow.`50`,
step5 = Color(0x00573414),
step6 = Color(0x00573414),
step7 = TangemColorPalette.Yellow.`30`,
step8 = Color(0x00573414),
step9 = Color(0x4D573414),
step10 = Color(0x00573414),
),
info = TangemColors3.Glow.Info(
step1 = TangemColorPalette.Blue.`50`,
step2 = Color(0x00143C70),
step3 = Color(0x00143C70),
step4 = TangemColorPalette.Blue.`60`,
step5 = Color(0x00143C70),
step6 = Color(0x00143C70),
step7 = TangemColorPalette.Blue.`40`,
step8 = Color(0x00143C70),
step9 = Color(0x4D143C70),
step10 = Color(0x00143C70),
),
),
material = TangemColors3.Material(
tint = TangemColors3.Material.Tint(
glass = Color(0x662C2C2C),

View file

@ -43,6 +43,7 @@ internal fun lightColors3() =
orange = TangemColorPalette.Orange.`50`,
yellow = TangemColorPalette.Yellow.`50`,
green = TangemColorPalette.Green.`50`,
neutral = TangemColorPalette.Neutral.`50`,
),
),
bg = TangemColors3.Bg(
@ -74,6 +75,7 @@ internal fun lightColors3() =
orange = TangemColorPalette.Orange.`50`,
yellow = TangemColorPalette.Yellow.`50`,
green = TangemColorPalette.Green.`50`,
neutral = TangemColorPalette.Neutral.`50`,
),
),
icon = TangemColors3.Icon(
@ -97,6 +99,7 @@ internal fun lightColors3() =
orange = TangemColorPalette.Orange.`50`,
yellow = TangemColorPalette.Yellow.`50`,
green = TangemColorPalette.Green.`50`,
neutral = TangemColorPalette.Neutral.`50`,
),
),
border = TangemColors3.Border(
@ -126,16 +129,17 @@ internal fun lightColors3() =
orange = TangemColorPalette.Orange.`50`,
yellow = TangemColorPalette.Yellow.`50`,
green = TangemColorPalette.Green.`50`,
neutral = TangemColorPalette.Neutral.`50`,
),
),
overlay = TangemColors3.Overlay(
modal = TangemColorPalette.Opaque.BaseBlack.`60`,
),
interaction = TangemColors3.Interaction(
pressStaticLight = TangemColorPalette.Opaque.BaseBlack.`10`,
pressStaticDark = TangemColorPalette.Opaque.BaseWhite.`10`,
press = TangemColors3.Interaction.Press(
default = TangemColorPalette.Opaque.BaseBlack.`10`,
staticLight = TangemColorPalette.Opaque.BaseBlack.`10`,
staticDark = TangemColorPalette.Opaque.BaseWhite.`10`,
inverse = TangemColorPalette.Opaque.BaseWhite.`10`,
),
focusRing = TangemColors3.Interaction.FocusRing(
@ -143,6 +147,80 @@ internal fun lightColors3() =
brand = TangemColorPalette.Blue.`50`,
),
),
glow = TangemColors3.Glow(
magic = TangemColors3.Glow.Magic(
step1 = TangemColorPalette.Yellow.`30`,
step2 = Color(0x00DBF1FF),
step3 = Color(0x00109FF0),
step4 = TangemColorPalette.Blue.`40`,
step5 = Color(0x00DBF1FF),
step6 = Color(0x00C5A5FC),
step7 = TangemColorPalette.Violet.`40`,
step8 = Color(0x00FF979D),
step9 = Color(0x4DC5A5FC),
step10 = Color(0x00EEE7FD),
),
magicBlend = TangemColors3.Glow.MagicBlend(
step1 = TangemColorPalette.Violet.`40`,
step2 = Color(0x0098D7FF),
step3 = Color(0x00FFC3AD),
step4 = TangemColorPalette.Yellow.`30`,
step5 = Color(0x009EE1AB),
step6 = Color(0x00109FF0),
step7 = TangemColorPalette.Green.`30`,
step8 = Color(0x00B07BFD),
step9 = Color(0x4DC5A5FC),
step10 = Color(0x00FF979D),
),
success = TangemColors3.Glow.Success(
step1 = TangemColorPalette.Green.`40`,
step2 = Color(0x009EE1AB),
step3 = Color(0x009EE1AB),
step4 = TangemColorPalette.Green.`50`,
step5 = Color(0x009EE1AB),
step6 = Color(0x009EE1AB),
step7 = TangemColorPalette.Green.`30`,
step8 = Color(0x009EE1AB),
step9 = Color(0x4D9EE1AB),
step10 = Color(0x009EE1AB),
),
error = TangemColors3.Glow.Error(
step1 = TangemColorPalette.Red.`40`,
step2 = Color(0x00FFC0C3),
step3 = Color(0x00FFC0C3),
step4 = TangemColorPalette.Red.`50`,
step5 = Color(0x00FFC0C3),
step6 = Color(0x00FFC0C3),
step7 = TangemColorPalette.Red.`30`,
step8 = Color(0x00FFC0C3),
step9 = Color(0x4DFFC0C3),
step10 = Color(0x00FFC0C3),
),
warning = TangemColors3.Glow.Warning(
step1 = TangemColorPalette.Yellow.`30`,
step2 = Color(0x00F7CA75),
step3 = Color(0x00F7CA75),
step4 = TangemColorPalette.Yellow.`40`,
step5 = Color(0x00F7CA75),
step6 = Color(0x00F7CA75),
step7 = TangemColorPalette.Yellow.`20`,
step8 = Color(0x00F7CA75),
step9 = Color(0x4DF7CA75),
step10 = Color(0x00F7CA75),
),
info = TangemColors3.Glow.Info(
step1 = TangemColorPalette.Blue.`40`,
step2 = Color(0x0098D7FF),
step3 = Color(0x0098D7FF),
step4 = TangemColorPalette.Blue.`50`,
step5 = Color(0x0098D7FF),
step6 = Color(0x0098D7FF),
step7 = TangemColorPalette.Blue.`30`,
step8 = Color(0x0098D7FF),
step9 = Color(0x4D98D7FF),
step10 = Color(0x0098D7FF),
),
),
material = TangemColors3.Material(
tint = TangemColors3.Material.Tint(
glass = Color(0x00000000),

View file

@ -43,7 +43,7 @@ class TangemTypography3 internal constructor(fontFamily: FontFamily) {
fontFamily = fontFamily,
fontWeight = FontWeight.SemiBold,
fontSize = 28.sp,
lineHeight = 33.sp,
lineHeight = 34.sp,
letterSpacing = (-0.37).sp,
lineHeightStyle = LineHeightStyle(
alignment = LineHeightStyle.Alignment.Center,

View file

@ -1 +1 @@
f264a99d653eca57bedd4b49ff9ce5171ba9615770a57d574824e387f6cb1d5c
023a0f2a00de6fcd99f046ded7f648786a000cf1b10b70e17c78b1efed9e63f6

View file

@ -31,7 +31,7 @@ val Icons.ic_address_polygon_16: ImageVector
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M4.53711 2.69414C5.02195 2.43596 5.60404 2.43592 6.08887 2.69414L7.75195 3.57988C8.28964 3.86657 8.62591 4.42656 8.62598 5.03594V5.49492C8.62547 5.83958 8.34573 6.11979 8.00098 6.11992C7.65613 6.1199 7.37649 5.83965 7.37598 5.49492V5.03594C7.37591 4.88841 7.29414 4.75294 7.16406 4.6834L5.50098 3.79766C5.38347 3.73507 5.24252 3.73512 5.125 3.79766L3.46191 4.6834C3.3317 4.7529 3.25007 4.88833 3.25 5.03594V7.38457C3.2502 7.53207 3.33176 7.66767 3.46191 7.73711L5.125 8.62285C5.24241 8.68521 5.3836 8.6853 5.50098 8.62285L9.91309 6.27324C10.3979 6.01506 10.98 6.01502 11.4648 6.27324L13.1279 7.15898C13.6656 7.44565 14.0019 8.00568 14.002 8.61504V10.9637C14.0018 11.573 13.6656 12.1331 13.1279 12.4197L11.4648 13.3055C10.9801 13.5636 10.3978 13.5635 9.91309 13.3055L8.25 12.4197C7.71226 12.1331 7.37617 11.573 7.37598 10.9637V10.5057C7.37598 10.1605 7.65581 9.88068 8.00098 9.88066C8.34604 9.88079 8.62598 10.1606 8.62598 10.5057V10.9637C8.62617 11.1113 8.70759 11.2478 8.83789 11.3172L10.501 12.2029C10.6183 12.2652 10.7597 12.2652 10.877 12.2029L12.54 11.3172C12.6703 11.2478 12.7518 11.1112 12.752 10.9637V8.61504C12.7519 8.46752 12.6701 8.33202 12.54 8.2625L10.877 7.37676C10.7595 7.31417 10.6185 7.31422 10.501 7.37676L6.08887 9.72637C5.60417 9.98446 5.02184 9.98437 4.53711 9.72637L2.87402 8.84062C2.33626 8.55404 2.0002 7.99392 2 7.38457V5.03594C2.00007 4.42648 2.3362 3.86654 2.87402 3.57988L4.53711 2.69414Z"),
pathData = addPathNodes("M4.53711 2.69414C5.02195 2.43596 5.60404 2.43592 6.08887 2.69414L7.75195 3.57988C8.28964 3.86657 8.62591 4.42656 8.62598 5.03594V5.49492C8.62547 5.83958 8.34573 6.11979 8.00098 6.11992C7.65613 6.1199 7.37649 5.83965 7.37598 5.49492V5.03594C7.37591 4.88841 7.29414 4.75294 7.16406 4.6834L5.50098 3.79766C5.38347 3.73507 5.24252 3.73512 5.125 3.79766L3.46191 4.6834C3.3317 4.7529 3.25007 4.88833 3.25 5.03594V7.38457C3.2502 7.53207 3.33176 7.66767 3.46191 7.73711L5.125 8.62285C5.24241 8.68521 5.3836 8.6853 5.50098 8.62285L9.91309 6.27324C10.3979 6.01506 10.98 6.01502 11.4648 6.27324L13.1279 7.15898C13.6656 7.44565 14.0019 8.00567 14.002 8.61504V10.9637C14.0018 11.573 13.6656 12.1331 13.1279 12.4197L11.4648 13.3055C10.9801 13.5636 10.3978 13.5635 9.91309 13.3055L8.25 12.4197C7.71226 12.1331 7.37617 11.573 7.37598 10.9637V10.5057C7.37598 10.1605 7.65581 9.88068 8.00098 9.88066C8.34604 9.8808 8.62598 10.1606 8.62598 10.5057V10.9637C8.62617 11.1113 8.70759 11.2478 8.83789 11.3172L10.501 12.2029C10.6183 12.2652 10.7597 12.2652 10.877 12.2029L12.54 11.3172C12.6703 11.2478 12.7518 11.1112 12.752 10.9637V8.61504C12.7519 8.46752 12.6701 8.33202 12.54 8.2625L10.877 7.37676C10.7595 7.31417 10.6185 7.31422 10.501 7.37676L6.08887 9.72637C5.60417 9.98446 5.02184 9.98437 4.53711 9.72637L2.87402 8.84062C2.33626 8.55404 2.0002 7.99392 2 7.38457V5.03594C2.00007 4.42648 2.3362 3.86654 2.87402 3.57988L4.53711 2.69414Z"),
)
}.build()
return _ic_address_polygon_16!!

View file

@ -31,7 +31,7 @@ val Icons.ic_address_polygon_20: ImageVector
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M5.78125 3.21402C6.30813 2.92909 6.94286 2.92905 7.46973 3.21402L9.82031 4.48453C10.3935 4.79465 10.751 5.39437 10.751 6.04605V6.80484C10.7504 7.21849 10.4147 7.55467 10.001 7.55484C9.5871 7.55484 9.25152 7.21859 9.25098 6.80484V6.04605C9.25095 5.94518 9.19511 5.85194 9.10645 5.80386L6.75586 4.53335C6.67424 4.48924 6.57575 4.48921 6.49414 4.53335L4.14453 5.80386C4.05587 5.85194 4.00002 5.94518 4 6.04605V9.38882C4.00037 9.48941 4.056 9.58215 4.14453 9.63003L6.49414 10.9015C6.57557 10.9455 6.6744 10.9454 6.75586 10.9015L12.5312 7.7775C13.0582 7.4925 13.6938 7.4925 14.2207 7.7775L16.5703 9.04898C17.1435 9.35911 17.501 9.9588 17.501 10.6105V13.9523C17.5008 14.6039 17.1434 15.2038 16.5703 15.5138L14.2207 16.7853C13.6939 17.0701 13.058 17.0701 12.5312 16.7853L10.1816 15.5138C9.6085 15.2038 9.25119 14.6039 9.25098 13.9523V13.1945C9.25098 12.7803 9.58676 12.4445 10.001 12.4445C10.415 12.4447 10.751 12.7804 10.751 13.1945V13.9523C10.7512 14.053 10.806 14.1465 10.8945 14.1945L13.2451 15.466C13.3266 15.5099 13.4254 15.5099 13.5068 15.466L15.8574 14.1945C15.946 14.1465 16.0008 14.053 16.001 13.9523V10.6105C16.001 10.5097 15.946 10.4164 15.8574 10.3683L13.5068 9.09683C13.4253 9.05275 13.3267 9.05274 13.2451 9.09683L7.46973 12.2209C6.94305 12.5056 6.30796 12.5055 5.78125 12.2209L3.43066 10.9494C2.85767 10.6394 2.50037 10.0402 2.5 9.38882V6.04605C2.50002 5.39437 2.85752 4.79465 3.43066 4.48453L5.78125 3.21402Z"),
pathData = addPathNodes("M5.78125 3.21402C6.30813 2.92909 6.94286 2.92905 7.46973 3.21402L9.82031 4.48453C10.3935 4.79465 10.751 5.39437 10.751 6.04605V6.80484C10.7504 7.21849 10.4147 7.55467 10.001 7.55484C9.5871 7.55484 9.25152 7.21859 9.25098 6.80484V6.04605C9.25095 5.94518 9.19511 5.85194 9.10645 5.80386L6.75586 4.53335C6.67424 4.48924 6.57575 4.48921 6.49414 4.53335L4.14453 5.80386C4.05587 5.85194 4.00002 5.94518 4 6.04605V9.38882C4.00037 9.48941 4.05601 9.58215 4.14453 9.63003L6.49414 10.9015C6.57557 10.9455 6.6744 10.9454 6.75586 10.9015L12.5312 7.7775C13.0582 7.4925 13.6938 7.4925 14.2207 7.7775L16.5703 9.04898C17.1435 9.35911 17.501 9.9588 17.501 10.6105V13.9523C17.5008 14.6039 17.1434 15.2038 16.5703 15.5138L14.2207 16.7853C13.6939 17.0701 13.058 17.0701 12.5312 16.7853L10.1816 15.5138C9.6085 15.2038 9.25119 14.6039 9.25098 13.9523V13.1945C9.25098 12.7803 9.58676 12.4445 10.001 12.4445C10.415 12.4447 10.751 12.7804 10.751 13.1945V13.9523C10.7512 14.053 10.806 14.1465 10.8945 14.1945L13.2451 15.466C13.3266 15.5099 13.4254 15.5099 13.5068 15.466L15.8574 14.1945C15.946 14.1465 16.0008 14.053 16.001 13.9523V10.6105C16.001 10.5097 15.946 10.4164 15.8574 10.3683L13.5068 9.09683C13.4253 9.05275 13.3267 9.05274 13.2451 9.09683L7.46973 12.2209C6.94305 12.5056 6.30796 12.5055 5.78125 12.2209L3.43066 10.9494C2.85767 10.6394 2.50037 10.0402 2.5 9.38882V6.04605C2.50002 5.39437 2.85752 4.79465 3.43066 4.48453L5.78125 3.21402Z"),
)
}.build()
return _ic_address_polygon_20!!

View file

@ -31,7 +31,7 @@ val Icons.ic_arrow_refresh_12: ImageVector
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M9.96777 5.4668C10.2623 5.4668 10.501 5.70545 10.501 6C10.501 8.48579 8.48581 10.501 6 10.501C4.62026 10.5007 3.39017 9.87706 2.56641 8.90039V9.30664C2.56606 9.6009 2.32754 9.83984 2.0332 9.83984C1.73913 9.83953 1.50035 9.6007 1.5 9.30664V7.65332C1.5 7.35896 1.73892 7.12043 2.0332 7.12012H3.68652C3.98107 7.12012 4.21973 7.35877 4.21973 7.65332C4.21954 7.94772 3.98096 8.18652 3.68652 8.18652H3.35938C3.98887 8.94784 4.93716 9.43331 6 9.43359C7.89672 9.43359 9.43457 7.89668 9.43457 6C9.43457 5.7056 9.67343 5.46705 9.96777 5.4668Z"),
pathData = addPathNodes("M9.96777 5.4668C10.2623 5.4668 10.501 5.70545 10.501 6C10.501 8.48579 8.48581 10.501 6 10.501C4.62026 10.5007 3.39017 9.87706 2.56641 8.90039V9.30664C2.56606 9.6009 2.32754 9.83984 2.0332 9.83984C1.73913 9.83953 1.50035 9.6007 1.5 9.30664V7.65332C1.5 7.35896 1.73892 7.12043 2.0332 7.12012H3.68652C3.98107 7.12012 4.21973 7.35877 4.21973 7.65332C4.21954 7.94772 3.98096 8.18652 3.68652 8.18652H3.35938C3.98887 8.94784 4.93716 9.43331 6 9.43359C7.89672 9.43359 9.43457 7.89668 9.43457 6C9.43457 5.7056 9.67344 5.46705 9.96777 5.4668Z"),
)
addPath(
fill = SolidColor(Color.Black),

View file

@ -31,7 +31,7 @@ val Icons.ic_arrow_refresh_16: ImageVector
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M12.8789 7.37695C13.224 7.37704 13.5039 7.65683 13.5039 8.00195C13.5039 11.0407 11.0407 13.5038 8.00195 13.5039C6.28439 13.5039 4.7571 12.713 3.75 11.4814V12.0664C3.74971 12.4113 3.46988 12.6913 3.125 12.6914C2.7801 12.6913 2.50029 12.4113 2.5 12.0664V10.0342C2.5 9.68908 2.77992 9.4093 3.125 9.40918H5.15723C5.50229 9.40932 5.78223 9.68909 5.78223 10.0342C5.78207 10.3791 5.50219 10.659 5.15723 10.6592H4.69141C5.47041 11.6307 6.66264 12.2539 8.00195 12.2539C10.3503 12.2538 12.2539 10.3503 12.2539 8.00195C12.2539 7.65678 12.5337 7.37695 12.8789 7.37695Z"),
pathData = addPathNodes("M12.8789 7.37695C13.224 7.37704 13.5039 7.65683 13.5039 8.00195C13.5039 11.0407 11.0407 13.5038 8.00195 13.5039C6.28439 13.5039 4.7571 12.713 3.75 11.4814V12.0664C3.74971 12.4113 3.46988 12.6913 3.125 12.6914C2.7801 12.6913 2.50029 12.4113 2.5 12.0664V10.0342C2.5 9.68907 2.77992 9.4093 3.125 9.40918H5.15723C5.50229 9.40932 5.78223 9.68909 5.78223 10.0342C5.78207 10.3791 5.50219 10.659 5.15723 10.6592H4.69141C5.47041 11.6307 6.66264 12.2539 8.00195 12.2539C10.3503 12.2538 12.2539 10.3503 12.2539 8.00195C12.2539 7.65677 12.5337 7.37695 12.8789 7.37695Z"),
)
addPath(
fill = SolidColor(Color.Black),

View file

@ -0,0 +1,52 @@
@file:Suppress("all")
package com.tangem.core.ui.res.generated.icons
import androidx.compose.material3.Icon
import androidx.compose.runtime.Composable
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.graphics.PathFillType
import androidx.compose.ui.graphics.SolidColor
import androidx.compose.ui.graphics.vector.ImageVector
import androidx.compose.ui.graphics.vector.addPathNodes
import androidx.compose.ui.tooling.preview.Preview
import androidx.compose.ui.unit.dp
/**
* Auto-generated from design tokens. Do not edit manually.
*/
private var _ic_arrow_refresh_28: ImageVector? = null
val Icons.ic_arrow_refresh_28: ImageVector
get() {
if (_ic_arrow_refresh_28 != null) return _ic_arrow_refresh_28!!
_ic_arrow_refresh_28 = ImageVector.Builder(
name = "ic_arrow_refresh_28",
defaultWidth = 28.dp,
defaultHeight = 28.dp,
viewportWidth = 28f,
viewportHeight = 28f,
).apply {
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M24.751 12.749C24.0606 12.749 23.501 13.3087 23.501 13.999C23.501 19.2457 19.248 23.4978 14.001 23.498C10.9116 23.498 8.16877 22.0188 6.43457 19.7275H7.72949C8.41975 19.7274 8.97949 19.1678 8.97949 18.4775C8.9793 17.7874 8.41963 17.2277 7.72949 17.2275H3.25C2.55993 17.2277 2.00019 17.7875 2 18.4775V22.9561C2 23.6463 2.55981 24.2059 3.25 24.2061C3.94026 24.2059 4.5 23.6463 4.5 22.9561V21.3115C6.69035 24.1575 10.1264 25.998 14.001 25.998C20.6286 25.9978 26.001 20.6265 26.001 13.999C26.001 13.3088 25.4412 12.7492 24.751 12.749Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M14 2C7.37245 2.0002 2.00018 7.37166 2 13.999C2.00013 14.6891 2.55994 15.2488 3.25 15.249C3.94022 15.249 4.49987 14.6892 4.5 13.999C4.50018 8.75249 8.75304 4.5002 14 4.5C17.0888 4.50004 19.8312 5.97872 21.5654 8.26953H20.2715C19.5815 8.26973 19.0218 8.82959 19.0215 9.51953C19.0215 10.2098 19.5813 10.7693 20.2715 10.7695H24.751C25.4412 10.7693 26.001 10.2098 26.001 9.51953V5.04102C26.0008 4.35091 25.4411 3.79122 24.751 3.79102C24.0607 3.79102 23.5011 4.35078 23.501 5.04102V6.6875C21.3106 3.84097 17.8749 2.00004 14 2Z"),
)
}.build()
return _ic_arrow_refresh_28!!
}
@Composable
@Preview(showBackground = true)
private fun IcArrowRefresh28Preview() {
Icon(
imageVector = Icons.ic_arrow_refresh_28,
contentDescription = null,
)
}

View file

@ -0,0 +1,47 @@
@file:Suppress("all")
package com.tangem.core.ui.res.generated.icons
import androidx.compose.material3.Icon
import androidx.compose.runtime.Composable
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.graphics.PathFillType
import androidx.compose.ui.graphics.SolidColor
import androidx.compose.ui.graphics.vector.ImageVector
import androidx.compose.ui.graphics.vector.addPathNodes
import androidx.compose.ui.tooling.preview.Preview
import androidx.compose.ui.unit.dp
/**
* Auto-generated from design tokens. Do not edit manually.
*/
private var _ic_binoculars_28: ImageVector? = null
val Icons.ic_binoculars_28: ImageVector
get() {
if (_ic_binoculars_28 != null) return _ic_binoculars_28!!
_ic_binoculars_28 = ImageVector.Builder(
name = "ic_binoculars_28",
defaultWidth = 28.dp,
defaultHeight = 28.dp,
viewportWidth = 28f,
viewportHeight = 28f,
).apply {
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M19.7578 5.00391C21.6512 5.08382 23.2755 6.39977 23.751 8.24805L25.7334 15.9453C25.9024 16.4714 25.9951 17.028 25.9951 17.5996C25.995 19.7768 24.6902 21.7452 22.6816 22.5811C20.6717 23.4172 18.3597 22.9512 16.8262 21.4053C15.9614 20.5334 15.4557 19.438 15.3076 18.3047H12.6846C12.6248 18.7649 12.509 19.2228 12.3272 19.665C11.499 21.679 9.54216 22.9979 7.36622 22.998C5.19023 22.998 3.23354 21.679 2.40528 19.665C1.95365 18.5664 1.8872 17.377 2.16797 16.2725L2.18067 16.2168C2.18644 16.1951 2.19123 16.173 2.19727 16.1514L4.23438 8.24902C4.72469 6.34088 6.43972 5.00092 8.41114 5.00098C10.4237 5.00098 12.1068 6.38144 12.5879 8.24219H15.3984C15.8795 6.38135 17.5618 5.00015 19.5742 5L19.7578 5.00391ZM9.38868 15.5566C8.27017 14.4341 6.46227 14.4341 5.34376 15.5566C4.52086 16.3827 4.27211 17.6296 4.71778 18.7139C5.1632 19.7968 6.21056 20.498 7.36622 20.498C8.52184 20.4979 9.5693 19.7969 10.0147 18.7139C10.1716 18.3321 10.2405 17.9298 10.2305 17.5332H10.2256V17.4111C10.1795 16.7245 9.89192 16.0619 9.38868 15.5566ZM21.7207 14.9268C20.6517 14.4821 19.4204 14.7281 18.6006 15.5547C17.4807 16.684 17.4808 18.5152 18.6006 19.6445C19.4204 20.4709 20.6518 20.7179 21.7207 20.2734C22.7909 19.8282 23.495 18.774 23.4951 17.5996C23.4951 17.3576 23.4631 17.121 23.4063 16.8936L23.3975 16.8965L23.334 16.6504C23.0688 15.8823 22.4904 15.2471 21.7207 14.9268ZM12.7256 10.7422V15.8047H15.2598V10.7422H12.7256ZM8.41114 7.5C7.59 7.49995 6.86494 8.05939 6.65626 8.87109L5.72852 12.4717C7.21662 11.9941 8.87032 12.1841 10.2256 13.043V9.33301C10.2254 8.31386 9.40615 7.5 8.41114 7.5ZM19.5742 7.5C18.5794 7.50017 17.7599 8.31397 17.7598 9.33301V13.041C19.0875 12.1979 20.7338 11.9753 22.2549 12.4619L21.3301 8.87207C21.1214 8.06026 20.3955 7.49981 19.5742 7.5Z"),
)
}.build()
return _ic_binoculars_28!!
}
@Composable
@Preview(showBackground = true)
private fun IcBinoculars28Preview() {
Icon(
imageVector = Icons.ic_binoculars_28,
contentDescription = null,
)
}

View file

@ -31,7 +31,7 @@ val Icons.ic_checkmark_24: ImageVector
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M18.2784 6.30768C18.6608 5.90939 19.294 5.89615 19.6924 6.27839C20.0907 6.66081 20.104 7.29407 19.7217 7.69245L10.1202 17.6924C9.93164 17.8888 9.67073 18 9.3985 18.0001C9.12637 18 8.86632 17.8887 8.6778 17.6924L4.27838 13.1124C3.89612 12.714 3.90943 12.0808 4.30768 11.6983C4.70604 11.3161 5.33929 11.3294 5.72174 11.7276L9.39752 15.5557L18.2784 6.30768Z"),
pathData = addPathNodes("M18.2784 6.30768C18.6608 5.90939 19.294 5.89615 19.6924 6.27839C20.0907 6.66081 20.104 7.29407 19.7217 7.69245L10.1202 17.6924C9.93164 17.8888 9.67073 18 9.3985 18.0001C9.12638 18 8.86632 17.8887 8.6778 17.6924L4.27838 13.1124C3.89612 12.714 3.90943 12.0808 4.30768 11.6983C4.70604 11.3161 5.33929 11.3294 5.72174 11.7276L9.39752 15.5557L18.2784 6.30768Z"),
)
}.build()
return _ic_checkmark_24!!

View file

@ -35,7 +35,7 @@ val Icons.ic_clock_12: ImageVector
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.EvenOdd,
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M6 1C8.76142 1 11 3.23858 11 6C11 8.76142 8.76142 11 6 11C3.23858 11 1 8.76142 1 6C1 3.23858 3.23858 1 6 1ZM6 2C3.79086 2 2 3.79086 2 6C2 8.20914 3.79086 10 6 10C8.20914 10 10 8.20914 10 6C10 3.79086 8.20914 2 6 2Z"),
)
}.build()

View file

@ -31,11 +31,11 @@ val Icons.ic_clock_16: ImageVector
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M8.36523 4.5C8.71001 4.50033 8.99003 4.7802 8.99023 5.125V8.26074C8.99023 8.60572 8.71014 8.88542 8.36523 8.88574H6.125C5.77982 8.88574 5.5 8.60592 5.5 8.26074C5.50026 7.91578 5.77998 7.63574 6.125 7.63574H7.74023V5.125C7.74044 4.78 8.02018 4.5 8.36523 4.5Z"),
pathData = addPathNodes("M8.36523 4.5C8.71001 4.50033 8.99003 4.7802 8.99023 5.125V8.26074C8.99023 8.60572 8.71014 8.88542 8.36523 8.88574H6.125C5.77982 8.88574 5.5 8.60592 5.5 8.26074C5.50026 7.91578 5.77998 7.63574 6.125 7.63574H7.74023V5.125C7.74044 4.77999 8.02018 4.5 8.36523 4.5Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.EvenOdd,
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M8.30957 2.00781C11.48 2.16874 14.001 4.79058 14.001 8.00098C14.0007 11.3147 11.3146 14.0006 8.00098 14.001C4.68703 14.001 2.00027 11.3149 2 8.00098C2 4.68687 4.68687 2 8.00098 2L8.30957 2.00781ZM8.00098 3.25C5.37722 3.25 3.25 5.37722 3.25 8.00098C3.25027 10.6245 5.37739 12.751 8.00098 12.751C10.6243 12.7506 12.7507 10.6243 12.751 8.00098C12.751 5.37743 10.6244 3.25033 8.00098 3.25Z"),
)
}.build()

View file

@ -35,7 +35,7 @@ val Icons.ic_clock_20: ImageVector
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.EvenOdd,
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M10.4092 2.01074C14.6352 2.2248 17.996 5.71889 17.9961 9.99805C17.996 14.4151 14.4151 17.996 9.99805 17.9961C5.581 17.996 2.00007 14.4151 2 9.99805C2.00005 5.58099 5.58099 2.00005 9.99805 2L10.4092 2.01074ZM9.99805 3.5C6.40942 3.50005 3.50005 6.40942 3.5 9.99805C3.50007 13.5867 6.40943 16.496 9.99805 16.4961C13.5867 16.496 16.496 13.5867 16.4961 9.99805C16.496 6.40943 13.5867 3.50007 9.99805 3.5Z"),
)
}.build()

View file

@ -35,7 +35,7 @@ val Icons.ic_clock_24: ImageVector
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.EvenOdd,
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM12 4C7.58172 4 4 7.58172 4 12C4 16.4183 7.58172 20 12 20C16.4183 20 20 16.4183 20 12C20 7.58172 16.4183 4 12 4Z"),
)
}.build()

View file

@ -0,0 +1,52 @@
@file:Suppress("all")
package com.tangem.core.ui.res.generated.icons
import androidx.compose.material3.Icon
import androidx.compose.runtime.Composable
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.graphics.PathFillType
import androidx.compose.ui.graphics.SolidColor
import androidx.compose.ui.graphics.vector.ImageVector
import androidx.compose.ui.graphics.vector.addPathNodes
import androidx.compose.ui.tooling.preview.Preview
import androidx.compose.ui.unit.dp
/**
* Auto-generated from design tokens. Do not edit manually.
*/
private var _ic_clock_28: ImageVector? = null
val Icons.ic_clock_28: ImageVector
get() {
if (_ic_clock_28 != null) return _ic_clock_28!!
_ic_clock_28 = ImageVector.Builder(
name = "ic_clock_28",
defaultWidth = 28.dp,
defaultHeight = 28.dp,
viewportWidth = 28f,
viewportHeight = 28f,
).apply {
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M14.522 6.77881C15.2123 6.77881 15.7719 7.33851 15.772 8.02881V14.5981C15.7717 15.2883 15.2122 15.8481 14.522 15.8481H9.74463C9.05481 15.8477 8.49492 15.288 8.49463 14.5981C8.4947 13.9081 9.05468 13.3486 9.74463 13.3481H13.272V8.02881C13.272 7.33887 13.8321 6.77938 14.522 6.77881Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M14.3101 2.00439C20.7939 2.16878 25.9993 7.47709 25.9995 14.0005C25.9993 20.6274 20.6274 25.9993 14.0005 25.9995C7.37353 25.9993 2.00068 20.6274 2.00049 14.0005C2.00072 7.37357 7.37355 2.00065 14.0005 2.00049L14.3101 2.00439ZM14.0005 4.50049C8.75426 4.50065 4.50072 8.75428 4.50049 14.0005C4.50068 19.2467 8.75424 23.4993 14.0005 23.4995C19.2467 23.4993 23.4993 19.2467 23.4995 14.0005C23.4993 8.7543 19.2467 4.50068 14.0005 4.50049Z"),
)
}.build()
return _ic_clock_28!!
}
@Composable
@Preview(showBackground = true)
private fun IcClock28Preview() {
Icon(
imageVector = Icons.ic_clock_28,
contentDescription = null,
)
}

View file

@ -35,7 +35,7 @@ val Icons.ic_clock_32: ImageVector
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.EvenOdd,
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M16.001 4C22.6288 4.00026 28.0027 9.37314 28.0029 16.001C28.0027 22.6288 22.6288 28.0027 16.001 28.0029C9.37314 28.0027 4.00026 22.6288 4 16.001C4.00026 9.37313 9.37313 4.00026 16.001 4ZM16.001 6.5C10.7538 6.50026 6.50026 10.7538 6.5 16.001C6.50026 21.2481 10.7538 25.5027 16.001 25.5029C21.2481 25.5027 25.5027 21.2481 25.5029 16.001C25.5027 10.7538 21.2481 6.50026 16.001 6.5Z"),
)
}.build()

View file

@ -31,7 +31,7 @@ val Icons.ic_cloud_16: ImageVector
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M8 3.375C10.1072 3.375 11.8925 4.86911 12.1826 6.8584C13.556 7.11784 14.6248 8.27613 14.625 9.71387C14.625 11.3498 13.2412 12.625 11.5996 12.625H5C3.02705 12.625 1.375 11.0941 1.375 9.14258L1.37891 8.97754C1.45745 7.41255 2.61167 6.12397 4.14746 5.77051C4.82684 4.31304 6.33845 3.37577 8 3.375ZM8 4.625C6.70774 4.62572 5.58437 5.40923 5.18262 6.53516C5.10338 6.75663 4.90622 6.9146 4.67285 6.94434C3.47814 7.09672 2.62729 8.05592 2.625 9.14355C2.6254 10.3476 3.6595 11.375 5 11.375H11.5996C12.609 11.375 13.375 10.6027 13.375 9.71387C13.3748 8.82524 12.6088 8.05371 11.5996 8.05371C11.2547 8.0535 10.9747 7.77369 10.9746 7.42871C10.9746 5.90873 9.67213 4.625 8 4.625Z"),
pathData = addPathNodes("M8 3.375C10.1072 3.375 11.8925 4.86911 12.1826 6.8584C13.556 7.11784 14.6248 8.27613 14.625 9.71387C14.625 11.3498 13.2412 12.625 11.5996 12.625H5C3.02705 12.625 1.375 11.0941 1.375 9.14258L1.37891 8.97754C1.45745 7.41255 2.61167 6.12397 4.14746 5.77051C4.82684 4.31304 6.33845 3.37577 8 3.375ZM8 4.625C6.70774 4.62572 5.58437 5.40923 5.18262 6.53516C5.10338 6.75663 4.90621 6.9146 4.67285 6.94434C3.47814 7.09672 2.62729 8.05592 2.625 9.14355C2.6254 10.3476 3.6595 11.375 5 11.375H11.5996C12.609 11.375 13.375 10.6027 13.375 9.71387C13.3748 8.82524 12.6088 8.05371 11.5996 8.05371C11.2547 8.0535 10.9747 7.77369 10.9746 7.42871C10.9746 5.90873 9.67213 4.625 8 4.625Z"),
)
}.build()
return _ic_cloud_16!!

View file

@ -31,7 +31,7 @@ val Icons.ic_copy_16: ImageVector
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M7.23633 4.93848C7.78585 4.93848 8.23583 4.93797 8.60059 4.96777C8.97264 4.99819 9.3113 5.06328 9.62793 5.22461C10.1217 5.47629 10.5238 5.87829 10.7754 6.37207C10.9365 6.68855 11.0009 7.02757 11.0313 7.39941C11.061 7.76414 11.0615 8.21431 11.0615 8.76367V9.67285C11.0615 10.2223 11.061 10.6724 11.0313 11.0371C11.0008 11.4091 10.9367 11.7479 10.7754 12.0645C10.5237 12.5583 10.1218 12.9603 9.62793 13.2119C9.31131 13.3732 8.97262 13.4374 8.60059 13.4678C8.23583 13.4976 7.78585 13.498 7.23633 13.498H6.32715C5.77772 13.498 5.32764 13.4975 4.96289 13.4678C4.59102 13.4374 4.25204 13.373 3.93555 13.2119C3.44178 12.9603 3.03977 12.5582 2.78809 12.0645C2.62678 11.7479 2.56167 11.4091 2.53125 11.0371C2.50145 10.6724 2.50195 10.2223 2.50195 9.67285V8.76367C2.50195 8.21431 2.5015 7.76414 2.53125 7.39941C2.56164 7.02743 2.62688 6.68865 2.78809 6.37207C3.03975 5.87815 3.44162 5.47628 3.93555 5.22461C4.25218 5.06334 4.59084 4.99817 4.96289 4.96777C5.32764 4.93801 5.77771 4.93848 6.32715 4.93848H7.23633ZM6.32715 6.18848C5.757 6.18848 5.36656 6.18921 5.06445 6.21387C4.76993 6.23793 4.61402 6.28136 4.50293 6.33789C4.24421 6.46972 4.03319 6.68073 3.90137 6.93945C3.84488 7.05054 3.8014 7.20661 3.77734 7.50098C3.7527 7.80306 3.75195 8.19363 3.75195 8.76367V9.67285C3.75195 10.2429 3.75267 10.6335 3.77734 10.9355C3.80145 11.23 3.84479 11.386 3.90137 11.4971C4.03321 11.7556 4.24433 11.9659 4.50293 12.0977C4.61402 12.1542 4.76999 12.1986 5.06445 12.2227C5.36654 12.2473 5.75706 12.248 6.32715 12.248H7.23633C7.80643 12.248 8.19696 12.2473 8.49902 12.2227C8.79361 12.1986 8.94948 12.1542 9.06055 12.0977C9.31902 11.9659 9.52934 11.7555 9.66113 11.4971C9.71771 11.386 9.76203 11.23 9.78613 10.9355C9.81081 10.6335 9.81152 10.2429 9.81152 9.67285V8.76367C9.81152 8.19367 9.81077 7.80305 9.78613 7.50098C9.76208 7.20657 9.71763 7.05054 9.66113 6.93945C9.52936 6.68084 9.31912 6.46973 9.06055 6.33789C8.94949 6.28131 8.79354 6.23797 8.49902 6.21387C8.19696 6.18919 7.80643 6.18848 7.23633 6.18848H6.32715Z"),
pathData = addPathNodes("M7.23633 4.93848C7.78585 4.93848 8.23583 4.93797 8.60059 4.96777C8.97264 4.99819 9.3113 5.06328 9.62793 5.22461C10.1217 5.47629 10.5238 5.87829 10.7754 6.37207C10.9365 6.68855 11.0009 7.02757 11.0313 7.39941C11.061 7.76414 11.0615 8.21431 11.0615 8.76367V9.67285C11.0615 10.2223 11.061 10.6724 11.0313 11.0371C11.0008 11.4091 10.9367 11.7479 10.7754 12.0645C10.5237 12.5583 10.1218 12.9603 9.62793 13.2119C9.31131 13.3732 8.97262 13.4374 8.60059 13.4678C8.23583 13.4976 7.78585 13.498 7.23633 13.498H6.32715C5.77772 13.498 5.32764 13.4975 4.96289 13.4678C4.59102 13.4374 4.25204 13.373 3.93555 13.2119C3.44178 12.9603 3.03977 12.5582 2.78809 12.0645C2.62678 11.7479 2.56167 11.4091 2.53125 11.0371C2.50145 10.6724 2.50195 10.2223 2.50195 9.67285V8.76367C2.50195 8.21431 2.5015 7.76414 2.53125 7.39941C2.56164 7.02743 2.62688 6.68865 2.78809 6.37207C3.03975 5.87815 3.44162 5.47628 3.93555 5.22461C4.25218 5.06334 4.59084 4.99817 4.96289 4.96777C5.32764 4.93801 5.77771 4.93848 6.32715 4.93848H7.23633ZM6.32715 6.18848C5.757 6.18848 5.36655 6.18921 5.06445 6.21387C4.76993 6.23793 4.61402 6.28136 4.50293 6.33789C4.24421 6.46972 4.03319 6.68073 3.90137 6.93945C3.84488 7.05054 3.8014 7.20661 3.77734 7.50098C3.7527 7.80306 3.75195 8.19363 3.75195 8.76367V9.67285C3.75195 10.2429 3.75267 10.6335 3.77734 10.9355C3.80145 11.23 3.84479 11.386 3.90137 11.4971C4.03321 11.7556 4.24433 11.9659 4.50293 12.0977C4.61402 12.1542 4.76999 12.1986 5.06445 12.2227C5.36654 12.2473 5.75706 12.248 6.32715 12.248H7.23633C7.80643 12.248 8.19696 12.2473 8.49902 12.2227C8.79361 12.1986 8.94948 12.1542 9.06055 12.0977C9.31902 11.9659 9.52934 11.7555 9.66113 11.4971C9.71771 11.386 9.76203 11.23 9.78613 10.9355C9.81081 10.6335 9.81152 10.2429 9.81152 9.67285V8.76367C9.81152 8.19367 9.81077 7.80305 9.78613 7.50098C9.76208 7.20657 9.71763 7.05054 9.66113 6.93945C9.52936 6.68084 9.31912 6.46973 9.06055 6.33789C8.94949 6.28131 8.79354 6.23797 8.49902 6.21387C8.19696 6.18919 7.80643 6.18848 7.23633 6.18848H6.32715Z"),
)
addPath(
fill = SolidColor(Color.Black),

View file

@ -31,7 +31,7 @@ val Icons.ic_copy_20: ImageVector
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M9.125 6.125C9.81266 6.125 10.3736 6.124 10.8281 6.16113C11.2914 6.19898 11.7099 6.2804 12.1006 6.47949C12.7119 6.79105 13.209 7.28807 13.5205 7.89941C13.7195 8.2901 13.801 8.70869 13.8389 9.17188C13.876 9.62634 13.875 10.1874 13.875 10.875V12.25C13.875 12.9375 13.876 13.4987 13.8389 13.9531C13.801 14.4163 13.7196 14.8349 13.5205 15.2256C13.2089 15.837 12.7121 16.3349 12.1006 16.6465C11.7099 16.8455 11.2913 16.926 10.8281 16.9639C10.3736 17.001 9.81266 17 9.125 17H7.75C7.06232 17 6.50138 17.001 6.04688 16.9639C5.5837 16.926 5.1651 16.8455 4.77442 16.6465C4.16295 16.3349 3.66609 15.837 3.35449 15.2256C3.15544 14.8349 3.07399 14.4163 3.03614 13.9531C2.99903 13.4987 3 12.9375 3 12.25V10.875C3 10.1874 2.99902 9.62634 3.03614 9.17188C3.07398 8.70869 3.15547 8.2901 3.35449 7.89941C3.66604 7.28808 4.16309 6.79106 4.77442 6.47949C5.16514 6.28041 5.58363 6.19898 6.04688 6.16113C6.50138 6.124 7.06232 6.125 7.75 6.125H9.125ZM7.75 7.625C7.03757 7.625 6.5482 7.62526 6.16895 7.65625C5.79853 7.68652 5.5991 7.74205 5.45508 7.81543C5.12602 7.98318 4.85816 8.251 4.69043 8.58008C4.61709 8.72409 4.56151 8.92366 4.53125 9.29395C4.50028 9.67317 4.5 10.1627 4.5 10.875V12.25C4.5 12.9622 4.50028 13.4519 4.53125 13.8311C4.56153 14.2014 4.61705 14.4009 4.69043 14.5449C4.85816 14.874 5.12601 15.1418 5.45508 15.3096C5.5991 15.3829 5.79861 15.4385 6.16895 15.4688C6.5482 15.4997 7.03757 15.5 7.75 15.5H9.125C9.83743 15.5 10.3268 15.4997 10.7061 15.4688C11.0765 15.4385 11.2759 15.3829 11.4199 15.3096C11.749 15.1418 12.0168 14.874 12.1846 14.5449C12.258 14.4009 12.3135 14.2014 12.3438 13.8311C12.3747 13.4519 12.375 12.9622 12.375 12.25V10.875C12.375 10.1627 12.3747 9.67317 12.3438 9.29395C12.3135 8.92366 12.2579 8.72409 12.1846 8.58008C12.0168 8.25099 11.749 7.98317 11.4199 7.81543C11.2759 7.74204 11.0765 7.68652 10.7061 7.65625C10.3268 7.62526 9.83744 7.625 9.125 7.625H7.75Z"),
pathData = addPathNodes("M9.125 6.125C9.81266 6.125 10.3736 6.124 10.8281 6.16113C11.2914 6.19898 11.7099 6.2804 12.1006 6.47949C12.7119 6.79105 13.209 7.28807 13.5205 7.89941C13.7195 8.2901 13.801 8.70869 13.8389 9.17188C13.876 9.62634 13.875 10.1874 13.875 10.875V12.25C13.875 12.9375 13.876 13.4987 13.8389 13.9531C13.801 14.4163 13.7196 14.8349 13.5205 15.2256C13.2089 15.837 12.7121 16.3349 12.1006 16.6465C11.7099 16.8455 11.2913 16.926 10.8281 16.9639C10.3736 17.001 9.81266 17 9.125 17H7.75C7.06232 17 6.50138 17.001 6.04688 16.9639C5.5837 16.926 5.1651 16.8455 4.77442 16.6465C4.16295 16.3349 3.66609 15.837 3.35449 15.2256C3.15544 14.8349 3.07399 14.4163 3.03614 13.9531C2.99903 13.4987 3 12.9375 3 12.25V10.875C3 10.1874 2.99902 9.62634 3.03614 9.17188C3.07398 8.70869 3.15547 8.2901 3.35449 7.89941C3.66604 7.28808 4.16309 6.79106 4.77442 6.47949C5.16514 6.28041 5.58363 6.19898 6.04688 6.16113C6.50138 6.124 7.06232 6.125 7.75 6.125H9.125ZM7.75 7.625C7.03757 7.625 6.5482 7.62526 6.16895 7.65625C5.79853 7.68652 5.5991 7.74205 5.45508 7.81543C5.12601 7.98318 4.85816 8.251 4.69043 8.58008C4.61709 8.72409 4.56151 8.92366 4.53125 9.29395C4.50028 9.67317 4.5 10.1627 4.5 10.875V12.25C4.5 12.9622 4.50028 13.4519 4.53125 13.8311C4.56153 14.2014 4.61705 14.4009 4.69043 14.5449C4.85816 14.874 5.12601 15.1418 5.45508 15.3096C5.5991 15.3829 5.79861 15.4385 6.16895 15.4688C6.5482 15.4997 7.03757 15.5 7.75 15.5H9.125C9.83743 15.5 10.3268 15.4997 10.7061 15.4688C11.0765 15.4385 11.2759 15.3829 11.4199 15.3096C11.749 15.1418 12.0168 14.874 12.1846 14.5449C12.258 14.4009 12.3135 14.2014 12.3438 13.8311C12.3747 13.4519 12.375 12.9622 12.375 12.25V10.875C12.375 10.1627 12.3747 9.67317 12.3438 9.29395C12.3135 8.92366 12.2579 8.72409 12.1846 8.58008C12.0168 8.25099 11.749 7.98317 11.4199 7.81543C11.2759 7.74204 11.0765 7.68652 10.7061 7.65625C10.3268 7.62526 9.83744 7.625 9.125 7.625H7.75Z"),
)
addPath(
fill = SolidColor(Color.Black),

View file

@ -31,7 +31,7 @@ val Icons.ic_dots_horizontal_24: ImageVector
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M6.09953 10.5059C6.87727 10.5599 7.49688 11.2045 7.49699 12C7.49686 12.8273 6.82427 13.5 5.99699 13.5C5.17312 13.4997 4.50325 12.8325 4.49797 12.0098L4.49699 12.0107C4.48844 11.2094 5.11151 10.5611 5.88761 10.5059C5.92247 10.5022 5.95823 10.5 5.99406 10.5C6.02951 10.5 6.06503 10.5023 6.09953 10.5059Z"),
pathData = addPathNodes("M6.09953 10.5059C6.87727 10.5599 7.49688 11.2045 7.49699 12C7.49686 12.8273 6.82428 13.5 5.99699 13.5C5.17312 13.4997 4.50325 12.8325 4.49797 12.0098L4.49699 12.0107C4.48844 11.2094 5.11151 10.5611 5.88761 10.5059C5.92247 10.5022 5.95823 10.5 5.99406 10.5C6.02951 10.5 6.06503 10.5023 6.09953 10.5059Z"),
)
addPath(
fill = SolidColor(Color.Black),

View file

@ -36,7 +36,7 @@ val Icons.ic_edit_20: ImageVector
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M14.7041 3C15.3127 3.00063 15.8962 3.24314 16.3262 3.67383C16.757 4.10457 16.999 4.68886 16.999 5.29785C16.999 5.90709 16.7569 6.49135 16.3262 6.92188C16.3189 6.92918 16.3103 6.93545 16.3027 6.94238H16.3047C16.3081 6.93926 16.3135 6.93451 16.3154 6.93262L15.834 7.41406C15.5321 7.7158 15.1182 8.12892 14.6719 8.5752C13.7792 9.46776 12.7549 10.4922 12.2285 11.0186C11.8808 11.3662 11.4265 11.5868 10.9385 11.6465L9.86133 11.7803C9.40623 11.8364 8.95107 11.6769 8.62988 11.3496C8.30873 11.0223 8.15798 10.5643 8.22266 10.1104L8.38184 8.99317C8.44827 8.52187 8.66648 8.08476 9.00293 7.74805C9.73986 7.0108 11.5406 5.20998 13.0791 3.67188C13.51 3.24129 14.0949 2.99946 14.7041 3ZM15.2656 4.7334C15.1166 4.58395 14.9132 4.50024 14.7021 4.5C14.5177 4.49995 14.3398 4.56396 14.1982 4.67969L14.1396 4.73242C12.6013 6.27043 10.8013 8.07145 10.0645 8.80859C9.95776 8.91535 9.8881 9.05365 9.86719 9.20313V9.20606L9.71289 10.2861L10.7549 10.1582H10.7568C10.9123 10.1391 11.0572 10.0687 11.168 9.95801L15.2686 5.85742C15.416 5.70838 15.499 5.50744 15.499 5.29785C15.499 5.08655 15.4149 4.88268 15.2656 4.7334Z"),
pathData = addPathNodes("M14.7041 3C15.3127 3.00063 15.8962 3.24314 16.3262 3.67383C16.757 4.10457 16.999 4.68886 16.999 5.29785C16.999 5.90709 16.7569 6.49135 16.3262 6.92188C16.3189 6.92918 16.3103 6.93545 16.3027 6.94238H16.3047C16.3081 6.93926 16.3135 6.93451 16.3154 6.93262L15.834 7.41406C15.5321 7.7158 15.1182 8.12892 14.6719 8.5752C13.7792 9.46775 12.7549 10.4922 12.2285 11.0186C11.8808 11.3662 11.4265 11.5868 10.9385 11.6465L9.86133 11.7803C9.40623 11.8364 8.95107 11.6769 8.62988 11.3496C8.30873 11.0223 8.15798 10.5643 8.22266 10.1104L8.38184 8.99317C8.44827 8.52187 8.66648 8.08476 9.00293 7.74805C9.73986 7.0108 11.5406 5.20998 13.0791 3.67188C13.51 3.24129 14.0949 2.99946 14.7041 3ZM15.2656 4.7334C15.1166 4.58395 14.9132 4.50024 14.7021 4.5C14.5177 4.49995 14.3398 4.56396 14.1982 4.67969L14.1396 4.73242C12.6013 6.27043 10.8013 8.07145 10.0645 8.80859C9.95776 8.91535 9.8881 9.05365 9.86719 9.20313V9.20606L9.71289 10.2861L10.7549 10.1582H10.7568C10.9123 10.1391 11.0572 10.0687 11.168 9.95801L15.2686 5.85742C15.416 5.70838 15.499 5.50744 15.499 5.29785C15.499 5.08655 15.4149 4.88268 15.2656 4.7334Z"),
)
}.build()
return _ic_edit_20!!

View file

@ -31,7 +31,7 @@ val Icons.ic_error_16: ImageVector
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M8.0791 10.0029C8.47125 10.0427 8.77901 10.3735 8.7793 10.7783C8.77927 11.2087 8.43035 11.5576 8 11.5576C7.59677 11.5574 7.26459 11.2512 7.22461 10.8584L7.2207 10.7783C7.22033 10.3459 7.57225 9.99916 8 9.99902L8.0791 10.0029Z"),
pathData = addPathNodes("M8.0791 10.0029C8.47125 10.0427 8.77901 10.3735 8.7793 10.7783C8.77927 11.2087 8.43035 11.5576 8 11.5576C7.59677 11.5574 7.26459 11.2512 7.22461 10.8584L7.2207 10.7783C7.22032 10.3459 7.57225 9.99916 8 9.99902L8.0791 10.0029Z"),
)
addPath(
fill = SolidColor(Color.Black),

View file

@ -41,7 +41,7 @@ val Icons.ic_error_20: ImageVector
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M12.5537 2.00195C13.1795 2.00199 13.7802 2.25102 14.2227 2.69336L17.3047 5.77539C17.7485 6.21806 17.998 6.81932 17.998 7.44531V12.5537C17.998 13.1795 17.749 13.7802 17.3066 14.2227L13.752 17.7783C13.6113 17.919 13.4196 17.998 13.2207 17.998H7.44531C6.81953 17.998 6.21879 17.7489 5.77637 17.3066L2.69336 14.2236C2.25101 13.7812 2.00204 13.1805 2.00195 12.5547V7.44531C2.00201 6.81948 2.25098 6.2188 2.69336 5.77637L5.77637 2.69336C6.21881 2.25099 6.81947 2.002 7.44531 2.00195H12.5537ZM7.44531 3.50195C7.21775 3.502 6.99836 3.59252 6.83691 3.75391L3.75391 6.83691C3.59252 6.99836 3.50201 7.21775 3.50195 7.44531V12.5547C3.50204 12.7822 3.59255 13.0017 3.75391 13.1631L6.83691 16.2451C6.99838 16.4066 7.21769 16.498 7.44531 16.498H12.9102L16.2451 13.1621C16.4066 13.0006 16.498 12.7813 16.498 12.5537V7.44531C16.498 7.2178 16.4068 6.99912 16.2451 6.83789L13.1621 3.75391C13.0007 3.59255 12.7813 3.50199 12.5537 3.50195H7.44531Z"),
pathData = addPathNodes("M12.5537 2.00195C13.1795 2.00199 13.7802 2.25102 14.2227 2.69336L17.3047 5.77539C17.7485 6.21806 17.998 6.81932 17.998 7.44531V12.5537C17.998 13.1795 17.749 13.7802 17.3066 14.2227L13.752 17.7783C13.6113 17.919 13.4196 17.998 13.2207 17.998H7.44531C6.81953 17.998 6.21879 17.7489 5.77637 17.3066L2.69336 14.2236C2.25101 13.7812 2.00204 13.1805 2.00195 12.5547V7.44531C2.00201 6.81948 2.25098 6.2188 2.69336 5.77637L5.77637 2.69336C6.21881 2.25099 6.81947 2.002 7.44531 2.00195H12.5537ZM7.44531 3.50195C7.21775 3.502 6.99836 3.59252 6.83691 3.75391L3.75391 6.83691C3.59252 6.99836 3.502 7.21775 3.50195 7.44531V12.5547C3.50204 12.7822 3.59255 13.0017 3.75391 13.1631L6.83691 16.2451C6.99838 16.4066 7.21769 16.498 7.44531 16.498H12.9102L16.2451 13.1621C16.4066 13.0006 16.498 12.7813 16.498 12.5537V7.44531C16.498 7.2178 16.4068 6.99912 16.2451 6.83789L13.1621 3.75391C13.0007 3.59255 12.7813 3.50199 12.5537 3.50195H7.44531Z"),
)
}.build()
return _ic_error_20!!

View file

@ -41,7 +41,7 @@ val Icons.ic_error_24: ImageVector
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M15.1709 2C15.9664 2 16.7297 2.31661 17.292 2.87891L21.1191 6.70605L21.3193 6.92578C21.7579 7.45976 22 8.13194 22 8.82812V15.1709C22 15.9664 21.6834 16.7297 21.1211 17.292L16.707 21.707C16.5195 21.8946 16.2652 22 16 22H8.82812C8.03264 22 7.26935 21.6834 6.70703 21.1211L2.87891 17.293C2.31662 16.7307 2 15.9674 2 15.1719V8.82812C2 8.03264 2.31662 7.26935 2.87891 6.70703L6.70703 2.87891C7.26935 2.31662 8.03264 2 8.82812 2H15.1709ZM8.82812 4C8.56367 4 8.30876 4.10533 8.12109 4.29297L4.29297 8.12109C4.10533 8.30876 4 8.56367 4 8.82812V15.1719C4 15.4363 4.10533 15.6912 4.29297 15.8789L8.12109 19.707C8.30876 19.8947 8.56367 20 8.82812 20H15.5859L19.707 15.8779L19.7734 15.8047C19.9194 15.6266 20 15.4024 20 15.1709V8.82812C20 8.56383 19.8948 8.30943 19.707 8.12207L15.8779 4.29297C15.6903 4.10533 15.4354 4 15.1709 4H8.82812Z"),
pathData = addPathNodes("M15.1709 2C15.9664 2 16.7297 2.31661 17.292 2.87891L21.1191 6.70605L21.3193 6.92578C21.7579 7.45976 22 8.13194 22 8.82812V15.1709C22 15.9664 21.6834 16.7297 21.1211 17.292L16.707 21.707C16.5195 21.8946 16.2652 22 16 22H8.82812C8.03264 22 7.26935 21.6834 6.70703 21.1211L2.87891 17.293C2.31662 16.7306 2 15.9674 2 15.1719V8.82812C2 8.03264 2.31662 7.26935 2.87891 6.70703L6.70703 2.87891C7.26935 2.31662 8.03264 2 8.82812 2H15.1709ZM8.82812 4C8.56367 4 8.30876 4.10533 8.12109 4.29297L4.29297 8.12109C4.10533 8.30876 4 8.56367 4 8.82812V15.1719C4 15.4363 4.10533 15.6912 4.29297 15.8789L8.12109 19.707C8.30876 19.8947 8.56367 20 8.82812 20H15.5859L19.707 15.8779L19.7734 15.8047C19.9194 15.6266 20 15.4024 20 15.1709V8.82812C20 8.56383 19.8948 8.30943 19.707 8.12207L15.8779 4.29297C15.6903 4.10533 15.4354 4 15.1709 4H8.82812Z"),
)
}.build()
return _ic_error_24!!

View file

@ -36,7 +36,7 @@ val Icons.ic_gauge_20: ImageVector
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M12.1219 6.72445C12.4133 6.43066 12.8883 6.42759 13.1825 6.71859C13.4765 7.00977 13.479 7.48477 13.1883 7.77914L10.4637 10.5311C10.1723 10.8253 9.69749 10.8273 9.40318 10.536C9.1089 10.2446 9.10599 9.76976 9.39732 9.47543L12.1219 6.72445Z"),
pathData = addPathNodes("M12.1219 6.72445C12.4133 6.43067 12.8883 6.42759 13.1825 6.71859C13.4765 7.00977 13.479 7.48477 13.1883 7.77914L10.4637 10.5311C10.1723 10.8253 9.69749 10.8273 9.40318 10.536C9.1089 10.2446 9.10599 9.76976 9.39732 9.47543L12.1219 6.72445Z"),
)
}.build()
return _ic_gauge_20!!

View file

@ -0,0 +1,62 @@
@file:Suppress("all")
package com.tangem.core.ui.res.generated.icons
import androidx.compose.material3.Icon
import androidx.compose.runtime.Composable
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.graphics.PathFillType
import androidx.compose.ui.graphics.SolidColor
import androidx.compose.ui.graphics.vector.ImageVector
import androidx.compose.ui.graphics.vector.addPathNodes
import androidx.compose.ui.tooling.preview.Preview
import androidx.compose.ui.unit.dp
/**
* Auto-generated from design tokens. Do not edit manually.
*/
private var _ic_grid_16: ImageVector? = null
val Icons.ic_grid_16: ImageVector
get() {
if (_ic_grid_16 != null) return _ic_grid_16!!
_ic_grid_16 = ImageVector.Builder(
name = "ic_grid_16",
defaultWidth = 16.dp,
defaultHeight = 16.dp,
viewportWidth = 16f,
viewportHeight = 16f,
).apply {
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M5.46191 8.71777C6.46661 8.71817 7.28125 9.53232 7.28125 10.5371V12.1797C7.28095 13.1842 6.46643 13.9986 5.46191 13.999H3.81934C2.81448 13.999 2.0003 13.1845 2 12.1797V10.5371C2 9.53207 2.8143 8.71777 3.81934 8.71777H5.46191ZM3.81934 9.96777C3.50465 9.96777 3.25 10.2224 3.25 10.5371V12.1797C3.25029 12.4941 3.50484 12.749 3.81934 12.749H5.46191C5.77607 12.7486 6.03096 12.4939 6.03125 12.1797V10.5371C6.03125 10.2227 5.77626 9.96817 5.46191 9.96777H3.81934Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M12.1797 8.71777C13.1844 8.71818 13.999 9.53233 13.999 10.5371V12.1797C13.9987 13.1842 13.1842 13.9986 12.1797 13.999H10.5371C9.53225 13.999 8.71807 13.1845 8.71777 12.1797V10.5371C8.71777 9.53207 9.53207 8.71777 10.5371 8.71777H12.1797ZM10.5371 9.96777C10.2224 9.96777 9.96777 10.2224 9.96777 10.5371V12.1797C9.96807 12.4941 10.2226 12.749 10.5371 12.749H12.1797C12.4938 12.7486 12.7487 12.4939 12.749 12.1797V10.5371C12.749 10.2227 12.494 9.96818 12.1797 9.96777H10.5371Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M5.46191 2C6.46661 2.0004 7.28125 2.81454 7.28125 3.81934V5.46191C7.2808 6.46632 6.46634 7.28085 5.46191 7.28125H3.81934C2.81458 7.28125 2.00045 6.46657 2 5.46191V3.81934C2 2.8143 2.8143 2 3.81934 2H5.46191ZM3.81934 3.25C3.50465 3.25 3.25 3.50465 3.25 3.81934V5.46191C3.25045 5.77621 3.50493 6.03125 3.81934 6.03125H5.46191C5.77598 6.03085 6.0308 5.77597 6.03125 5.46191V3.81934C6.03125 3.5049 5.77626 3.2504 5.46191 3.25H3.81934Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M12.1797 2C13.1844 2.00041 13.999 2.81455 13.999 3.81934V5.46191C13.9986 6.46632 13.1841 7.28084 12.1797 7.28125H10.5371C9.53235 7.28125 8.71822 6.46657 8.71777 5.46191V3.81934C8.71777 2.8143 9.53207 2 10.5371 2H12.1797ZM10.5371 3.25C10.2224 3.25 9.96777 3.50465 9.96777 3.81934V5.46191C9.96822 5.77621 10.2227 6.03125 10.5371 6.03125H12.1797C12.4937 6.03084 12.7486 5.77596 12.749 5.46191V3.81934C12.749 3.50491 12.494 3.25041 12.1797 3.25H10.5371Z"),
)
}.build()
return _ic_grid_16!!
}
@Composable
@Preview(showBackground = true)
private fun IcGrid16Preview() {
Icon(
imageVector = Icons.ic_grid_16,
contentDescription = null,
)
}

View file

@ -0,0 +1,62 @@
@file:Suppress("all")
package com.tangem.core.ui.res.generated.icons
import androidx.compose.material3.Icon
import androidx.compose.runtime.Composable
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.graphics.PathFillType
import androidx.compose.ui.graphics.SolidColor
import androidx.compose.ui.graphics.vector.ImageVector
import androidx.compose.ui.graphics.vector.addPathNodes
import androidx.compose.ui.tooling.preview.Preview
import androidx.compose.ui.unit.dp
/**
* Auto-generated from design tokens. Do not edit manually.
*/
private var _ic_grid_20: ImageVector? = null
val Icons.ic_grid_20: ImageVector
get() {
if (_ic_grid_20 != null) return _ic_grid_20!!
_ic_grid_20 = ImageVector.Builder(
name = "ic_grid_20",
defaultWidth = 20.dp,
defaultHeight = 20.dp,
viewportWidth = 20f,
viewportHeight = 20f,
).apply {
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M6.57617 11.0615C7.88022 11.0617 8.93652 12.1188 8.93652 13.4229V15.6377C8.93616 16.9415 7.88 17.9978 6.57617 17.998H4.36133C3.05744 17.9979 2.00036 16.9415 2 15.6377V13.4229C2 12.1187 3.05722 11.0616 4.36133 11.0615H6.57617ZM4.36133 12.5615C3.88564 12.5616 3.5 12.9471 3.5 13.4229V15.6377C3.50036 16.1131 3.88587 16.4979 4.36133 16.498H6.57617C7.05157 16.4978 7.43616 16.1131 7.43652 15.6377V13.4229C7.43652 12.9472 7.05179 12.5617 6.57617 12.5615H4.36133Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M15.6377 11.0615C16.9417 11.0618 17.998 12.1188 17.998 13.4229V15.6377C17.9977 16.9414 16.9415 17.9978 15.6377 17.998H13.4229C12.1189 17.998 11.0619 16.9416 11.0615 15.6377V13.4229C11.0615 12.1186 12.1186 11.0615 13.4229 11.0615H15.6377ZM13.4229 12.5615C12.9471 12.5615 12.5615 12.9471 12.5615 13.4229V15.6377C12.5619 16.1132 12.9473 16.498 13.4229 16.498H15.6377C16.113 16.4978 16.4977 16.113 16.498 15.6377V13.4229C16.498 12.9472 16.1133 12.5618 15.6377 12.5615H13.4229Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M6.57617 2C7.88017 2.0002 8.93645 3.0573 8.93652 4.36133V6.57617C8.93633 7.8801 7.8801 8.93633 6.57617 8.93652H4.36133C3.05734 8.9364 2.0002 7.88014 2 6.57617V4.36133C2.00007 3.05725 3.05726 2.00012 4.36133 2H6.57617ZM4.36133 3.5C3.88569 3.50012 3.50007 3.88568 3.5 4.36133V6.57617C3.5002 7.05172 3.88577 7.4364 4.36133 7.43652H6.57617C7.05167 7.43633 7.43633 7.05167 7.43652 6.57617V4.36133C7.43645 3.88572 7.05175 3.5002 6.57617 3.5H4.36133Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M15.6377 2C16.9416 2.00026 17.998 3.05734 17.998 4.36133V6.57617C17.9978 7.88006 16.9416 8.93626 15.6377 8.93652H13.4229C12.1188 8.93652 11.0617 7.88022 11.0615 6.57617V4.36133C11.0616 3.05718 12.1187 2 13.4229 2H15.6377ZM13.4229 3.5C12.9471 3.5 12.5616 3.8856 12.5615 4.36133V6.57617C12.5617 7.05179 12.9472 7.43652 13.4229 7.43652H15.6377C16.1131 7.43626 16.4978 7.05163 16.498 6.57617V4.36133C16.498 3.88576 16.1132 3.50026 15.6377 3.5H13.4229Z"),
)
}.build()
return _ic_grid_20!!
}
@Composable
@Preview(showBackground = true)
private fun IcGrid20Preview() {
Icon(
imageVector = Icons.ic_grid_20,
contentDescription = null,
)
}

View file

@ -0,0 +1,62 @@
@file:Suppress("all")
package com.tangem.core.ui.res.generated.icons
import androidx.compose.material3.Icon
import androidx.compose.runtime.Composable
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.graphics.PathFillType
import androidx.compose.ui.graphics.SolidColor
import androidx.compose.ui.graphics.vector.ImageVector
import androidx.compose.ui.graphics.vector.addPathNodes
import androidx.compose.ui.tooling.preview.Preview
import androidx.compose.ui.unit.dp
/**
* Auto-generated from design tokens. Do not edit manually.
*/
private var _ic_grid_24: ImageVector? = null
val Icons.ic_grid_24: ImageVector
get() {
if (_ic_grid_24 != null) return _ic_grid_24!!
_ic_grid_24 = ImageVector.Builder(
name = "ic_grid_24",
defaultWidth = 24.dp,
defaultHeight = 24.dp,
viewportWidth = 24f,
viewportHeight = 24f,
).apply {
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M7.74902 13.249C9.40615 13.249 10.749 14.5919 10.749 16.249V18.998C10.7488 20.6551 9.40603 21.998 7.74902 21.998H5C3.34319 21.9978 2.00018 20.6549 2 18.998V16.249C2 14.592 3.34308 13.2493 5 13.249H7.74902ZM5 15.249C4.44756 15.2493 4 15.6967 4 16.249V18.998C4.00018 19.5502 4.44767 19.9978 5 19.998H7.74902C8.30156 19.998 8.74884 19.5504 8.74902 18.998V16.249C8.74902 15.6965 8.30167 15.249 7.74902 15.249H5Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M18.998 13.249C20.6552 13.249 21.998 14.5919 21.998 16.249V18.998C21.9979 20.6551 20.6551 21.998 18.998 21.998H16.249C14.5921 21.9979 13.2492 20.655 13.249 18.998V16.249C13.249 14.5919 14.592 13.2491 16.249 13.249H18.998ZM16.249 15.249C15.6965 15.2491 15.249 15.6966 15.249 16.249V18.998C15.2492 19.5503 15.6966 19.9979 16.249 19.998H18.998C19.5506 19.998 19.9979 19.5504 19.998 18.998V16.249C19.998 15.6965 19.5507 15.249 18.998 15.249H16.249Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M7.74902 2C9.40602 2 10.7488 3.34302 10.749 5V7.74902C10.749 9.40619 9.40615 10.749 7.74902 10.749H5C3.34308 10.7488 2 9.40604 2 7.74902V5C2.00021 3.34317 3.34321 2.00024 5 2H7.74902ZM5 4C4.44769 4.00024 4.00021 4.44783 4 5V7.74902C4 8.30138 4.44756 8.74879 5 8.74902H7.74902C8.30167 8.74902 8.74902 8.30152 8.74902 7.74902V5C8.74881 4.44768 8.30154 4 7.74902 4H5Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M18.998 2C20.655 2 21.9978 3.34302 21.998 5V7.74902C21.998 9.40619 20.6552 10.749 18.998 10.749H16.249C14.592 10.7489 13.249 9.40612 13.249 7.74902V5C13.2492 3.34308 14.5921 2.00011 16.249 2H18.998ZM16.249 4C15.6966 4.00011 15.2492 4.44775 15.249 5V7.74902C15.249 8.30146 15.6965 8.74892 16.249 8.74902H18.998C19.5507 8.74902 19.998 8.30152 19.998 7.74902V5C19.9978 4.44768 19.5506 4 18.998 4H16.249Z"),
)
}.build()
return _ic_grid_24!!
}
@Composable
@Preview(showBackground = true)
private fun IcGrid24Preview() {
Icon(
imageVector = Icons.ic_grid_24,
contentDescription = null,
)
}

View file

@ -0,0 +1,62 @@
@file:Suppress("all")
package com.tangem.core.ui.res.generated.icons
import androidx.compose.material3.Icon
import androidx.compose.runtime.Composable
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.graphics.PathFillType
import androidx.compose.ui.graphics.SolidColor
import androidx.compose.ui.graphics.vector.ImageVector
import androidx.compose.ui.graphics.vector.addPathNodes
import androidx.compose.ui.tooling.preview.Preview
import androidx.compose.ui.unit.dp
/**
* Auto-generated from design tokens. Do not edit manually.
*/
private var _ic_grid_28: ImageVector? = null
val Icons.ic_grid_28: ImageVector
get() {
if (_ic_grid_28 != null) return _ic_grid_28!!
_ic_grid_28 = ImageVector.Builder(
name = "ic_grid_28",
defaultWidth = 28.dp,
defaultHeight = 28.dp,
viewportWidth = 28f,
viewportHeight = 28f,
).apply {
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M9.39648 15.1885C11.2838 15.1886 12.8124 16.7181 12.8125 18.6055V21.585C12.8123 23.4722 11.2837 25.0008 9.39648 25.001H6.41699C4.52965 25.0009 3.00017 23.4723 3 21.585V18.6055C3.00008 16.7181 4.5296 15.1886 6.41699 15.1885H9.39648ZM6.41699 17.6885C5.91031 17.6886 5.50008 18.0988 5.5 18.6055V21.585C5.50017 22.0916 5.91037 22.5009 6.41699 22.501H9.39648C9.90303 22.5008 10.3123 22.0915 10.3125 21.585V18.6055C10.3124 18.0988 9.90309 17.6886 9.39648 17.6885H6.41699Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M21.585 15.1885C23.4722 15.1887 25.0009 16.7182 25.001 18.6055V21.585C25.0008 23.4722 23.4721 25.0007 21.585 25.001H18.6055C16.7181 25.001 15.1887 23.4723 15.1885 21.585V18.6055C15.1886 16.718 16.718 15.1885 18.6055 15.1885H21.585ZM18.6055 17.6885C18.0987 17.6885 17.6886 18.0987 17.6885 18.6055V21.585C17.6887 22.0916 18.0988 22.501 18.6055 22.501H21.585C22.0914 22.5007 22.5008 22.0915 22.501 21.585V18.6055C22.5009 18.0989 22.0915 17.6887 21.585 17.6885H18.6055Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M9.39648 3C11.2837 3.00017 12.8123 4.52974 12.8125 6.41699V9.39648C12.8123 11.2837 11.2837 12.8123 9.39648 12.8125H6.41699C4.52965 12.8124 3.00017 11.2838 3 9.39648V6.41699C3.00018 4.52968 4.52966 3.00008 6.41699 3H9.39648ZM6.41699 5.5C5.91037 5.50008 5.50018 5.9104 5.5 6.41699V9.39648C5.50017 9.90309 5.91037 10.3124 6.41699 10.3125H9.39648C9.90303 10.3123 10.3123 9.90303 10.3125 9.39648V6.41699C10.3123 5.91045 9.90303 5.50017 9.39648 5.5H6.41699Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M21.585 3C23.4721 3.00026 25.0008 4.52979 25.001 6.41699V9.39648C25.0008 11.2837 23.4721 12.8122 21.585 12.8125H18.6055C16.7181 12.8125 15.1887 11.2839 15.1885 9.39648V6.41699C15.1887 4.52963 16.7181 3 18.6055 3H21.585ZM18.6055 5.5C18.0988 5.5 17.6887 5.91034 17.6885 6.41699V9.39648C17.6887 9.90314 18.0988 10.3125 18.6055 10.3125H21.585C22.0914 10.3122 22.5008 9.90298 22.501 9.39648V6.41699C22.5008 5.9105 22.0914 5.50026 21.585 5.5H18.6055Z"),
)
}.build()
return _ic_grid_28!!
}
@Composable
@Preview(showBackground = true)
private fun IcGrid28Preview() {
Icon(
imageVector = Icons.ic_grid_28,
contentDescription = null,
)
}

View file

@ -0,0 +1,62 @@
@file:Suppress("all")
package com.tangem.core.ui.res.generated.icons
import androidx.compose.material3.Icon
import androidx.compose.runtime.Composable
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.graphics.PathFillType
import androidx.compose.ui.graphics.SolidColor
import androidx.compose.ui.graphics.vector.ImageVector
import androidx.compose.ui.graphics.vector.addPathNodes
import androidx.compose.ui.tooling.preview.Preview
import androidx.compose.ui.unit.dp
/**
* Auto-generated from design tokens. Do not edit manually.
*/
private var _ic_grid_plus_16: ImageVector? = null
val Icons.ic_grid_plus_16: ImageVector
get() {
if (_ic_grid_plus_16 != null) return _ic_grid_plus_16!!
_ic_grid_plus_16 = ImageVector.Builder(
name = "ic_grid_plus_16",
defaultWidth = 16.dp,
defaultHeight = 16.dp,
viewportWidth = 16f,
viewportHeight = 16f,
).apply {
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M5.61133 8.56934C6.61611 8.56962 7.43047 9.38387 7.43066 10.3887V12.1807C7.43063 13.1856 6.61621 13.9997 5.61133 14H3.81934C2.81429 13.9999 2.00003 13.1857 2 12.1807V10.3887C2.00019 9.38375 2.81439 8.56943 3.81934 8.56934H5.61133ZM3.81934 9.81934C3.50475 9.81943 3.25019 10.0741 3.25 10.3887V12.1807C3.25003 12.4954 3.50465 12.7499 3.81934 12.75H5.61133C5.92585 12.7497 6.18063 12.4953 6.18066 12.1807V10.3887C6.18047 10.0742 5.92575 9.81962 5.61133 9.81934H3.81934Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M11.2852 9.16699C11.6301 9.16722 11.9102 9.44696 11.9102 9.79199V10.6602H12.7783C13.1233 10.6604 13.4033 10.9401 13.4033 11.2852C13.4032 11.6301 13.1232 11.9099 12.7783 11.9102H11.9102V12.7783C11.91 13.1232 11.63 13.4031 11.2852 13.4033C10.9401 13.4033 10.6603 13.1234 10.6602 12.7783V11.9102H9.79199C9.4469 11.9102 9.16713 11.6302 9.16699 11.2852C9.16699 10.94 9.44681 10.6602 9.79199 10.6602H10.6602V9.79199C10.6602 9.44681 10.94 9.16699 11.2852 9.16699Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M5.61133 2C6.61617 2.00028 7.43057 2.81445 7.43066 3.81934V5.61133C7.43048 6.61614 6.61612 7.43038 5.61133 7.43066H3.81934C2.81438 7.43057 2.00018 6.61626 2 5.61133V3.81934C2.00009 2.81433 2.81433 2.00009 3.81934 2H5.61133ZM3.81934 3.25C3.50469 3.25009 3.25009 3.50468 3.25 3.81934V5.61133C3.25018 5.9259 3.50474 6.18057 3.81934 6.18066H5.61133C5.92576 6.18038 6.18048 5.92579 6.18066 5.61133V3.81934C6.18057 3.5048 5.92582 3.25028 5.61133 3.25H3.81934Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M12.1807 2C13.1857 2.00003 13.9999 2.81429 14 3.81934V5.61133C13.9998 6.6163 13.1857 7.43063 12.1807 7.43066H10.3887C9.38377 7.43052 8.56952 6.61623 8.56934 5.61133V3.81934C8.56943 2.81436 9.38371 2.00015 10.3887 2H12.1807ZM10.3887 3.25C10.0741 3.25015 9.81943 3.50472 9.81934 3.81934V5.61133C9.81952 5.92587 10.0741 6.18052 10.3887 6.18066H12.1807C12.4953 6.18063 12.7498 5.92594 12.75 5.61133V3.81934C12.7499 3.50465 12.4954 3.25003 12.1807 3.25H10.3887Z"),
)
}.build()
return _ic_grid_plus_16!!
}
@Composable
@Preview(showBackground = true)
private fun IcGridPlus16Preview() {
Icon(
imageVector = Icons.ic_grid_plus_16,
contentDescription = null,
)
}

View file

@ -0,0 +1,62 @@
@file:Suppress("all")
package com.tangem.core.ui.res.generated.icons
import androidx.compose.material3.Icon
import androidx.compose.runtime.Composable
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.graphics.PathFillType
import androidx.compose.ui.graphics.SolidColor
import androidx.compose.ui.graphics.vector.ImageVector
import androidx.compose.ui.graphics.vector.addPathNodes
import androidx.compose.ui.tooling.preview.Preview
import androidx.compose.ui.unit.dp
/**
* Auto-generated from design tokens. Do not edit manually.
*/
private var _ic_grid_plus_20: ImageVector? = null
val Icons.ic_grid_plus_20: ImageVector
get() {
if (_ic_grid_plus_20 != null) return _ic_grid_plus_20!!
_ic_grid_plus_20 = ImageVector.Builder(
name = "ic_grid_plus_20",
defaultWidth = 20.dp,
defaultHeight = 20.dp,
viewportWidth = 20f,
viewportHeight = 20f,
).apply {
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M6.77734 10.8604C8.08152 10.8604 9.1377 11.9175 9.1377 13.2217V15.6377C9.1374 16.9416 8.08134 17.998 6.77734 17.998H4.36133C3.05738 17.9979 2.00029 16.9416 2 15.6377V13.2217C2 11.9175 3.0572 10.8605 4.36133 10.8604H6.77734ZM4.36133 12.3604C3.88563 12.3605 3.5 12.746 3.5 13.2217V15.6377C3.50029 16.1132 3.88581 16.4979 4.36133 16.498H6.77734C7.25292 16.498 7.63741 16.1132 7.6377 15.6377V13.2217C7.6377 12.7459 7.2531 12.3604 6.77734 12.3604H4.36133Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M14.4287 11.665C14.8427 11.6652 15.1785 12.001 15.1787 12.415V13.6787H16.4424C16.8564 13.6788 17.1922 14.0147 17.1924 14.4287C17.1923 14.8428 16.8565 15.1786 16.4424 15.1787H15.1787V16.4424C15.1787 16.8565 14.8428 17.1923 14.4287 17.1924C14.0147 17.1922 13.6788 16.8564 13.6787 16.4424V15.1787H12.415C12.0009 15.1786 11.6651 14.8428 11.665 14.4287C11.6652 14.0147 12.001 13.6788 12.415 13.6787H13.6787V12.415C13.6789 12.0011 14.0148 11.6652 14.4287 11.665Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M6.77734 2C8.08152 2.00006 9.13769 3.05714 9.1377 4.36133V6.77734C9.13764 8.08149 8.08149 9.13763 6.77734 9.1377H4.36133C3.05724 9.13757 2.00006 8.08145 2 6.77734V4.36133C2.00001 3.05718 3.05721 2.00012 4.36133 2H6.77734ZM4.36133 3.5C3.88564 3.50012 3.50001 3.88561 3.5 4.36133V6.77734C3.50006 7.25302 3.88567 7.63757 4.36133 7.6377H6.77734C7.25306 7.63763 7.63764 7.25306 7.6377 6.77734V4.36133C7.63769 3.88557 7.25309 3.50006 6.77734 3.5H4.36133Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M15.6377 2C16.9418 2.00013 17.998 3.05719 17.998 4.36133V6.77734C17.998 8.08144 16.9418 9.13756 15.6377 9.1377H13.2217C11.9175 9.1377 10.8604 8.08153 10.8604 6.77734V4.36133C10.8604 3.0571 11.9175 2 13.2217 2H15.6377ZM13.2217 3.5C12.7459 3.5 12.3604 3.88553 12.3604 4.36133V6.77734C12.3604 7.2531 12.7459 7.6377 13.2217 7.6377H15.6377C16.1133 7.63756 16.498 7.25302 16.498 6.77734V4.36133C16.498 3.88561 16.1134 3.50013 15.6377 3.5H13.2217Z"),
)
}.build()
return _ic_grid_plus_20!!
}
@Composable
@Preview(showBackground = true)
private fun IcGridPlus20Preview() {
Icon(
imageVector = Icons.ic_grid_plus_20,
contentDescription = null,
)
}

View file

@ -0,0 +1,62 @@
@file:Suppress("all")
package com.tangem.core.ui.res.generated.icons
import androidx.compose.material3.Icon
import androidx.compose.runtime.Composable
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.graphics.PathFillType
import androidx.compose.ui.graphics.SolidColor
import androidx.compose.ui.graphics.vector.ImageVector
import androidx.compose.ui.graphics.vector.addPathNodes
import androidx.compose.ui.tooling.preview.Preview
import androidx.compose.ui.unit.dp
/**
* Auto-generated from design tokens. Do not edit manually.
*/
private var _ic_grid_plus_24: ImageVector? = null
val Icons.ic_grid_plus_24: ImageVector
get() {
if (_ic_grid_plus_24 != null) return _ic_grid_plus_24!!
_ic_grid_plus_24 = ImageVector.Builder(
name = "ic_grid_plus_24",
defaultWidth = 24.dp,
defaultHeight = 24.dp,
viewportWidth = 24f,
viewportHeight = 24f,
).apply {
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M8 13C9.65728 13 11 14.3427 11 16V19C11 20.6573 9.65728 22 8 22H5C3.34272 22 2 20.6573 2 19V16C2 14.3427 3.34272 13 5 13H8ZM5 15C4.44728 15 4 15.4473 4 16V19C4 19.5527 4.44728 20 5 20H8C8.55272 20 9 19.5527 9 19V16C9 15.4473 8.55272 15 8 15H5Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M17.5 14C18.0523 14 18.5 14.4477 18.5 15V16.5H20C20.5523 16.5 21 16.9477 21 17.5C21 18.0523 20.5523 18.5 20 18.5H18.5V20C18.5 20.5523 18.0523 21 17.5 21C16.9477 21 16.5 20.5523 16.5 20V18.5H15C14.4477 18.5 14 18.0523 14 17.5C14 16.9477 14.4477 16.5 15 16.5H16.5V15C16.5 14.4477 16.9477 14 17.5 14Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M8 2C9.65728 2 11 3.34272 11 5V8C11 9.65728 9.65728 11 8 11H5C3.34272 11 2 9.65728 2 8V5C2 3.34272 3.34272 2 5 2H8ZM5 4C4.44728 4 4 4.44728 4 5V8C4 8.55272 4.44728 9 5 9H8C8.55272 9 9 8.55272 9 8V5C9 4.44728 8.55272 4 8 4H5Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M19 2C20.6573 2 22 3.34272 22 5V8C22 9.65728 20.6573 11 19 11H16C14.3427 11 13 9.65728 13 8V5C13 3.34272 14.3427 2 16 2H19ZM16 4C15.4473 4 15 4.44728 15 5V8C15 8.55272 15.4473 9 16 9H19C19.5527 9 20 8.55272 20 8V5C20 4.44728 19.5527 4 19 4H16Z"),
)
}.build()
return _ic_grid_plus_24!!
}
@Composable
@Preview(showBackground = true)
private fun IcGridPlus24Preview() {
Icon(
imageVector = Icons.ic_grid_plus_24,
contentDescription = null,
)
}

View file

@ -0,0 +1,62 @@
@file:Suppress("all")
package com.tangem.core.ui.res.generated.icons
import androidx.compose.material3.Icon
import androidx.compose.runtime.Composable
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.graphics.PathFillType
import androidx.compose.ui.graphics.SolidColor
import androidx.compose.ui.graphics.vector.ImageVector
import androidx.compose.ui.graphics.vector.addPathNodes
import androidx.compose.ui.tooling.preview.Preview
import androidx.compose.ui.unit.dp
/**
* Auto-generated from design tokens. Do not edit manually.
*/
private var _ic_grid_plus_28: ImageVector? = null
val Icons.ic_grid_plus_28: ImageVector
get() {
if (_ic_grid_plus_28 != null) return _ic_grid_plus_28!!
_ic_grid_plus_28 = ImageVector.Builder(
name = "ic_grid_plus_28",
defaultWidth = 28.dp,
defaultHeight = 28.dp,
viewportWidth = 28f,
viewportHeight = 28f,
).apply {
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M9.66699 14.918C11.5545 14.918 13.084 16.4474 13.084 18.335V21.585C13.0839 23.4725 11.5545 25.0019 9.66699 25.002H6.41699C4.52948 25.002 3.00007 23.4725 3 21.585V18.335C3 16.4474 4.52944 14.918 6.41699 14.918H9.66699ZM6.41699 17.418C5.91015 17.418 5.5 17.8281 5.5 18.335V21.585C5.50007 22.0917 5.91019 22.502 6.41699 22.502H9.66699C10.1738 22.5019 10.5839 22.0917 10.584 21.585V18.335C10.584 17.8281 10.1738 17.418 9.66699 17.418H6.41699Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M19.96 16.001C20.6501 16.0011 21.2098 16.5609 21.21 17.251V18.71H22.668C23.3583 18.71 23.9179 19.2697 23.918 19.96C23.9178 20.6502 23.3582 21.21 22.668 21.21H21.21V22.668C21.21 23.3582 20.6502 23.9178 19.96 23.918C19.2696 23.9179 18.71 23.3583 18.71 22.668V21.21H17.251C16.5609 21.2098 16.0011 20.6501 16.001 19.96C16.0011 19.2698 16.5608 18.7101 17.251 18.71H18.71V17.251C18.7101 16.5608 19.2697 16.001 19.96 16.001Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M9.66699 3C11.5545 3.00001 13.084 4.52945 13.084 6.41699V9.66699C13.084 11.5545 11.5545 13.084 9.66699 13.084H6.41699C4.52944 13.084 3 11.5545 3 9.66699V6.41699C3.00001 4.52945 4.52944 3 6.41699 3H9.66699ZM6.41699 5.5C5.91016 5.5 5.50001 5.91016 5.5 6.41699V9.66699C5.5 10.1738 5.91015 10.584 6.41699 10.584H9.66699C10.1738 10.584 10.584 10.1738 10.584 9.66699V6.41699C10.584 5.91017 10.1738 5.50001 9.66699 5.5H6.41699Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M21.585 3C23.4724 3.00014 25.0019 4.52954 25.002 6.41699V9.66699C25.002 11.5545 23.4724 13.0838 21.585 13.084H18.335C16.4474 13.084 14.918 11.5545 14.918 9.66699V6.41699C14.918 4.52945 16.4474 3 18.335 3H21.585ZM18.335 5.5C17.8281 5.5 17.418 5.91016 17.418 6.41699V9.66699C17.418 10.1738 17.8281 10.584 18.335 10.584H21.585C22.0917 10.5838 22.502 10.1737 22.502 9.66699V6.41699C22.5019 5.91025 22.0917 5.50014 21.585 5.5H18.335Z"),
)
}.build()
return _ic_grid_plus_28!!
}
@Composable
@Preview(showBackground = true)
private fun IcGridPlus28Preview() {
Icon(
imageVector = Icons.ic_grid_plus_28,
contentDescription = null,
)
}

View file

@ -31,7 +31,7 @@ val Icons.ic_heart_16: ImageVector
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M10.2119 2.5C12.5521 2.50031 14.0029 4.70655 14.0029 6.63379C14.0028 7.65361 13.6105 8.59271 13.0713 9.40234C12.5316 10.2126 11.8223 10.9278 11.1299 11.5156C10.435 12.1054 9.73935 12.5815 9.21191 12.9102C8.94794 13.0746 8.72349 13.2043 8.55859 13.2939C8.47673 13.3385 8.40636 13.3747 8.35156 13.4014C8.32501 13.4143 8.29574 13.4279 8.26855 13.4395C8.25576 13.4449 8.23542 13.4529 8.21191 13.4609C8.20024 13.4649 8.18004 13.4714 8.15527 13.4775C8.14029 13.4813 8.07935 13.497 8.00098 13.4971C7.92349 13.497 7.8634 13.4815 7.84766 13.4775C7.82308 13.4714 7.80276 13.4649 7.79102 13.4609C7.76739 13.4529 7.74624 13.4449 7.7334 13.4395C7.70641 13.428 7.67774 13.4142 7.65137 13.4014C7.59665 13.3747 7.52608 13.3384 7.44434 13.2939C7.27944 13.2043 7.05403 13.0746 6.79004 12.9102C6.26273 12.5816 5.56768 12.1052 4.87305 11.5156C4.18068 10.9279 3.47133 10.2124 2.93164 9.40234C2.39241 8.59271 2.0001 7.65361 2 6.63379C2.00005 4.70644 3.45057 2.50005 5.79102 2.5C6.76206 2.50006 7.48919 2.86673 8.00098 3.29004C8.51283 2.86653 9.24045 2.5 10.2119 2.5ZM10.2119 3.75C9.3646 3.75 8.81364 4.17408 8.47852 4.57031C8.35982 4.71056 8.18471 4.79192 8.00098 4.79199C7.81744 4.79187 7.64307 4.71032 7.52441 4.57031C7.18932 4.17412 6.63819 3.75008 5.79102 3.75C4.34424 3.75005 3.25005 5.1742 3.25 6.63379C3.2501 7.32849 3.51797 8.02773 3.97168 8.70898C4.42501 9.38953 5.04224 10.0197 5.68164 10.5625C6.31859 11.1031 6.96175 11.5436 7.45117 11.8486C7.67273 11.9867 7.86195 12.0952 8.00098 12.1719C8.14011 12.0951 8.3288 11.9869 8.55078 11.8486C9.04033 11.5436 9.68405 11.1034 10.3213 10.5625C10.9607 10.0197 11.5779 9.38958 12.0312 8.70898C12.4849 8.02775 12.7528 7.32847 12.7529 6.63379C12.7529 5.17434 11.6585 3.75032 10.2119 3.75Z"),
pathData = addPathNodes("M10.2119 2.5C12.5521 2.50031 14.0029 4.70655 14.0029 6.63379C14.0028 7.65361 13.6105 8.59271 13.0713 9.40234C12.5316 10.2126 11.8223 10.9278 11.1299 11.5156C10.435 12.1054 9.73935 12.5815 9.21191 12.9102C8.94794 13.0746 8.72349 13.2043 8.55859 13.2939C8.47673 13.3385 8.40636 13.3747 8.35156 13.4014C8.32501 13.4143 8.29574 13.4279 8.26855 13.4395C8.25576 13.4449 8.23542 13.4529 8.21191 13.4609C8.20024 13.4649 8.18004 13.4714 8.15527 13.4775C8.14029 13.4813 8.07935 13.497 8.00098 13.4971C7.92349 13.497 7.8634 13.4815 7.84766 13.4775C7.82308 13.4714 7.80276 13.4649 7.79102 13.4609C7.76739 13.4529 7.74624 13.4449 7.7334 13.4395C7.70641 13.428 7.67774 13.4142 7.65137 13.4014C7.59665 13.3747 7.52608 13.3384 7.44434 13.2939C7.27944 13.2043 7.05403 13.0746 6.79004 12.9102C6.26273 12.5816 5.56768 12.1052 4.87305 11.5156C4.18068 10.9279 3.47133 10.2124 2.93164 9.40234C2.39241 8.59271 2.0001 7.65361 2 6.63379C2.00005 4.70644 3.45057 2.50005 5.79102 2.5C6.76206 2.50006 7.48919 2.86673 8.00098 3.29004C8.51283 2.86653 9.24045 2.5 10.2119 2.5ZM10.2119 3.75C9.3646 3.75 8.81364 4.17408 8.47852 4.57031C8.35982 4.71056 8.18471 4.79192 8.00098 4.79199C7.81744 4.79187 7.64307 4.71032 7.52441 4.57031C7.18932 4.17412 6.63819 3.75008 5.79102 3.75C4.34424 3.75005 3.25005 5.1742 3.25 6.63379C3.2501 7.32849 3.51797 8.02773 3.97168 8.70898C4.42501 9.38953 5.04224 10.0197 5.68164 10.5625C6.31859 11.1031 6.96175 11.5436 7.45117 11.8486C7.67273 11.9867 7.86195 12.0952 8.00098 12.1719C8.14011 12.0951 8.3288 11.9869 8.55078 11.8486C9.04033 11.5436 9.68405 11.1034 10.3213 10.5625C10.9607 10.0197 11.5779 9.38958 12.0312 8.70898C12.4849 8.02775 12.7528 7.32846 12.7529 6.63379C12.7529 5.17434 11.6585 3.75032 10.2119 3.75Z"),
)
}.build()
return _ic_heart_16!!

View file

@ -0,0 +1,47 @@
@file:Suppress("all")
package com.tangem.core.ui.res.generated.icons
import androidx.compose.material3.Icon
import androidx.compose.runtime.Composable
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.graphics.PathFillType
import androidx.compose.ui.graphics.SolidColor
import androidx.compose.ui.graphics.vector.ImageVector
import androidx.compose.ui.graphics.vector.addPathNodes
import androidx.compose.ui.tooling.preview.Preview
import androidx.compose.ui.unit.dp
/**
* Auto-generated from design tokens. Do not edit manually.
*/
private var _ic_heart_28: ImageVector? = null
val Icons.ic_heart_28: ImageVector
get() {
if (_ic_heart_28 != null) return _ic_heart_28!!
_ic_heart_28 = ImageVector.Builder(
name = "ic_heart_28",
defaultWidth = 28.dp,
defaultHeight = 28.dp,
viewportWidth = 28f,
viewportHeight = 28f,
).apply {
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M18.4189 3.5C23.043 3.5 25.999 7.66221 25.999 11.4092C25.9989 13.379 25.2017 15.181 24.1201 16.7227C23.0366 18.2667 21.615 19.6276 20.2305 20.7432C18.8407 21.8628 17.4505 22.7663 16.3965 23.3896C15.8687 23.7018 15.4192 23.9472 15.0898 24.1172C14.9263 24.2016 14.7858 24.2708 14.6768 24.3213C14.6239 24.3457 14.5671 24.3711 14.5137 24.3926C14.4884 24.4027 14.4483 24.4177 14.4023 24.4326C14.3796 24.44 14.3404 24.4527 14.293 24.4639C14.263 24.4709 14.1481 24.498 14 24.498C13.851 24.498 13.7352 24.4707 13.7061 24.4639C13.6586 24.4527 13.6204 24.44 13.5977 24.4326C13.5514 24.4176 13.5106 24.4027 13.4854 24.3926C13.4319 24.3711 13.3751 24.3457 13.3223 24.3213C13.2132 24.2708 13.0728 24.2016 12.9092 24.1172C12.5799 23.9472 12.1311 23.7017 11.6035 23.3896C10.5494 22.7662 9.15845 21.863 7.76855 20.7432C6.38398 19.6276 4.9634 18.2668 3.87988 16.7227C2.79814 15.181 2.00013 13.3791 2 11.4092C2.00004 7.66234 4.95627 3.50031 9.58008 3.5C11.5194 3.5 12.9731 4.2018 13.999 5.01465C15.0249 4.20158 16.4793 3.50006 18.4189 3.5ZM18.4189 6C16.6992 6.00008 15.5931 6.81735 14.9326 7.55859C14.6955 7.82435 14.3561 7.97646 14 7.97656C13.6436 7.97649 13.3035 7.8246 13.0664 7.55859C12.4059 6.81731 11.3 6 9.58008 6C6.63197 6.00032 4.50004 8.72832 4.5 11.4092C4.50013 12.6933 5.02207 13.9991 5.92578 15.2871C6.82793 16.5728 8.05909 17.7655 9.33789 18.7959C10.6114 19.822 11.8967 20.6581 12.876 21.2373C13.333 21.5076 13.7192 21.7179 14 21.8643C14.2807 21.7179 14.6675 21.5073 15.124 21.2373C16.1032 20.6581 17.3888 19.8218 18.6621 18.7959C19.9407 17.7657 21.1712 16.5726 22.0732 15.2871C22.977 13.9991 23.4989 12.6933 23.499 11.4092C23.499 8.72817 21.3673 6 18.4189 6Z"),
)
}.build()
return _ic_heart_28!!
}
@Composable
@Preview(showBackground = true)
private fun IcHeart28Preview() {
Icon(
imageVector = Icons.ic_heart_28,
contentDescription = null,
)
}

View file

@ -0,0 +1,47 @@
@file:Suppress("all")
package com.tangem.core.ui.res.generated.icons
import androidx.compose.material3.Icon
import androidx.compose.runtime.Composable
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.graphics.PathFillType
import androidx.compose.ui.graphics.SolidColor
import androidx.compose.ui.graphics.vector.ImageVector
import androidx.compose.ui.graphics.vector.addPathNodes
import androidx.compose.ui.tooling.preview.Preview
import androidx.compose.ui.unit.dp
/**
* Auto-generated from design tokens. Do not edit manually.
*/
private var _ic_heart_28_filled: ImageVector? = null
val Icons.ic_heart_28_filled: ImageVector
get() {
if (_ic_heart_28_filled != null) return _ic_heart_28_filled!!
_ic_heart_28_filled = ImageVector.Builder(
name = "ic_heart_28_filled",
defaultWidth = 28.dp,
defaultHeight = 28.dp,
viewportWidth = 28f,
viewportHeight = 28f,
).apply {
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M18.9328 3.49902C23.1595 3.49902 25.9995 7.41027 25.9995 11.059C25.9995 18.4484 14.2128 24.499 13.9995 24.499C13.7862 24.499 1.99951 18.4484 1.99951 11.059C1.99951 7.41027 4.83951 3.49902 9.06618 3.49902C11.4928 3.49902 13.0795 4.6934 13.9995 5.7434C14.9195 4.6934 16.5062 3.49902 18.9328 3.49902Z"),
)
}.build()
return _ic_heart_28_filled!!
}
@Composable
@Preview(showBackground = true)
private fun IcHeart28FilledPreview() {
Icon(
imageVector = Icons.ic_heart_28_filled,
contentDescription = null,
)
}

View file

@ -31,7 +31,7 @@ val Icons.ic_heart_32: ImageVector
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M20.834 4.5C25.8256 4.50032 29.0046 9.05209 29.0049 13.1299C29.0048 15.2713 28.1491 17.2402 26.9756 18.9355C25.8006 20.633 24.2568 22.1319 22.748 23.3643C21.2341 24.6008 19.7184 25.5981 18.5693 26.2871C17.9941 26.632 17.5046 26.9034 17.1465 27.0908C16.9686 27.1839 16.8166 27.2594 16.6992 27.3145C16.6423 27.3411 16.5824 27.3688 16.5264 27.3916C16.4999 27.4024 16.4584 27.418 16.4111 27.4336C16.3879 27.4412 16.3481 27.4542 16.2998 27.4658C16.2696 27.4731 16.1523 27.5009 16.002 27.501C15.8526 27.5009 15.7363 27.4733 15.7051 27.4658C15.657 27.4543 15.6171 27.4413 15.5938 27.4336C15.5467 27.4181 15.5051 27.4024 15.4785 27.3916C15.4226 27.3688 15.3625 27.3411 15.3057 27.3145C15.1884 27.2595 15.0361 27.1838 14.8584 27.0908C14.5003 26.9035 14.0107 26.6319 13.4355 26.2871C12.2866 25.5982 10.7707 24.6007 9.25684 23.3643C7.74815 22.132 6.20426 20.6328 5.0293 18.9355C3.8558 17.2402 3.00012 15.2713 3 13.1299C3.00024 9.05194 6.17897 4.5 11.1709 4.5C13.306 4.50013 14.8942 5.29749 16.002 6.20703C17.1098 5.29726 18.6983 4.5 20.834 4.5ZM20.834 7C18.9179 7 17.6812 7.92499 16.9414 8.7666C16.7042 9.03641 16.3612 9.19127 16.002 9.19141C15.6429 9.19128 15.3007 9.03609 15.0635 8.7666C14.3238 7.92506 13.0866 7.00017 11.1709 7C7.88427 7 5.50024 10.084 5.5 13.1299C5.50012 14.595 6.08771 16.0719 7.08496 17.5127C8.08079 18.9511 9.43611 20.282 10.8389 21.4277C12.2366 22.5693 13.6468 23.4997 14.7207 24.1436C15.248 24.4597 15.6898 24.7035 16.002 24.8672C16.3142 24.7034 16.7564 24.46 17.2842 24.1436C18.3582 23.4996 19.7682 22.5694 21.166 21.4277C22.5689 20.2819 23.9241 18.9513 24.9199 17.5127C25.9172 16.0719 26.5048 14.595 26.5049 13.1299C26.5046 10.0842 24.1203 7.00033 20.834 7Z"),
pathData = addPathNodes("M20.834 4.5C25.8256 4.50032 29.0046 9.05209 29.0049 13.1299C29.0048 15.2713 28.1491 17.2402 26.9756 18.9355C25.8006 20.633 24.2568 22.1319 22.748 23.3643C21.2341 24.6008 19.7184 25.5981 18.5693 26.2871C17.9941 26.632 17.5046 26.9034 17.1465 27.0908C16.9686 27.1839 16.8166 27.2594 16.6992 27.3145C16.6423 27.3411 16.5824 27.3688 16.5264 27.3916C16.4999 27.4024 16.4584 27.418 16.4111 27.4336C16.3879 27.4412 16.3481 27.4543 16.2998 27.4658C16.2696 27.4731 16.1523 27.5009 16.002 27.501C15.8526 27.5009 15.7363 27.4733 15.7051 27.4658C15.657 27.4543 15.6171 27.4413 15.5938 27.4336C15.5467 27.4181 15.5051 27.4024 15.4785 27.3916C15.4226 27.3688 15.3625 27.3411 15.3057 27.3145C15.1884 27.2595 15.0361 27.1838 14.8584 27.0908C14.5003 26.9035 14.0107 26.6319 13.4355 26.2871C12.2866 25.5982 10.7707 24.6007 9.25684 23.3643C7.74815 22.132 6.20426 20.6328 5.0293 18.9355C3.8558 17.2402 3.00012 15.2713 3 13.1299C3.00024 9.05194 6.17897 4.5 11.1709 4.5C13.306 4.50013 14.8942 5.29749 16.002 6.20703C17.1098 5.29726 18.6983 4.5 20.834 4.5ZM20.834 7C18.9179 7 17.6812 7.92499 16.9414 8.7666C16.7042 9.03641 16.3612 9.19127 16.002 9.19141C15.6429 9.19128 15.3007 9.03609 15.0635 8.7666C14.3238 7.92506 13.0866 7.00017 11.1709 7C7.88427 7 5.50024 10.084 5.5 13.1299C5.50012 14.595 6.08771 16.0719 7.08496 17.5127C8.08079 18.9511 9.43611 20.282 10.8389 21.4277C12.2366 22.5693 13.6468 23.4997 14.7207 24.1436C15.248 24.4597 15.6898 24.7035 16.002 24.8672C16.3142 24.7034 16.7564 24.46 17.2842 24.1436C18.3582 23.4996 19.7682 22.5694 21.166 21.4277C22.5689 20.2819 23.9241 18.9513 24.9199 17.5127C25.9172 16.0719 26.5048 14.595 26.5049 13.1299C26.5046 10.0842 24.1203 7.00033 20.834 7Z"),
)
}.build()
return _ic_heart_32!!

View file

@ -31,7 +31,7 @@ val Icons.ic_heart_broken_16: ImageVector
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M10.2119 2.5C12.5521 2.50031 14.0029 4.70655 14.0029 6.63379C14.0028 7.65361 13.6105 8.59271 13.0713 9.40234C12.5316 10.2126 11.8223 10.9278 11.1299 11.5156C10.435 12.1054 9.73935 12.5815 9.21191 12.9102C8.94794 13.0746 8.72349 13.2043 8.55859 13.2939C8.47673 13.3385 8.40636 13.3747 8.35156 13.4014C8.32501 13.4143 8.29574 13.4279 8.26855 13.4395C8.25576 13.4449 8.23542 13.4529 8.21191 13.4609C8.20024 13.4649 8.18004 13.4714 8.15527 13.4775C8.14029 13.4813 8.07935 13.497 8.00098 13.4971C7.92349 13.497 7.8634 13.4815 7.84766 13.4775C7.82308 13.4714 7.80276 13.4649 7.79102 13.4609C7.76739 13.4529 7.74624 13.4449 7.7334 13.4395C7.70641 13.428 7.67774 13.4142 7.65137 13.4014C7.59665 13.3747 7.52608 13.3384 7.44434 13.2939C7.27944 13.2043 7.05403 13.0746 6.79004 12.9102C6.26273 12.5816 5.56768 12.1052 4.87305 11.5156C4.18068 10.9279 3.47133 10.2124 2.93164 9.40234C2.39241 8.59271 2.0001 7.65361 2 6.63379C2.00005 4.70644 3.45057 2.50005 5.79102 2.5C6.76206 2.50006 7.48919 2.86673 8.00098 3.29004C8.51283 2.86653 9.24045 2.5 10.2119 2.5ZM5.79102 3.75C4.34424 3.75005 3.25005 5.1742 3.25 6.63379C3.2501 7.32849 3.51797 8.02773 3.97168 8.70898C4.42501 9.38953 5.04224 10.0197 5.68164 10.5625C6.31859 11.1031 6.96175 11.5436 7.45117 11.8486C7.48253 11.8682 7.51395 11.886 7.54395 11.9043L8.2041 9.66016L6.91992 8.08887C6.73201 7.85885 6.73214 7.52794 6.91992 7.29785L8.16016 5.78027L7.60254 4.64453C7.57508 4.6216 7.54789 4.59802 7.52441 4.57031C7.18932 4.17412 6.63819 3.75008 5.79102 3.75ZM10.2119 3.75C9.5951 3.75 9.13554 3.97487 8.80176 4.25L9.45898 5.59082C9.56625 5.80992 9.53593 6.07166 9.38184 6.26074L8.21094 7.69238L9.38184 9.125C9.5123 9.28474 9.55517 9.49938 9.49707 9.69727L8.9375 11.5986C9.3564 11.3201 9.84091 10.9703 10.3213 10.5625C10.9607 10.0197 11.5779 9.38958 12.0312 8.70898C12.4849 8.02775 12.7528 7.32847 12.7529 6.63379C12.7529 5.17434 11.6585 3.75032 10.2119 3.75Z"),
pathData = addPathNodes("M10.2119 2.5C12.5521 2.50031 14.0029 4.70655 14.0029 6.63379C14.0028 7.65361 13.6105 8.59271 13.0713 9.40234C12.5316 10.2126 11.8223 10.9278 11.1299 11.5156C10.435 12.1054 9.73935 12.5815 9.21191 12.9102C8.94794 13.0746 8.72349 13.2043 8.55859 13.2939C8.47673 13.3385 8.40636 13.3747 8.35156 13.4014C8.32501 13.4143 8.29574 13.4279 8.26855 13.4395C8.25576 13.4449 8.23542 13.4529 8.21191 13.4609C8.20024 13.4649 8.18004 13.4714 8.15527 13.4775C8.14029 13.4813 8.07935 13.497 8.00098 13.4971C7.92349 13.497 7.8634 13.4815 7.84766 13.4775C7.82308 13.4714 7.80276 13.4649 7.79102 13.4609C7.76739 13.4529 7.74624 13.4449 7.7334 13.4395C7.70641 13.428 7.67774 13.4142 7.65137 13.4014C7.59665 13.3747 7.52608 13.3384 7.44434 13.2939C7.27944 13.2043 7.05403 13.0746 6.79004 12.9102C6.26273 12.5816 5.56768 12.1052 4.87305 11.5156C4.18068 10.9279 3.47133 10.2124 2.93164 9.40234C2.39241 8.59271 2.0001 7.65361 2 6.63379C2.00005 4.70644 3.45057 2.50005 5.79102 2.5C6.76206 2.50006 7.48919 2.86673 8.00098 3.29004C8.51283 2.86653 9.24045 2.5 10.2119 2.5ZM5.79102 3.75C4.34424 3.75005 3.25005 5.1742 3.25 6.63379C3.2501 7.32849 3.51797 8.02773 3.97168 8.70898C4.42501 9.38953 5.04224 10.0197 5.68164 10.5625C6.31859 11.1031 6.96175 11.5436 7.45117 11.8486C7.48253 11.8682 7.51395 11.886 7.54395 11.9043L8.2041 9.66016L6.91992 8.08887C6.73201 7.85885 6.73214 7.52794 6.91992 7.29785L8.16016 5.78027L7.60254 4.64453C7.57508 4.6216 7.54789 4.59802 7.52441 4.57031C7.18932 4.17412 6.63819 3.75008 5.79102 3.75ZM10.2119 3.75C9.5951 3.75 9.13554 3.97487 8.80176 4.25L9.45898 5.59082C9.56625 5.80992 9.53593 6.07166 9.38184 6.26074L8.21094 7.69238L9.38184 9.125C9.5123 9.28474 9.55517 9.49938 9.49707 9.69727L8.9375 11.5986C9.3564 11.3201 9.84091 10.9703 10.3213 10.5625C10.9607 10.0197 11.5779 9.38958 12.0312 8.70898C12.4849 8.02775 12.7528 7.32846 12.7529 6.63379C12.7529 5.17434 11.6585 3.75032 10.2119 3.75Z"),
)
}.build()
return _ic_heart_broken_16!!

View file

@ -0,0 +1,47 @@
@file:Suppress("all")
package com.tangem.core.ui.res.generated.icons
import androidx.compose.material3.Icon
import androidx.compose.runtime.Composable
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.graphics.PathFillType
import androidx.compose.ui.graphics.SolidColor
import androidx.compose.ui.graphics.vector.ImageVector
import androidx.compose.ui.graphics.vector.addPathNodes
import androidx.compose.ui.tooling.preview.Preview
import androidx.compose.ui.unit.dp
/**
* Auto-generated from design tokens. Do not edit manually.
*/
private var _ic_heart_broken_28: ImageVector? = null
val Icons.ic_heart_broken_28: ImageVector
get() {
if (_ic_heart_broken_28 != null) return _ic_heart_broken_28!!
_ic_heart_broken_28 = ImageVector.Builder(
name = "ic_heart_broken_28",
defaultWidth = 28.dp,
defaultHeight = 28.dp,
viewportWidth = 28f,
viewportHeight = 28f,
).apply {
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M18.4189 3.5C23.043 3.5 25.999 7.66221 25.999 11.4092C25.9989 13.379 25.2017 15.181 24.1201 16.7227C23.0366 18.2667 21.615 19.6276 20.2305 20.7432C18.8407 21.8628 17.4505 22.7663 16.3965 23.3896C15.8687 23.7018 15.4192 23.9472 15.0898 24.1172C14.9263 24.2016 14.7858 24.2708 14.6768 24.3213C14.6239 24.3457 14.5671 24.3711 14.5137 24.3926C14.4884 24.4027 14.4483 24.4177 14.4023 24.4326C14.3796 24.44 14.3404 24.4527 14.293 24.4639C14.263 24.4709 14.1481 24.498 14 24.498C13.851 24.498 13.7352 24.4707 13.7061 24.4639C13.6586 24.4527 13.6204 24.44 13.5977 24.4326C13.5514 24.4176 13.5106 24.4027 13.4854 24.3926C13.4319 24.3711 13.3751 24.3457 13.3223 24.3213C13.2132 24.2708 13.0728 24.2016 12.9092 24.1172C12.5799 23.9472 12.1311 23.7017 11.6035 23.3896C10.5494 22.7662 9.15845 21.863 7.76855 20.7432C6.38398 19.6276 4.9634 18.2668 3.87988 16.7227C2.79814 15.181 2.00013 13.3791 2 11.4092C2.00004 7.66234 4.95627 3.50031 9.58008 3.5C11.5194 3.5 12.9731 4.2018 13.999 5.01465C15.0249 4.20158 16.4793 3.50006 18.4189 3.5ZM9.58008 6C6.63197 6.00032 4.50004 8.72832 4.5 11.4092C4.50013 12.6933 5.02207 13.9991 5.92578 15.2871C6.82793 16.5728 8.05909 17.7655 9.33789 18.7959C10.6114 19.822 11.8967 20.6581 12.876 21.2373C12.9504 21.2813 13.0242 21.3215 13.0947 21.3623L14.3916 17.1787L11.8584 14.2354C11.4552 13.7666 11.455 13.0732 11.8584 12.6045L14.293 9.77539L13.2217 7.70215C13.1668 7.65843 13.1138 7.61172 13.0664 7.55859C12.4059 6.81731 11.3 6 9.58008 6ZM18.4189 6C17.2003 6.00005 16.29 6.41016 15.6279 6.91309L16.9014 9.37793C17.1353 9.83082 17.0707 10.3812 16.7383 10.7676L14.4541 13.4199L16.7383 16.0732C17.019 16.3994 17.1126 16.8477 16.9854 17.2588L15.8984 20.7617C16.7354 20.2329 17.7026 19.569 18.6621 18.7959C19.9407 17.7657 21.1712 16.5726 22.0732 15.2871C22.977 13.9991 23.4989 12.6933 23.499 11.4092C23.499 8.72817 21.3673 6 18.4189 6Z"),
)
}.build()
return _ic_heart_broken_28!!
}
@Composable
@Preview(showBackground = true)
private fun IcHeartBroken28Preview() {
Icon(
imageVector = Icons.ic_heart_broken_28,
contentDescription = null,
)
}

View file

@ -0,0 +1,57 @@
@file:Suppress("all")
package com.tangem.core.ui.res.generated.icons
import androidx.compose.material3.Icon
import androidx.compose.runtime.Composable
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.graphics.PathFillType
import androidx.compose.ui.graphics.SolidColor
import androidx.compose.ui.graphics.vector.ImageVector
import androidx.compose.ui.graphics.vector.addPathNodes
import androidx.compose.ui.tooling.preview.Preview
import androidx.compose.ui.unit.dp
/**
* Auto-generated from design tokens. Do not edit manually.
*/
private var _ic_info_28: ImageVector? = null
val Icons.ic_info_28: ImageVector
get() {
if (_ic_info_28 != null) return _ic_info_28!!
_ic_info_28 = ImageVector.Builder(
name = "ic_info_28",
defaultWidth = 28.dp,
defaultHeight = 28.dp,
viewportWidth = 28f,
viewportHeight = 28f,
).apply {
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M14 12.75C14.6902 12.7502 15.25 13.3097 15.25 14V19.9717C15.25 20.6619 14.6902 21.2215 14 21.2217C13.3097 21.2216 12.75 20.662 12.75 19.9717V15.2461C12.0855 15.2169 11.5557 14.6717 11.5557 14C11.5557 13.3096 12.1153 12.75 12.8057 12.75H14Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M13.832 7.97949C14.6237 8.04632 15.2498 8.70702 15.25 9.52051C15.25 10.3756 14.5562 11.0692 13.7012 11.0693C12.8462 11.0691 12.1533 10.3755 12.1533 9.52051C12.1523 8.70625 12.7786 8.04689 13.5674 7.97949C13.611 7.97489 13.6554 7.97266 13.7002 7.97266C13.7446 7.97266 13.7888 7.97497 13.832 7.97949ZM13.6035 10.4678L13.7002 10.4727C13.6667 10.4727 13.6334 10.4694 13.6006 10.4668L13.6035 10.4678Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M14 2C20.6274 2.00019 25.9988 7.37257 25.999 14C25.9988 20.6275 20.6275 25.9988 14 25.999C7.37252 25.9989 2.00019 20.6275 2 14C2.00023 7.37256 7.37254 2.00016 14 2ZM14 4.5C8.75325 4.50016 4.50023 8.75327 4.5 14C4.50019 19.2468 8.75323 23.4989 14 23.499C19.2467 23.4988 23.4988 19.2467 23.499 14C23.4988 8.75329 19.2467 4.50019 14 4.5Z"),
)
}.build()
return _ic_info_28!!
}
@Composable
@Preview(showBackground = true)
private fun IcInfo28Preview() {
Icon(
imageVector = Icons.ic_info_28,
contentDescription = null,
)
}

View file

@ -0,0 +1,52 @@
@file:Suppress("all")
package com.tangem.core.ui.res.generated.icons
import androidx.compose.material3.Icon
import androidx.compose.runtime.Composable
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.graphics.PathFillType
import androidx.compose.ui.graphics.SolidColor
import androidx.compose.ui.graphics.vector.ImageVector
import androidx.compose.ui.graphics.vector.addPathNodes
import androidx.compose.ui.tooling.preview.Preview
import androidx.compose.ui.unit.dp
/**
* Auto-generated from design tokens. Do not edit manually.
*/
private var _ic_mail_16: ImageVector? = null
val Icons.ic_mail_16: ImageVector
get() {
if (_ic_mail_16 != null) return _ic_mail_16!!
_ic_mail_16 = ImageVector.Builder(
name = "ic_mail_16",
defaultWidth = 16.dp,
defaultHeight = 16.dp,
viewportWidth = 16f,
viewportHeight = 16f,
).apply {
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M10.9355 5.4375C11.2286 5.25521 11.6135 5.34473 11.7959 5.6377C11.9782 5.9307 11.8886 6.31565 11.5957 6.49805L8.33105 8.5293C8.129 8.6549 7.87295 8.65492 7.6709 8.5293L4.40625 6.49805C4.11345 6.31566 4.02389 5.93067 4.20605 5.6377C4.38838 5.34478 4.77338 5.25535 5.06641 5.4375L8.00098 7.26172L10.9355 5.4375Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M12.5713 2.5C13.6766 2.50014 14.502 3.44503 14.502 4.52148V11.4775C14.5016 12.486 13.7765 13.3795 12.7754 13.4873L12.5713 13.498H3.43066C2.32546 13.498 1.50023 12.5529 1.5 11.4766V4.52148C1.5 3.445 2.32531 2.50009 3.43066 2.5H12.5713ZM3.43066 3.75C3.09322 3.7501 2.75 4.05515 2.75 4.52148V11.4766C2.75022 11.9426 3.09333 12.248 3.43066 12.248H12.5713C12.9087 12.2479 13.2516 11.9425 13.252 11.4775V4.52148C13.252 4.05519 12.9087 3.75015 12.5713 3.75H3.43066Z"),
)
}.build()
return _ic_mail_16!!
}
@Composable
@Preview(showBackground = true)
private fun IcMail16Preview() {
Icon(
imageVector = Icons.ic_mail_16,
contentDescription = null,
)
}

View file

@ -0,0 +1,52 @@
@file:Suppress("all")
package com.tangem.core.ui.res.generated.icons
import androidx.compose.material3.Icon
import androidx.compose.runtime.Composable
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.graphics.PathFillType
import androidx.compose.ui.graphics.SolidColor
import androidx.compose.ui.graphics.vector.ImageVector
import androidx.compose.ui.graphics.vector.addPathNodes
import androidx.compose.ui.tooling.preview.Preview
import androidx.compose.ui.unit.dp
/**
* Auto-generated from design tokens. Do not edit manually.
*/
private var _ic_mail_20: ImageVector? = null
val Icons.ic_mail_20: ImageVector
get() {
if (_ic_mail_20 != null) return _ic_mail_20!!
_ic_mail_20 = ImageVector.Builder(
name = "ic_mail_20",
defaultWidth = 20.dp,
defaultHeight = 20.dp,
viewportWidth = 20f,
viewportHeight = 20f,
).apply {
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M13.6484 6.95996C14.0043 6.74868 14.464 6.86514 14.6758 7.2207C14.8873 7.57655 14.7707 8.03721 14.415 8.24902L10.3857 10.6455C10.1496 10.7858 9.85527 10.7857 9.61914 10.6455L5.58984 8.24902C5.2341 8.0372 5.11744 7.5766 5.3291 7.2207C5.54094 6.865 6.00154 6.74831 6.35742 6.95996L10.002 9.12695L13.6484 6.95996Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M15.6436 3.5C16.9633 3.50042 18.0049 4.58896 18.0049 5.89746V14.1045C18.0048 15.3306 17.0892 16.3635 15.8877 16.4883L15.6436 16.501H4.3623C3.04231 16.5009 2.00002 15.4122 2 14.1035V5.89746C2.00001 4.58878 3.04231 3.50012 4.3623 3.5H15.6436ZM4.3623 5C3.90175 5.00012 3.50099 5.38584 3.50098 5.89746V14.1035C3.50099 14.6151 3.90175 15.0009 4.3623 15.001H15.6436C16.1041 15.0006 16.5048 14.6148 16.5049 14.1045V5.89746C16.5049 5.38605 16.1039 5.00042 15.6436 5H4.3623Z"),
)
}.build()
return _ic_mail_20!!
}
@Composable
@Preview(showBackground = true)
private fun IcMail20Preview() {
Icon(
imageVector = Icons.ic_mail_20,
contentDescription = null,
)
}

View file

@ -0,0 +1,52 @@
@file:Suppress("all")
package com.tangem.core.ui.res.generated.icons
import androidx.compose.material3.Icon
import androidx.compose.runtime.Composable
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.graphics.PathFillType
import androidx.compose.ui.graphics.SolidColor
import androidx.compose.ui.graphics.vector.ImageVector
import androidx.compose.ui.graphics.vector.addPathNodes
import androidx.compose.ui.tooling.preview.Preview
import androidx.compose.ui.unit.dp
/**
* Auto-generated from design tokens. Do not edit manually.
*/
private var _ic_mail_24: ImageVector? = null
val Icons.ic_mail_24: ImageVector
get() {
if (_ic_mail_24 != null) return _ic_mail_24!!
_ic_mail_24 = ImageVector.Builder(
name = "ic_mail_24",
defaultWidth = 24.dp,
defaultHeight = 24.dp,
viewportWidth = 24f,
viewportHeight = 24f,
).apply {
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M6.14258 8.48535C6.42676 8.01188 7.04112 7.85846 7.51465 8.14258L12 10.833L16.4854 8.14258C16.9589 7.85846 17.5732 8.01188 17.8574 8.48535C18.1415 8.95888 17.9881 9.57324 17.5146 9.85742L12.5146 12.8574C12.198 13.0474 11.802 13.0474 11.4854 12.8574L6.48535 9.85742C6.01188 9.57324 5.85846 8.95888 6.14258 8.48535Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M19 4C20.6598 4 22 5.34813 22 7.00586V16.9951C22 18.6522 20.6595 20 19 20H5C3.34015 20 2 18.6519 2 16.9941V7.00586C2 5.34813 3.34015 4 5 4H19ZM5 6C4.44985 6 4 6.44757 4 7.00586V16.9941C4 17.5524 4.44985 18 5 18H19C19.5505 18 20 17.5521 20 16.9951V7.00586C20 6.44757 19.5502 6 19 6H5Z"),
)
}.build()
return _ic_mail_24!!
}
@Composable
@Preview(showBackground = true)
private fun IcMail24Preview() {
Icon(
imageVector = Icons.ic_mail_24,
contentDescription = null,
)
}

View file

@ -0,0 +1,57 @@
@file:Suppress("all")
package com.tangem.core.ui.res.generated.icons
import androidx.compose.material3.Icon
import androidx.compose.runtime.Composable
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.graphics.PathFillType
import androidx.compose.ui.graphics.SolidColor
import androidx.compose.ui.graphics.vector.ImageVector
import androidx.compose.ui.graphics.vector.addPathNodes
import androidx.compose.ui.tooling.preview.Preview
import androidx.compose.ui.unit.dp
/**
* Auto-generated from design tokens. Do not edit manually.
*/
private var _ic_percent_16: ImageVector? = null
val Icons.ic_percent_16: ImageVector
get() {
if (_ic_percent_16 != null) return _ic_percent_16!!
_ic_percent_16 = ImageVector.Builder(
name = "ic_percent_16",
defaultWidth = 16.dp,
defaultHeight = 16.dp,
viewportWidth = 16f,
viewportHeight = 16f,
).apply {
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.EvenOdd,
pathData = addPathNodes("M9.87392 9.87313C10.8176 8.92951 12.3472 8.92957 13.2909 9.87313L13.4569 10.0567C14.231 11.0058 14.1756 12.4055 13.2909 13.2901C12.3472 14.2335 10.8176 14.2337 9.87392 13.2901C8.93031 12.3465 8.93038 10.8168 9.87392 9.87313ZM12.3192 10.6768C11.861 10.3029 11.1849 10.3298 10.7577 10.7569C10.3023 11.2124 10.3023 11.9509 10.7577 12.4063C11.2132 12.8617 11.9516 12.8616 12.4071 12.4063C12.8342 11.9793 12.8608 11.3039 12.4872 10.8458L12.4071 10.7569L12.3192 10.6768Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M12.036 3.07723C12.2799 2.83356 12.6757 2.83397 12.9198 3.07723C13.1639 3.32131 13.1639 3.71793 12.9198 3.962L3.96279 12.919C3.7187 13.1631 3.32209 13.1631 3.07802 12.919C2.83453 12.6751 2.83454 12.2792 3.07802 12.0352L12.036 3.07723Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.EvenOdd,
pathData = addPathNodes("M2.70791 2.70712C3.65162 1.76369 5.18124 1.76359 6.1249 2.70712L6.29091 2.89071C7.06491 3.83975 7.00942 5.23944 6.1249 6.12411C5.18119 7.06765 3.6516 7.06768 2.70791 6.12411C1.76422 5.18044 1.76421 3.65078 2.70791 2.70712ZM5.15322 3.51083C4.69509 3.13693 4.0189 3.16394 3.59169 3.59091C3.13617 4.0464 3.1362 4.7848 3.59169 5.24032C4.04723 5.69574 4.78555 5.69571 5.24111 5.24032C5.66794 4.81331 5.69469 4.13783 5.32119 3.67977L5.24111 3.59091L5.15322 3.51083Z"),
)
}.build()
return _ic_percent_16!!
}
@Composable
@Preview(showBackground = true)
private fun IcPercent16Preview() {
Icon(
imageVector = Icons.ic_percent_16,
contentDescription = null,
)
}

View file

@ -0,0 +1,57 @@
@file:Suppress("all")
package com.tangem.core.ui.res.generated.icons
import androidx.compose.material3.Icon
import androidx.compose.runtime.Composable
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.graphics.PathFillType
import androidx.compose.ui.graphics.SolidColor
import androidx.compose.ui.graphics.vector.ImageVector
import androidx.compose.ui.graphics.vector.addPathNodes
import androidx.compose.ui.tooling.preview.Preview
import androidx.compose.ui.unit.dp
/**
* Auto-generated from design tokens. Do not edit manually.
*/
private var _ic_percent_20: ImageVector? = null
val Icons.ic_percent_20: ImageVector
get() {
if (_ic_percent_20 != null) return _ic_percent_20!!
_ic_percent_20 = ImageVector.Builder(
name = "ic_percent_20",
defaultWidth = 20.dp,
defaultHeight = 20.dp,
viewportWidth = 20f,
viewportHeight = 20f,
).apply {
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M12.164 12.1622C13.2512 11.0751 14.9998 11.0586 16.1103 12.1075L16.1142 12.1105L16.1708 12.1622L16.3661 12.3771C17.2738 13.49 17.2082 15.1318 16.1708 16.1691C15.0642 17.2753 13.2705 17.2754 12.164 16.1691C11.0577 15.0626 11.0576 13.2687 12.164 12.1622ZM15.0097 13.131C14.4859 12.7039 13.7128 12.7346 13.2245 13.2228C12.704 13.7434 12.7041 14.5878 13.2245 15.1085C13.7453 15.6291 14.5895 15.629 15.1103 15.1085C15.5984 14.6204 15.6291 13.8481 15.2021 13.3243L15.1103 13.2228L15.0097 13.131Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M14.6796 4.25989C14.9725 3.96734 15.4474 3.96712 15.7402 4.25989C16.0328 4.5527 16.0327 5.02758 15.7402 5.32044L5.3222 15.7374C5.02935 16.0303 4.55455 16.0302 4.26166 15.7374C3.96879 15.4445 3.96875 14.9698 4.26166 14.6769L14.6796 4.25989Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M3.83002 3.82825C4.91726 2.74143 6.66596 2.72458 7.7763 3.77356L7.78021 3.77649L7.83685 3.82825L8.03216 4.04309C8.93972 5.15588 8.87397 6.79775 7.83685 7.83509C6.73027 8.94143 4.93656 8.94149 3.83002 7.83509C2.72358 6.72857 2.7235 4.93472 3.83002 3.82825ZM6.67572 4.797C6.15202 4.36988 5.37884 4.40087 4.89056 4.8888C4.36985 5.40947 4.36996 6.2538 4.89056 6.77454C5.41132 7.29516 6.25551 7.29509 6.7763 6.77454C7.26417 6.28641 7.29503 5.51397 6.8681 4.99036L6.7763 4.8888L6.67572 4.797Z"),
)
}.build()
return _ic_percent_20!!
}
@Composable
@Preview(showBackground = true)
private fun IcPercent20Preview() {
Icon(
imageVector = Icons.ic_percent_20,
contentDescription = null,
)
}

View file

@ -0,0 +1,57 @@
@file:Suppress("all")
package com.tangem.core.ui.res.generated.icons
import androidx.compose.material3.Icon
import androidx.compose.runtime.Composable
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.graphics.PathFillType
import androidx.compose.ui.graphics.SolidColor
import androidx.compose.ui.graphics.vector.ImageVector
import androidx.compose.ui.graphics.vector.addPathNodes
import androidx.compose.ui.tooling.preview.Preview
import androidx.compose.ui.unit.dp
/**
* Auto-generated from design tokens. Do not edit manually.
*/
private var _ic_percent_24: ImageVector? = null
val Icons.ic_percent_24: ImageVector
get() {
if (_ic_percent_24 != null) return _ic_percent_24!!
_ic_percent_24 = ImageVector.Builder(
name = "ic_percent_24",
defaultWidth = 24.dp,
defaultHeight = 24.dp,
viewportWidth = 24f,
viewportHeight = 24f,
).apply {
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M15.1704 15.1704C16.7324 13.6084 19.2647 13.6084 20.8267 15.1704L20.9683 15.3188C22.3869 16.8889 22.3398 19.3134 20.8267 20.8266C19.2648 22.3885 16.7324 22.3882 15.1704 20.8266C13.6084 19.2647 13.6085 16.7324 15.1704 15.1704ZM19.2603 16.4467C18.4748 15.8062 17.3165 15.8524 16.5845 16.5844C15.8036 17.3654 15.8036 18.6316 16.5845 19.4126C17.3654 20.193 18.6318 20.1933 19.4126 19.4126C20.1447 18.6804 20.19 17.5212 19.5493 16.7358L19.4126 16.5844L19.2603 16.4467Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M18.7905 3.79245C19.1809 3.40203 19.814 3.40224 20.2046 3.79245C20.5951 4.18297 20.5951 4.81598 20.2046 5.20651L5.20654 20.2046C4.81601 20.5949 4.18295 20.595 3.79248 20.2046C3.40239 19.8141 3.40225 19.1809 3.79248 18.7905L18.7905 3.79245Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M3.17139 3.17135C4.73327 1.60947 7.26565 1.60963 8.82764 3.17135L8.96924 3.31979C10.388 4.88987 10.3408 7.31437 8.82764 8.8276C7.26577 10.3893 4.73333 10.3892 3.17139 8.8276C1.60972 7.26565 1.60964 4.73326 3.17139 3.17135ZM7.26123 4.44772C6.47582 3.80747 5.31743 3.85343 4.58545 4.58542C3.80474 5.36627 3.80483 6.63264 4.58545 7.41354C5.36635 8.19411 6.63275 8.19423 7.41357 7.41354C8.14573 6.68135 8.19107 5.5222 7.55029 4.73678L7.41357 4.58542L7.26123 4.44772Z"),
)
}.build()
return _ic_percent_24!!
}
@Composable
@Preview(showBackground = true)
private fun IcPercent24Preview() {
Icon(
imageVector = Icons.ic_percent_24,
contentDescription = null,
)
}

View file

@ -0,0 +1,57 @@
@file:Suppress("all")
package com.tangem.core.ui.res.generated.icons
import androidx.compose.material3.Icon
import androidx.compose.runtime.Composable
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.graphics.PathFillType
import androidx.compose.ui.graphics.SolidColor
import androidx.compose.ui.graphics.vector.ImageVector
import androidx.compose.ui.graphics.vector.addPathNodes
import androidx.compose.ui.tooling.preview.Preview
import androidx.compose.ui.unit.dp
/**
* Auto-generated from design tokens. Do not edit manually.
*/
private var _ic_percent_28: ImageVector? = null
val Icons.ic_percent_28: ImageVector
get() {
if (_ic_percent_28 != null) return _ic_percent_28!!
_ic_percent_28 = ImageVector.Builder(
name = "ic_percent_28",
defaultWidth = 28.dp,
defaultHeight = 28.dp,
viewportWidth = 28f,
viewportHeight = 28f,
).apply {
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M17.3147 17.3155C19.0717 15.5586 21.9209 15.5587 23.678 17.3155C25.4347 19.0726 25.4348 21.9218 23.678 23.6788C21.921 25.4358 19.0718 25.4356 17.3147 23.6788C15.5579 21.9217 15.5577 19.0725 17.3147 17.3155ZM21.7581 18.9464C20.9728 18.3062 19.8151 18.3523 19.0833 19.0841C18.3025 19.8649 18.3025 21.1304 19.0833 21.9112C19.8641 22.6915 21.1298 22.6918 21.9104 21.9112C22.6422 21.1792 22.6875 20.0207 22.0471 19.2354L21.9104 19.0841L21.7581 18.9464Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M21.2366 4.9913C21.7246 4.50323 22.516 4.50343 23.0042 4.9913C23.4923 5.47945 23.4923 6.27072 23.0042 6.75888L6.75806 23.0059C6.26995 23.4938 5.47859 23.4939 4.99048 23.0059C4.50252 22.5178 4.50256 21.7265 4.99048 21.2384L21.2366 4.9913Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M4.31763 4.31747C6.07464 2.56089 8.92395 2.5608 10.6809 4.31747C12.4378 6.07442 12.4375 8.92361 10.6809 10.6808C8.92383 12.4379 6.07471 12.4379 4.31763 10.6808C2.56089 8.92362 2.56067 6.07446 4.31763 4.31747ZM8.76099 5.94833C7.97588 5.30821 6.81808 5.35453 6.08618 6.08603C5.30541 6.86681 5.30543 8.13238 6.08618 8.91317C6.86696 9.69379 8.13262 9.6939 8.91333 8.91317C9.64494 8.18106 9.69063 7.02252 9.05005 6.23739L8.91333 6.08603L8.76099 5.94833Z"),
)
}.build()
return _ic_percent_28!!
}
@Composable
@Preview(showBackground = true)
private fun IcPercent28Preview() {
Icon(
imageVector = Icons.ic_percent_28,
contentDescription = null,
)
}

View file

@ -46,7 +46,7 @@ val Icons.ic_percent_backward_20: ImageVector
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M8.5 7.62531C8.98325 7.62531 9.375 8.01706 9.375 8.50031C9.3748 8.98274 8.98418 9.37328 8.50195 9.37434L8.5 9.37531C8.26802 9.37544 8.04499 9.28348 7.88086 9.11945C7.71615 8.95474 7.62424 8.73031 7.625 8.49738C7.62658 8.01548 8.01773 7.62531 8.5 7.62531Z"),
pathData = addPathNodes("M8.5 7.62531C8.98325 7.62531 9.375 8.01706 9.375 8.50031C9.3748 8.98274 8.98418 9.37328 8.50195 9.37434L8.5 9.37531C8.26802 9.37543 8.04499 9.28348 7.88086 9.11945C7.71615 8.95474 7.62424 8.73031 7.625 8.49738C7.62658 8.01548 8.01772 7.62531 8.5 7.62531Z"),
)
}.build()
return _ic_percent_backward_20!!

View file

@ -36,7 +36,7 @@ val Icons.ic_percent_backward_24: ImageVector
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M14.126 13.0018C14.3867 13.0017 14.6387 13.091 14.8389 13.2547L14.9219 13.3299L14.9971 13.4129C15.1608 13.6131 15.251 13.865 15.251 14.1258C15.251 14.7471 14.7472 15.2507 14.126 15.2508C13.5047 15.2508 13.001 14.7471 13.001 14.1258C13.0011 13.5059 13.5026 13.0039 14.1221 13.0018H14.126Z"),
pathData = addPathNodes("M14.126 13.0018C14.3867 13.0017 14.6388 13.091 14.8389 13.2547L14.9219 13.3299L14.9971 13.4129C15.1608 13.6131 15.251 13.865 15.251 14.1258C15.251 14.7471 14.7472 15.2507 14.126 15.2508C13.5047 15.2508 13.001 14.7471 13.001 14.1258C13.0011 13.5059 13.5026 13.0039 14.1221 13.0018H14.126Z"),
)
addPath(
fill = SolidColor(Color.Black),
@ -46,7 +46,7 @@ val Icons.ic_percent_backward_24: ImageVector
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M9.98926 8.75472C10.5565 8.81232 10.9988 9.29151 10.999 9.87386C10.999 10.4943 10.497 10.9964 9.87695 10.9979L9.87793 10.9989L9.875 10.9979L9.87402 10.9989C9.57573 10.9989 9.28912 10.8808 9.07812 10.6698C8.86639 10.4579 8.74791 10.1695 8.74902 9.86995C8.75133 9.25065 9.25419 8.74897 9.87402 8.74886L9.98926 8.75472Z"),
pathData = addPathNodes("M9.98926 8.75472C10.5565 8.81231 10.9988 9.29151 10.999 9.87386C10.999 10.4943 10.497 10.9964 9.87695 10.9979L9.87793 10.9989L9.875 10.9979L9.87402 10.9989C9.57573 10.9989 9.28912 10.8808 9.07812 10.6698C8.86639 10.4579 8.74791 10.1695 8.74902 9.86995C8.75133 9.25065 9.25419 8.74897 9.87402 8.74886L9.98926 8.75472Z"),
)
}.build()
return _ic_percent_backward_24!!

View file

@ -36,7 +36,7 @@ val Icons.ic_pincode_20: ImageVector
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M5.95898 9.27246C6.34232 8.88986 6.95046 8.87284 7.35547 9.21875L7.36035 9.22168L7.41699 9.27246L7.46777 9.3291C7.47273 9.33522 7.47668 9.34242 7.48145 9.34863C7.72182 9.6405 7.78718 10.0421 7.64062 10.3965C7.48111 10.7819 7.10463 11.034 6.6875 11.0342C6.27036 11.0341 5.89395 10.7819 5.73438 10.3965C5.57495 10.011 5.66379 9.56729 5.95898 9.27246Z"),
pathData = addPathNodes("M5.95898 9.27246C6.34232 8.88986 6.95046 8.87284 7.35547 9.21875L7.36035 9.22168L7.41699 9.27246L7.46777 9.3291C7.47273 9.33522 7.47668 9.34242 7.48145 9.34863C7.72183 9.6405 7.78718 10.0421 7.64062 10.3965C7.48111 10.7819 7.10463 11.034 6.6875 11.0342C6.27036 11.0341 5.89395 10.7819 5.73438 10.3965C5.57495 10.011 5.66379 9.56729 5.95898 9.27246Z"),
)
addPath(
fill = SolidColor(Color.Black),

View file

@ -36,7 +36,7 @@ val Icons.ic_pincode_24: ImageVector
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M6.71484 10.9326C7.25469 10.493 8.05043 10.5248 8.55371 11.0273C8.94733 11.4205 9.06523 12.0123 8.85254 12.5264C8.6397 13.0402 8.13825 13.375 7.58203 13.375C7.02584 13.3749 6.5243 13.0402 6.31152 12.5264C6.09886 12.0124 6.21682 11.4205 6.61035 11.0273L6.71484 10.9326Z"),
pathData = addPathNodes("M6.71484 10.9326C7.25469 10.493 8.05043 10.5248 8.55371 11.0273C8.94733 11.4205 9.06523 12.0123 8.85254 12.5264C8.6397 13.0402 8.13825 13.375 7.58203 13.375C7.02584 13.3749 6.5243 13.0402 6.31152 12.5264C6.09886 12.0124 6.21683 11.4205 6.61035 11.0273L6.71484 10.9326Z"),
)
addPath(
fill = SolidColor(Color.Black),

View file

@ -0,0 +1,82 @@
@file:Suppress("all")
package com.tangem.core.ui.res.generated.icons
import androidx.compose.material3.Icon
import androidx.compose.runtime.Composable
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.graphics.PathFillType
import androidx.compose.ui.graphics.SolidColor
import androidx.compose.ui.graphics.vector.ImageVector
import androidx.compose.ui.graphics.vector.addPathNodes
import androidx.compose.ui.tooling.preview.Preview
import androidx.compose.ui.unit.dp
/**
* Auto-generated from design tokens. Do not edit manually.
*/
private var _ic_scan_face_20: ImageVector? = null
val Icons.ic_scan_face_20: ImageVector
get() {
if (_ic_scan_face_20 != null) return _ic_scan_face_20!!
_ic_scan_face_20 = ImageVector.Builder(
name = "ic_scan_face_20",
defaultWidth = 20.dp,
defaultHeight = 20.dp,
viewportWidth = 20f,
viewportHeight = 20f,
).apply {
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M2.75 13.2812C3.16403 13.2815 3.5 13.6172 3.5 14.0312V14.8369C3.50011 15.7576 4.24636 16.5046 5.16699 16.5049H5.97363C6.3875 16.5053 6.72363 16.8409 6.72363 17.2549C6.72333 17.6686 6.38731 18.0045 5.97363 18.0049H5.16699C3.41794 18.0046 2.00011 16.586 2 14.8369V14.0312C2 13.617 2.33579 13.2812 2.75 13.2812Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M17.2549 13.2812C17.6689 13.2815 18.0049 13.6172 18.0049 14.0312V14.8369C18.0048 16.5861 16.5861 18.0048 14.8369 18.0049H14.0312C13.6172 18.0049 13.2816 17.6688 13.2812 17.2549C13.2812 16.8407 13.617 16.5049 14.0312 16.5049H14.8369C15.7577 16.5048 16.5048 15.7577 16.5049 14.8369V14.0312C16.5049 13.617 16.8407 13.2812 17.2549 13.2812Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M12.084 12.8213C12.3769 12.5287 12.8527 12.5285 13.1455 12.8213C13.4378 13.114 13.4377 13.589 13.1455 13.8818C11.4102 15.6171 8.59567 15.617 6.86035 13.8818C6.56746 13.5889 6.56746 13.1142 6.86035 12.8213C7.15327 12.5287 7.62811 12.5285 7.9209 12.8213C9.07035 13.9706 10.9345 13.9705 12.084 12.8213Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M10.4053 6.91309C10.8193 6.91332 11.1553 7.24902 11.1553 7.66309V10.4834C11.155 11.342 10.4582 12.0387 9.59961 12.0391H9.19629C8.78223 12.0391 8.44653 11.7031 8.44629 11.2891C8.4464 10.8749 8.78214 10.5391 9.19629 10.5391H9.59961C9.62979 10.5387 9.65503 10.5136 9.65527 10.4834V7.66309C9.65527 7.24887 9.99106 6.91309 10.4053 6.91309Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M6.37598 6.89941C6.79 6.89964 7.12598 7.23534 7.12598 7.64941V8.8584C7.12558 9.27214 6.78976 9.60818 6.37598 9.6084C5.96204 9.60835 5.62637 9.27225 5.62598 8.8584V7.64941C5.62598 7.23523 5.9618 6.89946 6.37598 6.89941Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M13.6279 6.89941C14.042 6.89964 14.3779 7.23534 14.3779 7.64941V8.8584C14.3775 9.27214 14.0417 9.60818 13.6279 9.6084C13.2142 9.60814 12.8783 9.27212 12.8779 8.8584V7.64941C12.8779 7.23536 13.2139 6.89967 13.6279 6.89941Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M5.97363 2C6.3875 2.0004 6.72363 2.33604 6.72363 2.75C6.72342 3.16378 6.38737 3.4996 5.97363 3.5H5.16699C4.24645 3.50025 3.50025 4.24645 3.5 5.16699V5.97363C3.4996 6.38737 3.16378 6.72342 2.75 6.72363C2.33604 6.72363 2.0004 6.3875 2 5.97363V5.16699C2.00025 3.41802 3.41802 2.00025 5.16699 2H5.97363Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M14.8369 2C16.5861 2.00004 18.0046 3.4179 18.0049 5.16699V5.97363C18.0045 6.38736 17.6686 6.72339 17.2549 6.72363C16.8409 6.72363 16.5053 6.3875 16.5049 5.97363V5.16699C16.5046 4.24632 15.7576 3.50004 14.8369 3.5H14.0312C13.6172 3.5 13.2815 3.16403 13.2812 2.75C13.2812 2.33579 13.617 2 14.0312 2H14.8369Z"),
)
}.build()
return _ic_scan_face_20!!
}
@Composable
@Preview(showBackground = true)
private fun IcScanFace20Preview() {
Icon(
imageVector = Icons.ic_scan_face_20,
contentDescription = null,
)
}

View file

@ -0,0 +1,82 @@
@file:Suppress("all")
package com.tangem.core.ui.res.generated.icons
import androidx.compose.material3.Icon
import androidx.compose.runtime.Composable
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.graphics.PathFillType
import androidx.compose.ui.graphics.SolidColor
import androidx.compose.ui.graphics.vector.ImageVector
import androidx.compose.ui.graphics.vector.addPathNodes
import androidx.compose.ui.tooling.preview.Preview
import androidx.compose.ui.unit.dp
/**
* Auto-generated from design tokens. Do not edit manually.
*/
private var _ic_scan_face_24: ImageVector? = null
val Icons.ic_scan_face_24: ImageVector
get() {
if (_ic_scan_face_24 != null) return _ic_scan_face_24!!
_ic_scan_face_24 = ImageVector.Builder(
name = "ic_scan_face_24",
defaultWidth = 24.dp,
defaultHeight = 24.dp,
viewportWidth = 24f,
viewportHeight = 24f,
).apply {
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M3 16C3.55228 16 4 16.4477 4 17V18C4 19.1046 4.89543 20 6 20H7C7.55228 20 8 20.4477 8 21C8 21.5523 7.55228 22 7 22H6C3.79086 22 2 20.2091 2 18V17C2 16.4477 2.44772 16 3 16Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M21 16C21.5523 16 22 16.4477 22 17V18C22 20.2091 20.2091 22 18 22H17C16.4477 22 16 21.5523 16 21C16 20.4477 16.4477 20 17 20H18C19.1046 20 20 19.1046 20 18V17C20 16.4477 20.4477 16 21 16Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M14.5352 15.4502C14.9257 15.0599 15.5588 15.0597 15.9492 15.4502C16.3395 15.8407 16.3395 16.4738 15.9492 16.8643C13.7687 19.0445 10.2322 19.0447 8.05176 16.8643C7.66131 16.4738 7.66148 15.8407 8.05176 15.4502C8.44228 15.0597 9.0753 15.0597 9.46582 15.4502C10.8652 16.8496 13.1357 16.8494 14.5352 15.4502Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M12.5 8.09668C13.0522 8.09668 13.4998 8.54454 13.5 9.09668V12.5967C13.5 13.701 12.6043 14.5967 11.5 14.5967H11C10.4477 14.5967 10 14.149 10 13.5967C10.0002 13.0445 10.4478 12.5967 11 12.5967H11.5V9.09668C11.5002 8.54454 11.9478 8.09668 12.5 8.09668Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M7.5 8.08008C8.05228 8.08008 8.5 8.52779 8.5 9.08008V10.5801C8.49997 11.1323 8.05226 11.5801 7.5 11.5801C6.94774 11.5801 6.50003 11.1323 6.5 10.5801V9.08008C6.5 8.52779 6.94772 8.08008 7.5 8.08008Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M16.5 8.08008C17.0523 8.08008 17.5 8.52779 17.5 9.08008V10.5801C17.5 11.1323 17.0523 11.5801 16.5 11.5801C15.9477 11.5801 15.5 11.1323 15.5 10.5801V9.08008C15.5 8.52779 15.9477 8.08008 16.5 8.08008Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M7 2C7.55228 2 8 2.44772 8 3C8 3.55228 7.55228 4 7 4H6C4.89543 4 4 4.89543 4 6V7C4 7.55228 3.55228 8 3 8C2.44772 8 2 7.55228 2 7V6C2 3.79086 3.79086 2 6 2H7Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M18 2C20.2091 2 22 3.79086 22 6V7C22 7.55228 21.5523 8 21 8C20.4477 8 20 7.55228 20 7V6C20 4.89543 19.1046 4 18 4H17C16.4477 4 16 3.55228 16 3C16 2.44772 16.4477 2 17 2H18Z"),
)
}.build()
return _ic_scan_face_24!!
}
@Composable
@Preview(showBackground = true)
private fun IcScanFace24Preview() {
Icon(
imageVector = Icons.ic_scan_face_24,
contentDescription = null,
)
}

View file

@ -0,0 +1,82 @@
@file:Suppress("all")
package com.tangem.core.ui.res.generated.icons
import androidx.compose.material3.Icon
import androidx.compose.runtime.Composable
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.graphics.PathFillType
import androidx.compose.ui.graphics.SolidColor
import androidx.compose.ui.graphics.vector.ImageVector
import androidx.compose.ui.graphics.vector.addPathNodes
import androidx.compose.ui.tooling.preview.Preview
import androidx.compose.ui.unit.dp
/**
* Auto-generated from design tokens. Do not edit manually.
*/
private var _ic_scan_face_28: ImageVector? = null
val Icons.ic_scan_face_28: ImageVector
get() {
if (_ic_scan_face_28 != null) return _ic_scan_face_28!!
_ic_scan_face_28 = ImageVector.Builder(
name = "ic_scan_face_28",
defaultWidth = 28.dp,
defaultHeight = 28.dp,
viewportWidth = 28f,
viewportHeight = 28f,
).apply {
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M3.24902 18.7217C3.93928 18.7217 4.49886 19.2815 4.49902 19.9717V21.166C4.49929 22.4541 5.54377 23.4987 6.83203 23.499H8.02637C8.71653 23.499 9.27606 24.0589 9.27637 24.749C9.2761 25.4392 8.71656 25.999 8.02637 25.999H6.83203C4.16315 25.9987 1.99929 23.8349 1.99902 21.166V19.9717C1.99918 19.2816 2.55891 18.7218 3.24902 18.7217Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M24.749 18.7217C25.4393 18.7217 25.9989 19.2815 25.999 19.9717V21.166C25.9988 23.8351 23.8352 25.999 21.166 25.999H19.9717C19.2815 25.999 18.7219 25.4392 18.7217 24.749C18.722 24.0589 19.2815 23.499 19.9717 23.499H21.166C22.4546 23.499 23.4988 22.4543 23.499 21.166V19.9717C23.4992 19.2816 24.059 18.7219 24.749 18.7217Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M16.9873 18.0811C17.4754 17.593 18.2677 17.5932 18.7559 18.0811C19.2434 18.5692 19.2436 19.3606 18.7559 19.8486C16.1297 22.4744 11.8703 22.4744 9.24414 19.8486C8.75638 19.3605 8.75635 18.5691 9.24414 18.0811C9.73219 17.593 10.5235 17.5932 11.0117 18.0811C12.6615 19.7305 15.3374 19.7303 16.9873 18.0811Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M14.5967 9.28223C15.2868 9.2824 15.8465 9.84216 15.8467 10.5322V14.7129C15.8463 16.0621 14.7515 17.157 13.4023 17.1572H12.8047C12.1146 17.1571 11.555 16.5972 11.5547 15.9072C11.5549 15.2171 12.1146 14.6573 12.8047 14.6572H13.3467V10.5322C13.3469 9.84212 13.9065 9.28233 14.5967 9.28223Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M8.62402 9.2627C9.31438 9.2627 9.87402 9.82234 9.87402 10.5127V12.3037C9.87354 12.9937 9.31408 13.5537 8.62402 13.5537C7.93415 13.5535 7.37451 12.9935 7.37402 12.3037V10.5127C7.37402 9.82248 7.93386 9.26292 8.62402 9.2627Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M19.374 9.2627C20.0644 9.2627 20.624 9.82234 20.624 10.5127V12.3037C20.6235 12.9937 20.0641 13.5537 19.374 13.5537C18.6842 13.5534 18.1245 12.9935 18.124 12.3037V10.5127C18.124 9.82254 18.6839 9.26301 19.374 9.2627Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M8.02637 1.99902C8.7166 1.99902 9.27616 2.55982 9.27637 3.25C9.2761 3.94013 8.71656 4.5 8.02637 4.5H6.83203C5.5438 4.50036 4.49934 5.54494 4.49902 6.83301V8.02734C4.49876 8.71747 3.93922 9.27734 3.24902 9.27734C2.55897 9.27718 1.99929 8.71737 1.99902 8.02734V6.83301C1.99934 4.16414 4.16318 1.99938 6.83203 1.99902H8.02637Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M21.166 1.99902C23.8352 1.99903 25.9987 4.16392 25.999 6.83301V8.02734C25.9988 8.71747 25.4392 9.27734 24.749 9.27734C24.059 9.27709 23.4993 8.71732 23.499 8.02734V6.83301C23.4987 5.54473 22.4545 4.5 21.166 4.5H19.9717C19.2815 4.5 18.7219 3.94013 18.7217 3.25C18.7219 2.55982 19.2814 1.99902 19.9717 1.99902H21.166Z"),
)
}.build()
return _ic_scan_face_28!!
}
@Composable
@Preview(showBackground = true)
private fun IcScanFace28Preview() {
Icon(
imageVector = Icons.ic_scan_face_28,
contentDescription = null,
)
}

View file

@ -0,0 +1,67 @@
@file:Suppress("all")
package com.tangem.core.ui.res.generated.icons
import androidx.compose.material3.Icon
import androidx.compose.runtime.Composable
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.graphics.PathFillType
import androidx.compose.ui.graphics.SolidColor
import androidx.compose.ui.graphics.vector.ImageVector
import androidx.compose.ui.graphics.vector.addPathNodes
import androidx.compose.ui.tooling.preview.Preview
import androidx.compose.ui.unit.dp
/**
* Auto-generated from design tokens. Do not edit manually.
*/
private var _ic_scan_finger_20: ImageVector? = null
val Icons.ic_scan_finger_20: ImageVector
get() {
if (_ic_scan_finger_20 != null) return _ic_scan_finger_20!!
_ic_scan_finger_20 = ImageVector.Builder(
name = "ic_scan_finger_20",
defaultWidth = 20.dp,
defaultHeight = 20.dp,
viewportWidth = 20f,
viewportHeight = 20f,
).apply {
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M12.0124 14.8955C12.1618 14.5097 12.5961 14.318 12.9821 14.4668C13.3681 14.6161 13.5598 15.0503 13.4108 15.4365C13.1205 16.1883 12.7739 16.9187 12.3747 17.6201C12.1697 17.9796 11.712 18.1051 11.3523 17.9004C10.9927 17.6953 10.8672 17.2377 11.072 16.8779C11.4345 16.241 11.7489 15.5779 12.0124 14.8955Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M10.2644 8.88865C10.6784 8.88868 11.0142 9.22459 11.0144 9.63865C11.015 12.4596 10.0677 15.2001 8.32198 17.4306C8.06683 17.7565 7.59537 17.8142 7.26924 17.5596C6.94342 17.3042 6.88526 16.8319 7.14034 16.5058C8.68058 14.5378 9.51494 12.1225 9.51436 9.63865C9.51444 9.22477 9.85051 8.88904 10.2644 8.88865Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M10.2653 5.44432C12.5975 5.44453 14.5055 7.31162 14.5065 9.6367V9.63865C14.5063 10.3695 14.4562 11.1001 14.3562 11.8242C14.2993 12.2343 13.9206 12.5204 13.5105 12.4638C13.1007 12.4069 12.8135 12.029 12.8698 11.6191C12.9605 10.963 13.0063 10.3009 13.0065 9.63865V9.6367C13.0055 8.15931 11.7885 6.94453 10.2653 6.94432C8.74176 6.94469 7.52324 8.16057 7.52315 9.63865C7.52315 9.64975 7.52169 9.66087 7.5212 9.67185C7.5158 11.8542 6.73697 13.965 5.31905 15.6367C5.05109 15.9523 4.57722 15.9914 4.26143 15.7236C3.94624 15.4558 3.9073 14.9827 4.17452 14.667C5.37107 13.2564 6.02442 11.476 6.02217 9.63963C6.02217 9.62597 6.02342 9.61209 6.02413 9.59861C6.04586 7.29137 7.94609 5.44469 10.2653 5.44432Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M6.01339 3.26072C8.3863 1.71559 11.4267 1.58123 13.9294 2.91014C16.4329 4.23982 17.9996 6.82266 17.9987 9.63768C17.998 11.1835 17.8129 12.7254 17.448 14.2285C17.3502 14.6307 16.945 14.8777 16.5427 14.7803C16.1406 14.6824 15.8935 14.2772 15.9909 13.875C16.3278 12.4875 16.498 11.0652 16.4987 9.63865C16.4995 7.38607 15.2453 5.30815 13.2253 4.23533C11.2039 3.16206 8.74676 3.27059 6.83174 4.51756C6.48474 4.7431 6.0196 4.64562 5.79366 4.29881C5.56802 3.9519 5.6668 3.4868 6.01339 3.26072Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M3.30831 6.31541C3.49148 5.94415 3.94185 5.79178 4.31319 5.97459C4.68465 6.15786 4.83728 6.60801 4.65401 6.97947C4.24545 7.8077 4.03204 8.71657 4.03096 9.6367V9.63963C4.03015 10.5378 3.82117 11.4239 3.42061 12.2295C3.23614 12.5999 2.78639 12.7513 2.41573 12.5674C2.04534 12.3828 1.89373 11.9322 2.07784 11.5615C2.37574 10.9623 2.53042 10.3031 2.53096 9.6367C2.53201 8.48565 2.79812 7.34958 3.30831 6.31541Z"),
)
}.build()
return _ic_scan_finger_20!!
}
@Composable
@Preview(showBackground = true)
private fun IcScanFinger20Preview() {
Icon(
imageVector = Icons.ic_scan_finger_20,
contentDescription = null,
)
}

View file

@ -0,0 +1,67 @@
@file:Suppress("all")
package com.tangem.core.ui.res.generated.icons
import androidx.compose.material3.Icon
import androidx.compose.runtime.Composable
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.graphics.PathFillType
import androidx.compose.ui.graphics.SolidColor
import androidx.compose.ui.graphics.vector.ImageVector
import androidx.compose.ui.graphics.vector.addPathNodes
import androidx.compose.ui.tooling.preview.Preview
import androidx.compose.ui.unit.dp
/**
* Auto-generated from design tokens. Do not edit manually.
*/
private var _ic_scan_finger_24: ImageVector? = null
val Icons.ic_scan_finger_24: ImageVector
get() {
if (_ic_scan_finger_24 != null) return _ic_scan_finger_24!!
_ic_scan_finger_24 = ImageVector.Builder(
name = "ic_scan_finger_24",
defaultWidth = 24.dp,
defaultHeight = 24.dp,
viewportWidth = 24f,
viewportHeight = 24f,
).apply {
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M14.248 17.6974C14.447 17.1823 15.0259 16.9263 15.541 17.1251C16.056 17.3242 16.3131 17.9031 16.1143 18.4181C15.7714 19.3057 15.3621 20.1673 14.8906 20.9953C14.6173 21.475 14.0062 21.6423 13.5264 21.3693C13.0468 21.096 12.8796 20.4858 13.1523 20.006C13.5747 19.2642 13.941 18.4922 14.248 17.6974Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M12.3125 10.5773C12.8648 10.5772 13.3133 11.025 13.3135 11.5773C13.3141 14.9117 12.1924 18.1511 10.1279 20.7873C9.78744 21.2215 9.15925 21.2982 8.72461 20.9582C8.28999 20.6178 8.21372 19.9896 8.55371 19.5548C10.3441 17.2686 11.314 14.4621 11.3135 11.5773C11.3135 11.0252 11.7605 10.5776 12.3125 10.5773Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M12.3125 6.53823C15.1124 6.53844 17.406 8.78132 17.4062 11.5763C17.4062 11.584 17.4045 11.5921 17.4043 11.5998C17.4029 12.4548 17.3446 13.3102 17.2275 14.1574C17.1513 14.7037 16.6471 15.0862 16.1006 15.0109C15.5539 14.9351 15.1719 14.4296 15.2471 13.883C15.3527 13.119 15.4049 12.3482 15.4053 11.5773C15.4052 9.91234 14.0338 8.53844 12.3125 8.53823C10.5915 8.53829 9.21956 9.9109 9.21875 11.5753C9.22189 14.1772 8.29513 16.6958 6.60449 18.6876C6.24706 19.1084 5.6153 19.1602 5.19433 18.8029C4.77367 18.4455 4.72197 17.8137 5.0791 17.3927C6.46441 15.7606 7.22136 13.7013 7.21875 11.5773V11.5753C7.21956 8.78071 9.51277 6.53829 12.3125 6.53823Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M7.26171 3.99721C10.0807 2.16169 13.6922 2.00324 16.665 3.58218C19.6387 5.16176 21.5008 8.23004 21.5 11.5753V11.5773C21.4991 13.3991 21.2809 15.2159 20.8506 16.9874C20.7198 17.5233 20.1797 17.8528 19.6436 17.7228C19.1071 17.5925 18.7773 17.0512 18.9072 16.5148C19.3001 14.8976 19.4991 13.24 19.5 11.5773V11.5753C19.5008 8.97961 18.0558 6.58493 15.7266 5.3478C13.3954 4.10975 10.562 4.236 8.35351 5.67397C7.89075 5.97518 7.27108 5.84368 6.96972 5.381C6.66861 4.91828 6.79913 4.29857 7.26171 3.99721Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M4.04785 7.6271C4.29225 7.13212 4.89258 6.92896 5.38769 7.173C5.88258 7.41745 6.08586 8.01679 5.84179 8.51186C5.37056 9.46676 5.12528 10.5147 5.12402 11.5753V11.5783C5.12301 12.6501 4.8735 13.7079 4.3955 14.6691C4.14934 15.163 3.5489 15.365 3.05468 15.1193C2.56055 14.8734 2.35915 14.2728 2.60449 13.7785C2.94563 13.0925 3.12336 12.3381 3.12402 11.5753C3.12528 10.2069 3.44122 8.85644 4.04785 7.6271Z"),
)
}.build()
return _ic_scan_finger_24!!
}
@Composable
@Preview(showBackground = true)
private fun IcScanFinger24Preview() {
Icon(
imageVector = Icons.ic_scan_finger_24,
contentDescription = null,
)
}

View file

@ -0,0 +1,67 @@
@file:Suppress("all")
package com.tangem.core.ui.res.generated.icons
import androidx.compose.material3.Icon
import androidx.compose.runtime.Composable
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.graphics.PathFillType
import androidx.compose.ui.graphics.SolidColor
import androidx.compose.ui.graphics.vector.ImageVector
import androidx.compose.ui.graphics.vector.addPathNodes
import androidx.compose.ui.tooling.preview.Preview
import androidx.compose.ui.unit.dp
/**
* Auto-generated from design tokens. Do not edit manually.
*/
private var _ic_scan_finger_28: ImageVector? = null
val Icons.ic_scan_finger_28: ImageVector
get() {
if (_ic_scan_finger_28 != null) return _ic_scan_finger_28!!
_ic_scan_finger_28 = ImageVector.Builder(
name = "ic_scan_finger_28",
defaultWidth = 28.dp,
defaultHeight = 28.dp,
viewportWidth = 28f,
viewportHeight = 28f,
).apply {
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M16.4788 20.4991C16.7273 19.8554 17.4512 19.5353 18.095 19.7833C18.739 20.0318 19.0602 20.7555 18.8118 21.3995C18.4171 22.4222 17.9462 23.4151 17.4036 24.3692C17.0622 24.969 16.2985 25.1792 15.6985 24.838C15.0992 24.4967 14.8893 23.7336 15.2298 23.1339C15.7112 22.2874 16.1288 21.406 16.4788 20.4991Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M14.3557 12.2647C15.0458 12.2647 15.6064 12.8246 15.6067 13.5147C15.6075 17.3629 14.3141 21.1014 11.9329 24.1436C11.5073 24.6868 10.7215 24.7828 10.178 24.3575C9.63466 23.9321 9.53905 23.1462 9.96413 22.6026C12.0029 19.9979 13.1075 16.8011 13.1067 13.5147C13.1069 12.8249 13.666 12.2653 14.3557 12.2647Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M14.3557 7.63288C17.6231 7.63288 20.3017 10.2504 20.302 13.5147C20.3016 14.5087 20.2329 15.5026 20.0969 16.4874C20.0024 17.1709 19.3713 17.6489 18.6878 17.5548C18.0042 17.4602 17.5262 16.8292 17.6204 16.1456C17.7401 15.2782 17.8001 14.4037 17.801 13.5284C17.801 13.5242 17.801 13.5198 17.801 13.5157C17.801 11.6635 16.2746 10.1329 14.3557 10.1329C12.4381 10.1333 10.9119 11.662 10.9104 13.5128L10.8987 14.0762C10.7769 16.8841 9.72096 19.5788 7.88893 21.7383C7.44228 22.2644 6.6535 22.3293 6.12721 21.8829C5.6011 21.4364 5.53654 20.6475 5.98268 20.1212C7.55523 18.2675 8.41329 15.9286 8.41042 13.5167V13.5128C8.41185 10.2496 11.0893 7.63327 14.3557 7.63288Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M8.5071 4.73444C11.7718 2.60837 15.9538 2.42444 19.3967 4.253C22.8417 6.08298 24.9992 9.63856 24.9973 13.5157C24.9963 15.6135 24.7443 17.7043 24.2493 19.7442C24.0864 20.4148 23.4111 20.8267 22.7405 20.6641C22.0703 20.5011 21.6574 19.8257 21.8196 19.1553C22.2679 17.3077 22.4955 15.4134 22.4964 13.5137C22.4964 13.5093 22.4963 13.5045 22.4964 13.5001C22.4923 10.5662 20.859 7.86048 18.2249 6.46101C15.5843 5.05847 12.3739 5.20038 9.87233 6.82917C9.2939 7.20555 8.51853 7.04224 8.14186 6.46394C7.76562 5.8857 7.92927 5.11125 8.5071 4.73444Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M4.78444 8.93952C5.08961 8.3205 5.83917 8.06632 6.45827 8.37116C7.07747 8.67642 7.33188 9.42579 7.02663 10.045C6.49388 11.1259 6.21669 12.3121 6.2151 13.5128V13.5157C6.21404 14.7613 5.92428 15.9905 5.3694 17.1075C5.06208 17.7253 4.31165 17.9769 3.69362 17.67C3.07597 17.3628 2.82364 16.6131 3.13014 15.9952C3.51404 15.2223 3.71435 14.373 3.7151 13.5137C3.71664 11.9286 4.08254 10.3636 4.78444 8.93952Z"),
)
}.build()
return _ic_scan_finger_28!!
}
@Composable
@Preview(showBackground = true)
private fun IcScanFinger28Preview() {
Icon(
imageVector = Icons.ic_scan_finger_28,
contentDescription = null,
)
}

View file

@ -0,0 +1,102 @@
@file:Suppress("all")
package com.tangem.core.ui.res.generated.icons
import androidx.compose.material3.Icon
import androidx.compose.runtime.Composable
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.graphics.PathFillType
import androidx.compose.ui.graphics.SolidColor
import androidx.compose.ui.graphics.vector.ImageVector
import androidx.compose.ui.graphics.vector.addPathNodes
import androidx.compose.ui.tooling.preview.Preview
import androidx.compose.ui.unit.dp
/**
* Auto-generated from design tokens. Do not edit manually.
*/
private var _ic_scan_qr_20: ImageVector? = null
val Icons.ic_scan_qr_20: ImageVector
get() {
if (_ic_scan_qr_20 != null) return _ic_scan_qr_20!!
_ic_scan_qr_20 = ImageVector.Builder(
name = "ic_scan_qr_20",
defaultWidth = 20.dp,
defaultHeight = 20.dp,
viewportWidth = 20f,
viewportHeight = 20f,
).apply {
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M2.75 13.2812C3.16403 13.2815 3.5 13.6172 3.5 14.0312V14.8369C3.50011 15.7576 4.24636 16.5046 5.16699 16.5049H5.97363C6.3875 16.5053 6.72363 16.8409 6.72363 17.2549C6.72333 17.6686 6.38731 18.0045 5.97363 18.0049H5.16699C3.41794 18.0046 2.00011 16.586 2 14.8369V14.0312C2 13.617 2.33579 13.2812 2.75 13.2812Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M17.2549 13.2812C17.6689 13.2815 18.0049 13.6172 18.0049 14.0312V14.8369C18.0048 16.5861 16.5861 18.0048 14.8369 18.0049H14.0312C13.6172 18.0049 13.2816 17.6688 13.2812 17.2549C13.2812 16.8407 13.617 16.5049 14.0312 16.5049H14.8369C15.7577 16.5048 16.5048 15.7577 16.5049 14.8369V14.0312C16.5049 13.617 16.8407 13.2812 17.2549 13.2812Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M10.7773 13.4453C11.0718 13.2051 11.5066 13.2217 11.7812 13.4961L11.7852 13.501C12.0777 13.7939 12.0779 14.2687 11.7852 14.5615L11.7812 14.5654C11.4885 14.8581 11.0136 14.858 10.7207 14.5654L10.7158 14.5615C10.4234 14.2688 10.4235 13.7938 10.7158 13.501L10.7207 13.4961L10.7773 13.4453Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M13.5176 13.4453C13.8121 13.2051 14.2469 13.2216 14.5215 13.4961L14.5254 13.501C14.8179 13.7939 14.818 14.2687 14.5254 14.5615L14.5215 14.5654C14.2287 14.8582 13.7539 14.858 13.4609 14.5654L13.4561 14.5615C13.1634 14.2688 13.1636 13.7939 13.4561 13.501L13.4609 13.4961L13.5176 13.4453Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M8.29297 10.4609C8.98333 10.4609 9.54297 11.0206 9.54297 11.7109V14.0312C9.54282 14.4453 9.20709 14.7812 8.79297 14.7812H6.47266C5.78243 14.7812 5.22281 14.2214 5.22266 13.5312V11.7109C5.22266 11.0206 5.78234 10.461 6.47266 10.4609H8.29297ZM6.72266 13.2812H8.04297V11.9609H6.72266V13.2812Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M12.1475 12.0352C12.4419 11.7949 12.8767 11.8116 13.1514 12.0859L13.1553 12.0908C13.4478 12.3837 13.448 12.8586 13.1553 13.1514L13.1514 13.1553C12.8586 13.448 12.3837 13.4478 12.0908 13.1553L12.0859 13.1514C11.7935 12.8586 11.7937 12.3837 12.0859 12.0908L12.0908 12.0859L12.1475 12.0352Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M10.7773 10.625C11.0718 10.3847 11.5066 10.4014 11.7812 10.6758L11.7852 10.6807C12.0777 10.9736 12.0779 11.4484 11.7852 11.7412L11.7812 11.7451C11.4885 12.0378 11.0136 12.0376 10.7207 11.7451L10.7158 11.7412C10.4233 11.4485 10.4235 10.9735 10.7158 10.6807L10.7207 10.6758L10.7773 10.625Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M13.5176 10.625C13.8121 10.3848 14.2469 10.4012 14.5215 10.6758L14.5254 10.6807C14.8179 10.9736 14.8181 11.4484 14.5254 11.7412L14.5215 11.7451C14.2287 12.0379 13.7539 12.0377 13.4609 11.7451L13.4561 11.7412C13.1633 11.4485 13.1636 10.9736 13.4561 10.6807L13.4609 10.6758L13.5176 10.625Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M8.29297 5.22266C8.98326 5.22266 9.54286 5.78239 9.54297 6.47266V8.79297C9.54297 9.20718 9.20718 9.54297 8.79297 9.54297H6.47266C5.78234 9.54292 5.22266 8.9833 5.22266 8.29297V6.47266C5.22277 5.78242 5.78241 5.2227 6.47266 5.22266H8.29297ZM6.72266 8.04297H8.04297V6.72266H6.72266V8.04297Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M13.5312 5.22266C14.2214 5.22278 14.7811 5.78247 14.7812 6.47266V8.79297C14.7812 9.20711 14.4454 9.54285 14.0312 9.54297H11.7109C11.0206 9.54297 10.4609 8.98332 10.4609 8.29297V6.47266C10.461 5.78239 11.0206 5.22266 11.7109 5.22266H13.5312ZM11.9609 8.04297H13.2812V6.72266H11.9609V8.04297Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M5.97363 2C6.3875 2.0004 6.72363 2.33604 6.72363 2.75C6.72342 3.16378 6.38737 3.4996 5.97363 3.5H5.16699C4.24645 3.50025 3.50025 4.24645 3.5 5.16699V5.97363C3.4996 6.38737 3.16378 6.72342 2.75 6.72363C2.33604 6.72363 2.0004 6.3875 2 5.97363V5.16699C2.00025 3.41802 3.41802 2.00025 5.16699 2H5.97363Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M14.8369 2C16.5861 2.00004 18.0046 3.4179 18.0049 5.16699V5.97363C18.0045 6.38736 17.6686 6.72339 17.2549 6.72363C16.8409 6.72363 16.5053 6.3875 16.5049 5.97363V5.16699C16.5046 4.24632 15.7576 3.50004 14.8369 3.5H14.0312C13.6172 3.5 13.2815 3.16403 13.2812 2.75C13.2812 2.33579 13.617 2 14.0312 2H14.8369Z"),
)
}.build()
return _ic_scan_qr_20!!
}
@Composable
@Preview(showBackground = true)
private fun IcScanQr20Preview() {
Icon(
imageVector = Icons.ic_scan_qr_20,
contentDescription = null,
)
}

View file

@ -0,0 +1,102 @@
@file:Suppress("all")
package com.tangem.core.ui.res.generated.icons
import androidx.compose.material3.Icon
import androidx.compose.runtime.Composable
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.graphics.PathFillType
import androidx.compose.ui.graphics.SolidColor
import androidx.compose.ui.graphics.vector.ImageVector
import androidx.compose.ui.graphics.vector.addPathNodes
import androidx.compose.ui.tooling.preview.Preview
import androidx.compose.ui.unit.dp
/**
* Auto-generated from design tokens. Do not edit manually.
*/
private var _ic_scan_qr_24: ImageVector? = null
val Icons.ic_scan_qr_24: ImageVector
get() {
if (_ic_scan_qr_24 != null) return _ic_scan_qr_24!!
_ic_scan_qr_24 = ImageVector.Builder(
name = "ic_scan_qr_24",
defaultWidth = 24.dp,
defaultHeight = 24.dp,
viewportWidth = 24f,
viewportHeight = 24f,
).apply {
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M3 16C3.55228 16 4 16.4477 4 17V18C4 19.1046 4.89543 20 6 20H7C7.55228 20 8 20.4477 8 21C8 21.5523 7.55228 22 7 22H6C3.79086 22 2 20.2091 2 18V17C2 16.4477 2.44772 16 3 16Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M21 16C21.5523 16 22 16.4477 22 17V18C22 20.2091 20.2091 22 18 22H17C16.4477 22 16 21.5523 16 21C16 20.4477 16.4477 20 17 20H18C19.1046 20 20 19.1046 20 18V17C20 16.4477 20.4477 16 21 16Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M12.8428 16.2881C13.2333 15.8976 13.8663 15.8977 14.2568 16.2881L14.2617 16.293C14.6522 16.6835 14.6522 17.3165 14.2617 17.707L14.2568 17.7119C13.8663 18.1023 13.2333 18.1024 12.8428 17.7119L12.8379 17.707C12.4475 17.3165 12.4475 16.6835 12.8379 16.293L12.8428 16.2881Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M16.2432 16.2881C16.6337 15.8977 17.2667 15.8976 17.6572 16.2881L17.6621 16.293C18.0525 16.6835 18.0525 17.3165 17.6621 17.707L17.6572 17.7119C17.2667 18.1024 16.6337 18.1023 16.2432 17.7119L16.2383 17.707C15.8478 17.3165 15.8478 16.6835 16.2383 16.293L16.2432 16.2881Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M10 12.5C10.8284 12.5 11.5 13.1716 11.5 14V17C11.5 17.5523 11.0523 18 10.5 18H7.5C6.67157 18 6 17.3284 6 16.5V14C6 13.1716 6.67157 12.5 7.5 12.5H10ZM8 16H9.5V14.5H8V16Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M14.543 14.5381C14.9335 14.1476 15.5665 14.1476 15.957 14.5381L15.9619 14.543C16.3524 14.9335 16.3524 15.5665 15.9619 15.957L15.957 15.9619C15.5665 16.3524 14.9335 16.3524 14.543 15.9619L14.5381 15.957C14.1476 15.5665 14.1476 14.9335 14.5381 14.543L14.543 14.5381Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M12.8428 12.7881C13.2333 12.3976 13.8663 12.3977 14.2568 12.7881L14.2617 12.793C14.6522 13.1835 14.6522 13.8165 14.2617 14.207L14.2568 14.2119C13.8663 14.6023 13.2333 14.6024 12.8428 14.2119L12.8379 14.207C12.4475 13.8165 12.4475 13.1835 12.8379 12.793L12.8428 12.7881Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M16.2432 12.7881C16.6337 12.3977 17.2667 12.3976 17.6572 12.7881L17.6621 12.793C18.0525 13.1835 18.0525 13.8165 17.6621 14.207L17.6572 14.2119C17.2667 14.6024 16.6337 14.6023 16.2432 14.2119L16.2383 14.207C15.8478 13.8165 15.8478 13.1835 16.2383 12.793L16.2432 12.7881Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M10 6C10.8284 6 11.5 6.67157 11.5 7.5V10.5C11.5 11.0523 11.0523 11.5 10.5 11.5H7.5C6.67157 11.5 6 10.8284 6 10V7.5C6 6.67157 6.67157 6 7.5 6H10ZM8 9.5H9.5V8H8V9.5Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M16.5 6C17.3284 6 18 6.67157 18 7.5V10.5C18 11.0523 17.5523 11.5 17 11.5H14C13.1716 11.5 12.5 10.8284 12.5 10V7.5C12.5 6.67157 13.1716 6 14 6H16.5ZM14.5 9.5H16V8H14.5V9.5Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M7 2C7.55228 2 8 2.44772 8 3C8 3.55228 7.55228 4 7 4H6C4.89543 4 4 4.89543 4 6V7C4 7.55228 3.55228 8 3 8C2.44772 8 2 7.55228 2 7V6C2 3.79086 3.79086 2 6 2H7Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M18 2C20.2091 2 22 3.79086 22 6V7C22 7.55228 21.5523 8 21 8C20.4477 8 20 7.55228 20 7V6C20 4.89543 19.1046 4 18 4H17C16.4477 4 16 3.55228 16 3C16 2.44772 16.4477 2 17 2H18Z"),
)
}.build()
return _ic_scan_qr_24!!
}
@Composable
@Preview(showBackground = true)
private fun IcScanQr24Preview() {
Icon(
imageVector = Icons.ic_scan_qr_24,
contentDescription = null,
)
}

View file

@ -31,7 +31,7 @@ val Icons.ic_share_android_20: ImageVector
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M12.3772 3.37816C13.5488 2.20706 15.4479 2.20684 16.6194 3.37816L16.7258 3.48949C17.7901 4.667 17.7541 6.48523 16.6194 7.62035C15.4478 8.79166 13.5487 8.79182 12.3772 7.62035C12.3273 7.57044 12.2803 7.51849 12.2346 7.46605L8.42995 9.3684C8.51871 9.78341 8.52065 10.2131 8.4319 10.6282L12.2346 12.5295C12.28 12.4774 12.3276 12.4258 12.3772 12.3762C13.5487 11.2052 15.4479 11.2051 16.6194 12.3762L16.7258 12.4875C17.7901 13.665 17.7541 15.4833 16.6194 16.6184C15.4478 17.7899 13.5488 17.7899 12.3772 16.6184C11.6315 15.8725 11.3629 14.8323 11.5667 13.8723L7.75709 11.968C7.71291 12.0185 7.66947 12.0712 7.62135 12.1194C6.44983 13.2909 4.55077 13.2907 3.37916 12.1194C2.20761 10.9478 2.20758 9.04876 3.37916 7.87719C4.5508 6.70628 6.44997 6.70588 7.62135 7.87719L7.7278 7.98851C7.73882 8.00071 7.74826 8.01427 7.75905 8.0266L11.5667 6.12328C11.3633 5.16358 11.6318 4.1237 12.3772 3.37816ZM15.4456 13.3332C14.8565 12.853 13.9869 12.8881 13.4378 13.4368C13.3456 13.5289 13.2685 13.6312 13.2053 13.7385C13.1944 13.7708 13.1829 13.8039 13.1673 13.8352C13.1508 13.8681 13.1301 13.8986 13.1096 13.928C12.8874 14.4705 12.9973 15.1172 13.4378 15.5578C14.0235 16.1436 14.973 16.1436 15.5589 15.5578C16.1075 15.0088 16.1424 14.14 15.6624 13.551L15.5589 13.4368L15.4456 13.3332ZM6.44752 8.83422C5.85857 8.35384 4.98896 8.38916 4.43971 8.93773C3.85392 9.52352 3.85394 10.473 4.43971 11.0588C5.02553 11.6444 5.97507 11.6445 6.56081 11.0588C6.65438 10.9651 6.73153 10.8605 6.79518 10.7512C6.80525 10.7231 6.81762 10.6946 6.83131 10.6672C6.8454 10.6391 6.8612 10.6117 6.87819 10.5862C7.03699 10.2133 7.03917 9.78966 6.88209 9.41625C6.86365 9.38907 6.84643 9.36048 6.83131 9.33031C6.81696 9.30158 6.80458 9.27196 6.7942 9.24242C6.75582 9.1768 6.71353 9.11238 6.66432 9.05199L6.56081 8.93773L6.44752 8.83422ZM15.4456 4.33519C14.8565 3.85483 13.987 3.88996 13.4378 4.43871C12.9973 4.87938 12.8883 5.52603 13.1106 6.06859C13.1311 6.09809 13.1507 6.12926 13.1673 6.16234C13.1825 6.19282 13.1936 6.22472 13.2044 6.25609C13.2678 6.36431 13.3449 6.46696 13.4378 6.5598C14.0235 7.14549 14.973 7.14532 15.5589 6.5598C16.1075 6.01072 16.1424 5.14197 15.6624 4.55297L15.5589 4.43871L15.4456 4.33519Z"),
pathData = addPathNodes("M12.3772 3.37816C13.5488 2.20706 15.4479 2.20684 16.6194 3.37816L16.7258 3.48949C17.7901 4.667 17.7541 6.48523 16.6194 7.62035C15.4478 8.79166 13.5487 8.79182 12.3772 7.62035C12.3273 7.57044 12.2803 7.5185 12.2346 7.46605L8.42995 9.3684C8.51871 9.78341 8.52065 10.2131 8.4319 10.6282L12.2346 12.5295C12.28 12.4774 12.3276 12.4258 12.3772 12.3762C13.5487 11.2052 15.4479 11.2051 16.6194 12.3762L16.7258 12.4875C17.7901 13.665 17.7541 15.4833 16.6194 16.6184C15.4478 17.7899 13.5488 17.7899 12.3772 16.6184C11.6315 15.8725 11.3629 14.8323 11.5667 13.8723L7.75709 11.968C7.71291 12.0185 7.66948 12.0712 7.62135 12.1194C6.44983 13.2909 4.55078 13.2907 3.37916 12.1194C2.20761 10.9478 2.20758 9.04876 3.37916 7.87719C4.5508 6.70628 6.44997 6.70588 7.62135 7.87719L7.7278 7.98851C7.73882 8.00071 7.74826 8.01427 7.75905 8.0266L11.5667 6.12328C11.3633 5.16358 11.6318 4.1237 12.3772 3.37816ZM15.4456 13.3332C14.8565 12.853 13.9869 12.8881 13.4378 13.4368C13.3456 13.5289 13.2685 13.6312 13.2053 13.7385C13.1944 13.7708 13.1829 13.8039 13.1673 13.8352C13.1508 13.8681 13.1301 13.8986 13.1096 13.928C12.8874 14.4705 12.9973 15.1172 13.4378 15.5578C14.0235 16.1436 14.973 16.1436 15.5589 15.5578C16.1075 15.0088 16.1424 14.14 15.6624 13.551L15.5589 13.4368L15.4456 13.3332ZM6.44752 8.83422C5.85857 8.35384 4.98896 8.38916 4.43971 8.93773C3.85392 9.52352 3.85394 10.473 4.43971 11.0588C5.02553 11.6444 5.97507 11.6445 6.56081 11.0588C6.65438 10.9651 6.73153 10.8605 6.79518 10.7512C6.80525 10.7231 6.81762 10.6946 6.83131 10.6672C6.8454 10.6391 6.8612 10.6117 6.87819 10.5862C7.03699 10.2133 7.03917 9.78966 6.88209 9.41625C6.86365 9.38907 6.84643 9.36048 6.83131 9.33031C6.81696 9.30158 6.80458 9.27196 6.7942 9.24242C6.75582 9.1768 6.71353 9.11238 6.66432 9.05199L6.56081 8.93773L6.44752 8.83422ZM15.4456 4.33519C14.8565 3.85483 13.987 3.88996 13.4378 4.43871C12.9973 4.87938 12.8883 5.52603 13.1106 6.06859C13.1311 6.09809 13.1507 6.12926 13.1673 6.16234C13.1825 6.19282 13.1936 6.22472 13.2044 6.25609C13.2678 6.36431 13.3449 6.46696 13.4378 6.5598C14.0235 7.14549 14.973 7.14532 15.5589 6.5598C16.1075 6.01072 16.1424 5.14197 15.6624 4.55297L15.5589 4.43871L15.4456 4.33519Z"),
)
}.build()
return _ic_share_android_20!!

View file

@ -31,7 +31,7 @@ val Icons.ic_shield_checkmark_24: ImageVector
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M14.2705 9.317C14.6482 8.91414 15.2807 8.89353 15.6836 9.2711C16.0862 9.6488 16.107 10.2813 15.7295 10.6842L11.9795 14.6842C11.7905 14.8857 11.5263 15.0006 11.25 15.0006C10.9737 15.0006 10.7095 14.8857 10.5205 14.6842L8.27051 12.2848C7.89285 11.8819 7.91371 11.2485 8.31641 10.8707C8.71932 10.4933 9.35187 10.5139 9.72949 10.9166L11.25 12.5387L14.2705 9.317Z"),
pathData = addPathNodes("M14.2705 9.317C14.6482 8.91414 15.2807 8.89353 15.6836 9.2711C16.0862 9.64881 16.107 10.2813 15.7295 10.6842L11.9795 14.6842C11.7905 14.8857 11.5263 15.0006 11.25 15.0006C10.9737 15.0006 10.7095 14.8857 10.5205 14.6842L8.27051 12.2848C7.89285 11.8819 7.91371 11.2485 8.31641 10.8707C8.71932 10.4933 9.35187 10.5139 9.72949 10.9166L11.25 12.5387L14.2705 9.317Z"),
)
addPath(
fill = SolidColor(Color.Black),

View file

@ -0,0 +1,47 @@
@file:Suppress("all")
package com.tangem.core.ui.res.generated.icons
import androidx.compose.material3.Icon
import androidx.compose.runtime.Composable
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.graphics.PathFillType
import androidx.compose.ui.graphics.SolidColor
import androidx.compose.ui.graphics.vector.ImageVector
import androidx.compose.ui.graphics.vector.addPathNodes
import androidx.compose.ui.tooling.preview.Preview
import androidx.compose.ui.unit.dp
/**
* Auto-generated from design tokens. Do not edit manually.
*/
private var _ic_snowflake_12: ImageVector? = null
val Icons.ic_snowflake_12: ImageVector
get() {
if (_ic_snowflake_12 != null) return _ic_snowflake_12!!
_ic_snowflake_12 = ImageVector.Builder(
name = "ic_snowflake_12",
defaultWidth = 12.dp,
defaultHeight = 12.dp,
viewportWidth = 12f,
viewportHeight = 12f,
).apply {
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M5.99906 1C6.27506 1.00001 6.49884 1.22406 6.49906 1.5V2.08887L6.73051 1.85742C6.92576 1.66235 7.24232 1.66227 7.43754 1.85742C7.6325 2.05264 7.63257 2.36925 7.43754 2.56445L6.49906 3.50293V5.13379L7.91215 4.31738L8.2559 3.03711C8.32749 2.77082 8.60177 2.61155 8.86821 2.68262C9.13442 2.75409 9.29343 3.0286 9.2227 3.29492L9.13774 3.61035L9.74906 3.25781C9.9882 3.11974 10.2946 3.2013 10.4327 3.44043C10.5703 3.67948 10.488 3.98506 10.2491 4.12305L9.63676 4.47559L9.95219 4.56055C10.2186 4.63207 10.3768 4.90637 10.3057 5.17285C10.2341 5.4392 9.95988 5.59754 9.6934 5.52637L8.41215 5.18262L6.99809 5.99902L8.41117 6.81445L9.6934 6.47168C9.95995 6.40059 10.2343 6.55966 10.3057 6.82617C10.3769 7.09266 10.2185 7.36687 9.95219 7.43848L9.63676 7.52246L10.2491 7.87598C10.4879 8.01413 10.5706 8.32055 10.4327 8.55957C10.2946 8.79848 9.9881 8.87999 9.74906 8.74219L9.13774 8.38965L9.2227 8.70312C9.29384 8.96959 9.13454 9.24383 8.86821 9.31543C8.60169 9.38654 8.3274 9.22834 8.2559 8.96191L7.91313 7.68164L6.49906 6.86523V8.49609L7.43754 9.43457C7.63246 9.62978 7.63246 9.94642 7.43754 10.1416C7.24232 10.3368 6.92575 10.3367 6.73051 10.1416L6.49906 9.91016V10.498C6.49906 10.7742 6.27519 10.998 5.99906 10.998C5.72305 10.9979 5.49906 10.7741 5.49906 10.498V9.91211L5.26957 10.1416C5.07441 10.3368 4.75785 10.3366 4.56254 10.1416C4.36745 9.94636 4.36738 9.6298 4.56254 9.43457L5.49906 8.49805V6.86523L4.085 7.68164L3.7432 8.96191C3.67158 9.22831 3.39743 9.38671 3.1309 9.31543C2.86449 9.24388 2.70621 8.96964 2.77738 8.70312L2.86039 8.38867L2.25004 8.74219C2.01109 8.88016 1.70567 8.79826 1.56742 8.55957C1.42933 8.32043 1.5109 8.01406 1.75004 7.87598L2.36137 7.52246L2.04789 7.43848C1.78131 7.36709 1.6223 7.09276 1.6934 6.82617C1.7649 6.55977 2.03921 6.40061 2.3057 6.47168L3.58695 6.81445L4.99906 5.99902L3.58598 5.18262L2.3057 5.52637C2.03919 5.59746 1.7649 5.43928 1.6934 5.17285C1.62219 4.90621 1.78126 4.63195 2.04789 4.56055L2.36137 4.47559L1.75004 4.12305C1.51106 3.98495 1.42949 3.6795 1.56742 3.44043C1.70555 3.2014 2.01095 3.11975 2.25004 3.25781L2.86137 3.61035L2.77738 3.29492C2.70652 3.02854 2.86462 2.75411 3.1309 2.68262C3.39744 2.61143 3.67167 2.77067 3.7432 3.03711L4.08598 4.31641L5.49906 5.13281V3.50098L4.56254 2.56445C4.36733 2.36918 4.3673 2.05265 4.56254 1.85742C4.75782 1.66228 5.07436 1.66221 5.26957 1.85742L5.49906 2.08691V1.5C5.49929 1.22414 5.72318 1.00015 5.99906 1Z"),
)
}.build()
return _ic_snowflake_12!!
}
@Composable
@Preview(showBackground = true)
private fun IcSnowflake12Preview() {
Icon(
imageVector = Icons.ic_snowflake_12,
contentDescription = null,
)
}

View file

@ -31,7 +31,7 @@ val Icons.ic_snowflake_20: ImageVector
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M10.0011 2.5C10.4149 2.50024 10.7509 2.83611 10.7511 3.25V4.18066L11.1749 3.77441C11.4736 3.48781 11.9486 3.49748 12.2354 3.7959C12.5221 4.0946 12.5124 4.56958 12.2139 4.85645L10.7511 6.25977V8.72461L13.0245 7.46387L13.5597 5.54785C13.6712 5.14923 14.0847 4.91518 14.4835 5.02637C14.882 5.13773 15.1148 5.55155 15.004 5.9502L14.8653 6.44336L15.8878 5.87793C16.2499 5.67781 16.7066 5.80896 16.9073 6.1709C17.1077 6.53284 16.9768 6.98943 16.6153 7.19043L15.672 7.71191L16.1632 7.83887C16.5639 7.94204 16.8057 8.35115 16.7032 8.75195C16.6002 9.15291 16.1911 9.39467 15.7901 9.29199L13.7618 8.77051L11.547 9.99707L13.7647 11.2256L15.7901 10.7061C16.1911 10.6034 16.6002 10.8452 16.7032 11.2461C16.8059 11.647 16.5639 12.056 16.1632 12.1592L15.6729 12.2842L16.6153 12.8066C16.9768 13.0076 17.1075 13.4642 16.9073 13.8262C16.7065 14.1882 16.2499 14.3186 15.8878 14.1182L14.8653 13.5508L15.004 14.0479C15.1149 14.4465 14.8821 14.8603 14.4835 14.9717C14.0847 15.0829 13.6711 14.8489 13.5597 14.4502L13.0235 12.5303L10.7511 11.2705V13.7354L12.2139 15.1396C12.5125 15.4264 12.522 15.9014 12.2354 16.2002C11.9486 16.4989 11.4737 16.5085 11.1749 16.2217L10.7511 15.8145V16.7461C10.7511 17.1602 10.4151 17.4959 10.0011 17.4961C9.58685 17.4961 9.25106 17.1603 9.25106 16.7461V15.8135L8.82625 16.2217C8.5275 16.5085 8.05259 16.4989 7.7657 16.2002C7.47919 15.9014 7.48855 15.4264 7.78719 15.1396L9.25106 13.7344V11.2715L6.9786 12.5303L6.44344 14.4502C6.33208 14.8488 5.91835 15.0826 5.51961 14.9717C5.12084 14.8604 4.88724 14.4466 4.99813 14.0479L5.13582 13.5508L4.11434 14.1182C3.75214 14.3188 3.29465 14.1883 3.09383 13.8262C2.89345 13.464 3.02566 13.0073 3.38778 12.8066L4.32918 12.2842L3.83992 12.1592C3.4389 12.0561 3.19708 11.6471 3.29988 11.2461C3.403 10.845 3.81187 10.6031 4.21297 10.7061L6.23836 11.2256L8.4532 9.99805L6.23934 8.77051L4.21297 9.29199C3.81187 9.39498 3.403 9.15304 3.29988 8.75195C3.19723 8.351 3.43898 7.94192 3.83992 7.83887L4.33016 7.71191L3.38778 7.19043C3.0256 6.9897 2.8933 6.53313 3.09383 6.1709C3.29462 5.80887 3.75216 5.67744 4.11434 5.87793L5.13582 6.44336L4.99813 5.9502C4.88739 5.55148 5.12092 5.13759 5.51961 5.02637C5.91827 4.91548 6.33201 5.14932 6.44344 5.54785L6.9786 7.46484L9.25106 8.72461V6.26074L7.78719 4.85645C7.48874 4.56953 7.47893 4.09457 7.7657 3.7959C8.05251 3.49741 8.52752 3.4879 8.82625 3.77441L9.25106 4.18164V3.25C9.25126 2.83596 9.58697 2.5 10.0011 2.5Z"),
pathData = addPathNodes("M10.0011 2.5C10.4149 2.50024 10.7509 2.83611 10.7511 3.25V4.18066L11.1749 3.77441C11.4736 3.48781 11.9486 3.49748 12.2354 3.7959C12.5221 4.0946 12.5124 4.56958 12.2139 4.85645L10.7511 6.25977V8.72461L13.0245 7.46387L13.5597 5.54785C13.6712 5.14923 14.0847 4.91518 14.4835 5.02637C14.882 5.13773 15.1148 5.55155 15.004 5.9502L14.8653 6.44336L15.8878 5.87793C16.2499 5.67781 16.7066 5.80896 16.9073 6.1709C17.1077 6.53284 16.9768 6.98943 16.6153 7.19043L15.672 7.71191L16.1632 7.83887C16.5639 7.94204 16.8057 8.35115 16.7032 8.75195C16.6002 9.15291 16.1911 9.39467 15.7901 9.29199L13.7618 8.77051L11.547 9.99707L13.7647 11.2256L15.7901 10.7061C16.1911 10.6034 16.6002 10.8452 16.7032 11.2461C16.8059 11.647 16.5639 12.056 16.1632 12.1592L15.6729 12.2842L16.6153 12.8066C16.9768 13.0076 17.1075 13.4642 16.9073 13.8262C16.7065 14.1882 16.2499 14.3186 15.8878 14.1182L14.8653 13.5508L15.004 14.0479C15.1149 14.4465 14.8821 14.8603 14.4835 14.9717C14.0847 15.0829 13.6711 14.8489 13.5597 14.4502L13.0235 12.5303L10.7511 11.2705V13.7354L12.2139 15.1396C12.5125 15.4264 12.522 15.9014 12.2354 16.2002C11.9486 16.4989 11.4737 16.5085 11.1749 16.2217L10.7511 15.8145V16.7461C10.7511 17.1602 10.4151 17.4958 10.0011 17.4961C9.58685 17.4961 9.25106 17.1603 9.25106 16.7461V15.8135L8.82625 16.2217C8.5275 16.5085 8.05259 16.4989 7.7657 16.2002C7.47919 15.9014 7.48855 15.4264 7.78719 15.1396L9.25106 13.7344V11.2715L6.9786 12.5303L6.44344 14.4502C6.33208 14.8488 5.91835 15.0826 5.51961 14.9717C5.12084 14.8604 4.88724 14.4466 4.99813 14.0479L5.13582 13.5508L4.11434 14.1182C3.75214 14.3188 3.29465 14.1883 3.09383 13.8262C2.89345 13.464 3.02566 13.0073 3.38778 12.8066L4.32918 12.2842L3.83992 12.1592C3.4389 12.0561 3.19708 11.6471 3.29988 11.2461C3.403 10.845 3.81187 10.6031 4.21297 10.7061L6.23836 11.2256L8.4532 9.99805L6.23934 8.77051L4.21297 9.29199C3.81187 9.39498 3.403 9.15304 3.29988 8.75195C3.19723 8.351 3.43898 7.94192 3.83992 7.83887L4.33016 7.71191L3.38778 7.19043C3.0256 6.9897 2.8933 6.53313 3.09383 6.1709C3.29462 5.80887 3.75216 5.67744 4.11434 5.87793L5.13582 6.44336L4.99813 5.9502C4.88739 5.55148 5.12092 5.13759 5.51961 5.02637C5.91827 4.91548 6.33201 5.14932 6.44344 5.54785L6.9786 7.46484L9.25106 8.72461V6.26074L7.78719 4.85645C7.48874 4.56953 7.47893 4.09457 7.7657 3.7959C8.05251 3.49741 8.52752 3.4879 8.82625 3.77441L9.25106 4.18164V3.25C9.25126 2.83596 9.58697 2.5 10.0011 2.5Z"),
)
}.build()
return _ic_snowflake_20!!

View file

@ -31,7 +31,7 @@ val Icons.ic_snowflake_24: ImageVector
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M11.9998 2C12.5521 2.00006 12.9998 2.44775 12.9998 3V4.1748L13.4608 3.71387C13.8511 3.32351 14.4843 3.3237 14.8748 3.71387C15.2652 4.1043 15.2651 4.73737 14.8748 5.12793L12.9998 7.00293V10.2666L15.8279 8.63281L16.5135 6.07422C16.6564 5.54089 17.2047 5.22438 17.7381 5.36719C18.2713 5.5102 18.5879 6.05848 18.4451 6.5918L18.2762 7.21973L19.4998 6.51367C19.978 6.23773 20.5898 6.40187 20.866 6.87988C21.142 7.35808 20.9779 7.96992 20.4998 8.24609L19.2752 8.95215L19.9061 9.12207C20.4393 9.26507 20.7559 9.81333 20.6131 10.3467C20.4702 10.88 19.9219 11.1964 19.3885 11.0537L16.826 10.3672L13.9988 11.999L16.826 13.6318L19.3885 12.9463C19.9219 12.8036 20.4702 13.12 20.6131 13.6533C20.7558 14.1866 20.4393 14.7349 19.9061 14.8779L19.2752 15.0459L20.4998 15.7539C20.978 16.0301 21.1422 16.6419 20.866 17.1201C20.5899 17.5982 19.978 17.7622 19.4998 17.4863L18.2762 16.7793L18.4451 17.4082C18.5878 17.9415 18.2713 18.4898 17.7381 18.6328C17.2047 18.7756 16.6564 18.4591 16.5135 17.9258L15.8279 15.3652L12.9998 13.7324V16.9961L14.8748 18.8721C15.2651 19.2626 15.2652 19.8957 14.8748 20.2861C14.4842 20.6763 13.8511 20.6765 13.4608 20.2861L12.9998 19.8242V21C12.9998 21.5522 12.5521 21.9999 11.9998 22C11.4477 21.9998 10.9998 21.5522 10.9998 21V19.8242L10.5389 20.2861C10.1484 20.6764 9.51533 20.6764 9.12482 20.2861C8.73455 19.8957 8.73468 19.2626 9.12482 18.8721L10.9998 16.9961V13.7324L8.1717 15.3643L7.48713 17.9258C7.34426 18.4591 6.79586 18.7754 6.26252 18.6328C5.7292 18.4899 5.41272 17.9416 5.55549 17.4082L5.72346 16.7793L4.49982 17.4863C4.02164 17.7622 3.40974 17.5982 3.13361 17.1201C2.85762 16.6419 3.02176 16.0301 3.49982 15.7539L4.72346 15.0459L4.09455 14.8779C3.56116 14.735 3.2447 14.1867 3.38752 13.6533C3.53045 13.1199 4.07869 12.8034 4.61213 12.9463L7.17267 13.6318L9.99885 11.999L7.17365 10.3672L4.61213 11.0537C4.07867 11.1966 3.53043 10.8801 3.38752 10.3467C3.24465 9.81323 3.56112 9.26498 4.09455 9.12207L4.72346 8.95312L3.49982 8.24609C3.02183 7.96986 2.85763 7.35803 3.13361 6.87988C3.40974 6.40181 4.02164 6.23784 4.49982 6.51367L5.72346 7.21973L5.55549 6.5918C5.41268 6.05838 5.72916 5.51011 6.26252 5.36719C6.79585 5.22457 7.34424 5.54095 7.48713 6.07422L8.1717 8.63379L10.9998 10.2666V7.00293L9.12482 5.12793C8.73467 4.73738 8.73452 4.10425 9.12482 3.71387C9.51532 3.32361 10.1484 3.32364 10.5389 3.71387L10.9998 4.1748V3C10.9998 2.44781 11.4477 2.00015 11.9998 2Z"),
pathData = addPathNodes("M11.9998 2C12.5521 2.00006 12.9998 2.44775 12.9998 3V4.1748L13.4608 3.71387C13.8511 3.32351 14.4843 3.3237 14.8748 3.71387C15.2652 4.1043 15.2651 4.73737 14.8748 5.12793L12.9998 7.00293V10.2666L15.8279 8.63281L16.5135 6.07422C16.6564 5.54089 17.2047 5.22438 17.7381 5.36719C18.2713 5.5102 18.5879 6.05848 18.4451 6.5918L18.2762 7.21973L19.4998 6.51367C19.978 6.23773 20.5898 6.40187 20.866 6.87988C21.142 7.35808 20.9779 7.96992 20.4998 8.24609L19.2752 8.95215L19.9061 9.12207C20.4393 9.26507 20.7559 9.81333 20.6131 10.3467C20.4702 10.88 19.9219 11.1964 19.3885 11.0537L16.826 10.3672L13.9988 11.999L16.826 13.6318L19.3885 12.9463C19.9219 12.8036 20.4702 13.12 20.6131 13.6533C20.7558 14.1866 20.4393 14.7349 19.9061 14.8779L19.2752 15.0459L20.4998 15.7539C20.978 16.0301 21.1422 16.6419 20.866 17.1201C20.5899 17.5982 19.978 17.7622 19.4998 17.4863L18.2762 16.7793L18.4451 17.4082C18.5878 17.9415 18.2713 18.4898 17.7381 18.6328C17.2047 18.7756 16.6564 18.4591 16.5135 17.9258L15.8279 15.3652L12.9998 13.7324V16.9961L14.8748 18.8721C15.2651 19.2626 15.2652 19.8957 14.8748 20.2861C14.4842 20.6763 13.8511 20.6765 13.4608 20.2861L12.9998 19.8242V21C12.9998 21.5522 12.5521 21.9999 11.9998 22C11.4477 21.9998 10.9998 21.5522 10.9998 21V19.8242L10.5389 20.2861C10.1484 20.6764 9.51533 20.6764 9.12482 20.2861C8.73455 19.8957 8.73468 19.2626 9.12482 18.8721L10.9998 16.9961V13.7324L8.1717 15.3643L7.48713 17.9258C7.34426 18.4591 6.79586 18.7754 6.26252 18.6328C5.7292 18.4899 5.41272 17.9416 5.55549 17.4082L5.72346 16.7793L4.49982 17.4863C4.02164 17.7622 3.40974 17.5982 3.13361 17.1201C2.85762 16.6419 3.02176 16.0301 3.49982 15.7539L4.72346 15.0459L4.09455 14.8779C3.56116 14.735 3.2447 14.1867 3.38752 13.6533C3.53045 13.1199 4.07869 12.8034 4.61213 12.9463L7.17267 13.6318L9.99885 11.999L7.17365 10.3672L4.61213 11.0537C4.07867 11.1966 3.53043 10.8801 3.38752 10.3467C3.24465 9.81323 3.56112 9.26498 4.09455 9.12207L4.72346 8.95312L3.49982 8.24609C3.02183 7.96986 2.85763 7.35803 3.13361 6.87988C3.40974 6.4018 4.02164 6.23784 4.49982 6.51367L5.72346 7.21973L5.55549 6.5918C5.41268 6.05838 5.72916 5.51011 6.26252 5.36719C6.79585 5.22457 7.34424 5.54095 7.48713 6.07422L8.1717 8.63379L10.9998 10.2666V7.00293L9.12482 5.12793C8.73467 4.73738 8.73452 4.10425 9.12482 3.71387C9.51532 3.32361 10.1484 3.32364 10.5389 3.71387L10.9998 4.1748V3C10.9998 2.44781 11.4477 2.00015 11.9998 2Z"),
)
}.build()
return _ic_snowflake_24!!

View file

@ -0,0 +1,47 @@
@file:Suppress("all")
package com.tangem.core.ui.res.generated.icons
import androidx.compose.material3.Icon
import androidx.compose.runtime.Composable
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.graphics.PathFillType
import androidx.compose.ui.graphics.SolidColor
import androidx.compose.ui.graphics.vector.ImageVector
import androidx.compose.ui.graphics.vector.addPathNodes
import androidx.compose.ui.tooling.preview.Preview
import androidx.compose.ui.unit.dp
/**
* Auto-generated from design tokens. Do not edit manually.
*/
private var _ic_snowflake_28: ImageVector? = null
val Icons.ic_snowflake_28: ImageVector
get() {
if (_ic_snowflake_28 != null) return _ic_snowflake_28!!
_ic_snowflake_28 = ImageVector.Builder(
name = "ic_snowflake_28",
defaultWidth = 28.dp,
defaultHeight = 28.dp,
viewportWidth = 28f,
viewportHeight = 28f,
).apply {
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M13.9993 2C14.6894 2.00029 15.2493 2.55982 15.2493 3.25V4.55957L15.7659 4.05371C16.2588 3.57068 17.0502 3.57868 17.5335 4.07129C18.0166 4.56423 18.0087 5.35561 17.5159 5.83887L15.2493 8.05957V11.8555L18.6399 9.93555L19.47 6.90137C19.6519 6.23549 20.3393 5.84266 21.0051 6.02441C21.671 6.20634 22.0629 6.89369 21.8811 7.55957L21.7053 8.20117L23.1331 7.39355C23.7337 7.05386 24.4961 7.26486 24.8362 7.86523C25.1758 8.46585 24.9649 9.22929 24.3645 9.56934L23.0012 10.3398L23.635 10.5068C24.3027 10.6822 24.7019 11.3655 24.5266 12.0332C24.3511 12.7006 23.6678 13.1 23.0003 12.9248L19.8821 12.1055L16.5364 13.999L19.8821 15.8926L23.0003 15.0742C23.668 14.8989 24.3513 15.2981 24.5266 15.9658C24.7017 16.6335 24.3026 17.3169 23.635 17.4922L23.0012 17.6582L24.3645 18.4297C24.9648 18.7699 25.1761 19.5332 24.8362 20.1338C24.4961 20.734 23.7336 20.9449 23.1331 20.6055L21.7053 19.7969L21.8811 20.4385C22.0628 21.1043 21.6709 21.7917 21.0051 21.9736C20.3394 22.1553 19.652 21.7633 19.47 21.0977L18.6399 18.0615L15.2493 16.1426V19.9365L17.5159 22.1582C18.0088 22.6414 18.0165 23.4328 17.5335 23.9258C17.0502 24.4186 16.2588 24.4266 15.7659 23.9434L15.2493 23.4365V24.749C15.249 25.439 14.6892 25.9987 13.9993 25.999C13.3091 25.999 12.7495 25.4392 12.7493 24.749V23.4355L12.2317 23.9434C11.7387 24.4264 10.9473 24.4187 10.4641 23.9258C9.98108 23.4329 9.98898 22.6414 10.4817 22.1582L12.7493 19.9346V16.1436L9.35572 18.0635L8.5276 21.0977C8.34549 21.7633 7.65824 22.1555 6.99244 21.9736C6.32674 21.7917 5.93482 21.1042 6.11647 20.4385L6.29029 19.7988L4.86647 20.6055C4.26592 20.9454 3.50263 20.734 3.16236 20.1338C2.82236 19.5331 3.03346 18.7698 3.63404 18.4297L4.99635 17.6582L4.36256 17.4922C3.69497 17.3169 3.29593 16.6334 3.47096 15.9658C3.64625 15.2981 4.32961 14.899 4.99733 15.0742L8.11549 15.8926L11.4612 13.999L8.11549 12.1055L4.99733 12.9248C4.3298 13.0999 3.64641 12.7006 3.47096 12.0332C3.29571 11.3656 3.69498 10.6822 4.36256 10.5068L4.99635 10.3398L3.63404 9.56934C3.03358 9.22922 2.82255 8.46588 3.16236 7.86523C3.50252 7.2647 4.26579 7.05356 4.86647 7.39355L6.29029 8.19922L6.11647 7.55957C5.93469 6.89373 6.32666 6.20639 6.99244 6.02441C7.6584 5.8425 8.34569 6.23541 8.5276 6.90137L9.35572 9.93457L12.7493 11.8545V8.06152L10.4817 5.83887C9.98904 5.35556 9.98096 4.56416 10.4641 4.07129C10.9473 3.57847 11.7387 3.57077 12.2317 4.05371L12.7493 4.56055V3.25C12.7493 2.55964 13.3089 2 13.9993 2Z"),
)
}.build()
return _ic_snowflake_28!!
}
@Composable
@Preview(showBackground = true)
private fun IcSnowflake28Preview() {
Icon(
imageVector = Icons.ic_snowflake_28,
contentDescription = null,
)
}

View file

@ -46,7 +46,7 @@ val Icons.ic_sun_16: ImageVector
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M8.00098 5.41699C9.42763 5.41721 10.5839 6.57431 10.584 8.00098C10.5838 9.42764 9.42763 10.5838 8.00098 10.584C6.5743 10.5838 5.41713 9.42766 5.41699 8.00098C5.41712 6.57429 6.5743 5.41718 8.00098 5.41699ZM8.00098 6.66699C7.26474 6.66718 6.66712 7.26456 6.66699 8.00098C6.66713 8.73739 7.26474 9.3338 8.00098 9.33398C8.73718 9.33377 9.33385 8.73737 9.33398 8.00098C9.33385 7.26458 8.73719 6.66721 8.00098 6.66699Z"),
pathData = addPathNodes("M8.00098 5.41699C9.42763 5.41721 10.5839 6.57431 10.584 8.00098C10.5838 9.42764 9.42763 10.5838 8.00098 10.584C6.5743 10.5838 5.41713 9.42766 5.41699 8.00098C5.41712 6.57429 6.5743 5.41718 8.00098 5.41699ZM8.00098 6.66699C7.26474 6.66718 6.66712 7.26456 6.66699 8.00098C6.66713 8.73739 7.26474 9.3338 8.00098 9.33398C8.73719 9.33377 9.33385 8.73737 9.33398 8.00098C9.33385 7.26458 8.73719 6.66721 8.00098 6.66699Z"),
)
addPath(
fill = SolidColor(Color.Black),

View file

@ -0,0 +1,87 @@
@file:Suppress("all")
package com.tangem.core.ui.res.generated.icons
import androidx.compose.material3.Icon
import androidx.compose.runtime.Composable
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.graphics.PathFillType
import androidx.compose.ui.graphics.SolidColor
import androidx.compose.ui.graphics.vector.ImageVector
import androidx.compose.ui.graphics.vector.addPathNodes
import androidx.compose.ui.tooling.preview.Preview
import androidx.compose.ui.unit.dp
/**
* Auto-generated from design tokens. Do not edit manually.
*/
private var _ic_sun_28: ImageVector? = null
val Icons.ic_sun_28: ImageVector
get() {
if (_ic_sun_28 != null) return _ic_sun_28!!
_ic_sun_28 = ImageVector.Builder(
name = "ic_sun_28",
defaultWidth = 28.dp,
defaultHeight = 28.dp,
viewportWidth = 28f,
viewportHeight = 28f,
).apply {
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M13.999 21.1104C14.6892 21.1104 15.2488 21.6702 15.249 22.3604V24.749C15.2488 25.4392 14.6892 25.999 13.999 25.999C13.309 25.9988 12.7493 25.439 12.749 24.749V22.3604C12.7493 21.6704 13.309 21.1106 13.999 21.1104Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M7.20312 19.0264C7.69107 18.5388 8.48261 18.539 8.9707 19.0264C9.45874 19.5144 9.45853 20.3067 8.9707 20.7949L7.28223 22.4834C6.79408 22.9716 6.00279 22.9716 5.51465 22.4834C5.02677 21.9952 5.02659 21.2039 5.51465 20.7158L7.20312 19.0264Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M19.0273 19.0264C19.5155 18.5385 20.3078 18.5383 20.7959 19.0264L22.4844 20.7158C22.9721 21.2039 22.9721 21.9953 22.4844 22.4834C21.9963 22.9715 21.205 22.9712 20.7168 22.4834L19.0273 20.7949C18.5393 20.3068 18.5392 19.5145 19.0273 19.0264Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.EvenOdd,
pathData = addPathNodes("M14 9.16602C16.669 9.16628 18.8329 11.33 18.833 13.999C18.8329 16.6681 16.669 18.8318 14 18.832C11.3308 18.832 9.16707 16.6682 9.16699 13.999C9.1671 11.3299 11.3308 9.16605 14 9.16602ZM14 11.666C12.7116 11.666 11.6671 12.7105 11.667 13.999C11.6671 15.2876 12.7116 16.332 14 16.332C15.2882 16.3318 16.3329 15.2874 16.333 13.999C16.3329 12.7106 15.2882 11.6663 14 11.666Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M5.63867 12.748C6.32858 12.7483 6.88828 13.3082 6.88867 13.998C6.88867 14.6883 6.32882 15.2478 5.63867 15.248H3.25C2.55976 15.2479 2 14.6883 2 13.998C2.00039 13.3081 2.56 12.7482 3.25 12.748H5.63867Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M24.749 12.748C25.4388 12.7484 25.9986 13.3083 25.999 13.998C25.999 14.6882 25.4391 15.2477 24.749 15.248H22.3604C21.67 15.248 21.1104 14.6884 21.1104 13.998C21.1107 13.308 21.6702 12.748 22.3604 12.748H24.749Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M5.51465 5.51367C6.00282 5.02577 6.79515 5.0256 7.2832 5.51367L8.97168 7.20312C9.45925 7.69124 9.4594 8.48268 8.97168 8.9707C8.48367 9.45856 7.69223 9.45836 7.2041 8.9707L5.51465 7.28125C5.02685 6.79314 5.02682 6.00177 5.51465 5.51367Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M20.7158 5.51367C21.2038 5.02598 21.9953 5.02608 22.4834 5.51367C22.9714 6.00173 22.9712 6.79306 22.4834 7.28125L20.7949 8.9707C20.3068 9.4588 19.5155 9.45865 19.0273 8.9707C18.5395 8.48252 18.5393 7.6912 19.0273 7.20312L20.7158 5.51367Z"),
)
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M13.999 2C14.6892 2 15.2488 2.55985 15.249 3.25V5.63867C15.2488 6.32888 14.6893 6.88867 13.999 6.88867C13.309 6.8884 12.7492 6.32871 12.749 5.63867V3.25C12.7493 2.56002 13.309 2.00027 13.999 2Z"),
)
}.build()
return _ic_sun_28!!
}
@Composable
@Preview(showBackground = true)
private fun IcSun28Preview() {
Icon(
imageVector = Icons.ic_sun_28,
contentDescription = null,
)
}

View file

@ -0,0 +1,47 @@
@file:Suppress("all")
package com.tangem.core.ui.res.generated.icons
import androidx.compose.material3.Icon
import androidx.compose.runtime.Composable
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.graphics.PathFillType
import androidx.compose.ui.graphics.SolidColor
import androidx.compose.ui.graphics.vector.ImageVector
import androidx.compose.ui.graphics.vector.addPathNodes
import androidx.compose.ui.tooling.preview.Preview
import androidx.compose.ui.unit.dp
/**
* Auto-generated from design tokens. Do not edit manually.
*/
private var _ic_trash_bin_12: ImageVector? = null
val Icons.ic_trash_bin_12: ImageVector
get() {
if (_ic_trash_bin_12 != null) return _ic_trash_bin_12!!
_ic_trash_bin_12 = ImageVector.Builder(
name = "ic_trash_bin_12",
defaultWidth = 12.dp,
defaultHeight = 12.dp,
viewportWidth = 12f,
viewportHeight = 12f,
).apply {
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M6.97266 1C7.72075 1.00051 8.32402 1.60894 8.32422 2.35449V2.70215H9.87891C10.224 2.70215 10.5038 2.98209 10.5039 3.32715C10.5039 3.67232 10.2241 3.95215 9.87891 3.95215H9.77832V9.40527C9.77832 10.2855 9.06597 11.0028 8.18359 11.0029H3.82227C2.93977 11.0029 2.22754 10.2856 2.22754 9.40527V3.95215H2.125C1.77994 3.95202 1.50001 3.67224 1.5 3.32715C1.50014 2.98217 1.78002 2.70228 2.125 2.70215H3.68164V2.35449C3.68184 1.60876 4.28486 1.00022 5.0332 1H6.97266ZM3.47754 9.40527C3.47754 9.59922 3.63411 9.75293 3.82227 9.75293H8.18359C8.37164 9.7528 8.52832 9.59914 8.52832 9.40527V3.95215H3.47754V9.40527ZM5.0332 2.25C4.97916 2.25022 4.93184 2.29516 4.93164 2.35449V2.70215H7.07422V2.35449C7.07402 2.29536 7.02648 2.25052 6.97266 2.25H5.0332Z"),
)
}.build()
return _ic_trash_bin_12!!
}
@Composable
@Preview(showBackground = true)
private fun IcTrashBin12Preview() {
Icon(
imageVector = Icons.ic_trash_bin_12,
contentDescription = null,
)
}

View file

@ -0,0 +1,47 @@
@file:Suppress("all")
package com.tangem.core.ui.res.generated.icons
import androidx.compose.material3.Icon
import androidx.compose.runtime.Composable
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.graphics.PathFillType
import androidx.compose.ui.graphics.SolidColor
import androidx.compose.ui.graphics.vector.ImageVector
import androidx.compose.ui.graphics.vector.addPathNodes
import androidx.compose.ui.tooling.preview.Preview
import androidx.compose.ui.unit.dp
/**
* Auto-generated from design tokens. Do not edit manually.
*/
private var _ic_trash_bin_16: ImageVector? = null
val Icons.ic_trash_bin_16: ImageVector
get() {
if (_ic_trash_bin_16 != null) return _ic_trash_bin_16!!
_ic_trash_bin_16 = ImageVector.Builder(
name = "ic_trash_bin_16",
defaultWidth = 16.dp,
defaultHeight = 16.dp,
viewportWidth = 16f,
viewportHeight = 16f,
).apply {
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M9.34277 1.5C10.2274 1.50021 10.9746 2.20188 10.9746 3.10449V3.78516H13.374C13.7189 3.78539 13.9989 4.06525 13.999 4.41016C13.9988 4.75499 13.7189 5.03492 13.374 5.03516H12.9912V12.5713C12.9911 13.6541 12.0925 14.5017 11.0225 14.502H4.97656C3.90634 14.502 3.00795 13.6542 3.00781 12.5713V5.03516H2.625C2.27997 5.03516 2.00024 4.75513 2 4.41016C2.00015 4.06511 2.27992 3.78516 2.625 3.78516H5.02246V3.10449C5.02246 2.20182 5.77059 1.50013 6.65527 1.5H9.34277ZM4.25781 12.5713C4.25795 12.9305 4.56286 13.252 4.97656 13.252H11.0225C11.4359 13.2517 11.7411 12.9304 11.7412 12.5713V5.03516H4.25781V12.5713ZM6.65527 2.75C6.42712 2.75013 6.27246 2.92553 6.27246 3.10449V3.78516H9.72461V3.10449C9.72461 2.92557 9.57084 2.7502 9.34277 2.75H6.65527Z"),
)
}.build()
return _ic_trash_bin_16!!
}
@Composable
@Preview(showBackground = true)
private fun IcTrashBin16Preview() {
Icon(
imageVector = Icons.ic_trash_bin_16,
contentDescription = null,
)
}

View file

@ -0,0 +1,47 @@
@file:Suppress("all")
package com.tangem.core.ui.res.generated.icons
import androidx.compose.material3.Icon
import androidx.compose.runtime.Composable
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.graphics.PathFillType
import androidx.compose.ui.graphics.SolidColor
import androidx.compose.ui.graphics.vector.ImageVector
import androidx.compose.ui.graphics.vector.addPathNodes
import androidx.compose.ui.tooling.preview.Preview
import androidx.compose.ui.unit.dp
/**
* Auto-generated from design tokens. Do not edit manually.
*/
private var _ic_trash_bin_20: ImageVector? = null
val Icons.ic_trash_bin_20: ImageVector
get() {
if (_ic_trash_bin_20 != null) return _ic_trash_bin_20!!
_ic_trash_bin_20 = ImageVector.Builder(
name = "ic_trash_bin_20",
defaultWidth = 20.dp,
defaultHeight = 20.dp,
viewportWidth = 20f,
viewportHeight = 20f,
).apply {
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M11.5625 2C12.6456 2 13.4844 2.89922 13.4844 3.95898V4.82031H16.251C16.665 4.82055 17.001 5.15626 17.001 5.57031C17.0008 5.98419 16.6649 6.32008 16.251 6.32031H15.8291V15.6426C15.8289 16.9246 14.8152 18.0046 13.5166 18.0049H6.48438C5.18564 18.0048 4.17204 16.9247 4.17188 15.6426V6.32031H3.75C3.33592 6.32031 3.00022 5.98434 3 5.57031C3.00001 5.15611 3.33579 4.82031 3.75 4.82031H6.51562V3.95898C6.51562 2.89933 7.35451 2.00018 8.4375 2H11.5625ZM5.67188 15.6426C5.67204 16.1403 6.05739 16.5048 6.48438 16.5049H13.5166C13.9434 16.5046 14.3289 16.1401 14.3291 15.6426V6.32031H5.67188V15.6426ZM8.4375 3.5C8.22625 3.50018 8.01562 3.68376 8.01562 3.95898V4.82031H11.9844V3.95898C11.9844 3.68362 11.7739 3.5 11.5625 3.5H8.4375Z"),
)
}.build()
return _ic_trash_bin_20!!
}
@Composable
@Preview(showBackground = true)
private fun IcTrashBin20Preview() {
Icon(
imageVector = Icons.ic_trash_bin_20,
contentDescription = null,
)
}

View file

@ -0,0 +1,47 @@
@file:Suppress("all")
package com.tangem.core.ui.res.generated.icons
import androidx.compose.material3.Icon
import androidx.compose.runtime.Composable
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.graphics.PathFillType
import androidx.compose.ui.graphics.SolidColor
import androidx.compose.ui.graphics.vector.ImageVector
import androidx.compose.ui.graphics.vector.addPathNodes
import androidx.compose.ui.tooling.preview.Preview
import androidx.compose.ui.unit.dp
/**
* Auto-generated from design tokens. Do not edit manually.
*/
private var _ic_trash_bin_24: ImageVector? = null
val Icons.ic_trash_bin_24: ImageVector
get() {
if (_ic_trash_bin_24 != null) return _ic_trash_bin_24!!
_ic_trash_bin_24 = ImageVector.Builder(
name = "ic_trash_bin_24",
defaultWidth = 24.dp,
defaultHeight = 24.dp,
viewportWidth = 24f,
viewportHeight = 24f,
).apply {
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M14 2C15.3807 2 16.5 3.11929 16.5 4.5V5.5H20C20.5523 5.5 21 5.94772 21 6.5C21 7.05228 20.5523 7.5 20 7.5H19.5V19C19.5 20.6569 18.1569 22 16.5 22H7.5C5.84315 22 4.5 20.6569 4.5 19V7.5H4C3.44772 7.5 3 7.05228 3 6.5C3 5.94772 3.44772 5.5 4 5.5H7.5V4.5C7.5 3.11929 8.61929 2 10 2H14ZM6.5 19C6.5 19.5523 6.94772 20 7.5 20H16.5C17.0523 20 17.5 19.5523 17.5 19V7.5H6.5V19ZM10 4C9.72386 4 9.5 4.22386 9.5 4.5V5.5H14.5V4.5C14.5 4.22386 14.2761 4 14 4H10Z"),
)
}.build()
return _ic_trash_bin_24!!
}
@Composable
@Preview(showBackground = true)
private fun IcTrashBin24Preview() {
Icon(
imageVector = Icons.ic_trash_bin_24,
contentDescription = null,
)
}

View file

@ -0,0 +1,47 @@
@file:Suppress("all")
package com.tangem.core.ui.res.generated.icons
import androidx.compose.material3.Icon
import androidx.compose.runtime.Composable
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.graphics.PathFillType
import androidx.compose.ui.graphics.SolidColor
import androidx.compose.ui.graphics.vector.ImageVector
import androidx.compose.ui.graphics.vector.addPathNodes
import androidx.compose.ui.tooling.preview.Preview
import androidx.compose.ui.unit.dp
/**
* Auto-generated from design tokens. Do not edit manually.
*/
private var _ic_trash_bin_28: ImageVector? = null
val Icons.ic_trash_bin_28: ImageVector
get() {
if (_ic_trash_bin_28 != null) return _ic_trash_bin_28!!
_ic_trash_bin_28 = ImageVector.Builder(
name = "ic_trash_bin_28",
defaultWidth = 28.dp,
defaultHeight = 28.dp,
viewportWidth = 28f,
viewportHeight = 28f,
).apply {
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M16.3135 2C17.9434 2.00012 19.2974 3.30677 19.2979 4.95801V5.98633H23.252C23.9419 5.98659 24.5016 6.54642 24.502 7.23633C24.502 7.92652 23.9421 8.48606 23.252 8.48633H22.7676V21.4727C22.7676 23.4387 21.1545 25.0006 19.2051 25.001H8.79688C6.84731 25.0008 5.23438 23.4388 5.23438 21.4727V8.48633H4.75C4.05964 8.48633 3.5 7.92668 3.5 7.23633C3.50033 6.54626 4.05985 5.98633 4.75 5.98633H8.70312V4.95801C8.70361 3.30676 10.0575 2.00011 11.6875 2H16.3135ZM7.73438 21.4727C7.73438 22.0224 8.19208 22.5008 8.79688 22.501H19.2051C19.8097 22.5006 20.2676 22.0223 20.2676 21.4727V8.48633H7.73438V21.4727ZM11.6875 4.5C11.4024 4.50011 11.2036 4.72306 11.2031 4.95801V5.98633H16.7979V4.95801C16.7974 4.72306 16.5986 4.50012 16.3135 4.5H11.6875Z"),
)
}.build()
return _ic_trash_bin_28!!
}
@Composable
@Preview(showBackground = true)
private fun IcTrashBin28Preview() {
Icon(
imageVector = Icons.ic_trash_bin_28,
contentDescription = null,
)
}

View file

@ -0,0 +1,47 @@
@file:Suppress("all")
package com.tangem.core.ui.res.generated.icons
import androidx.compose.material3.Icon
import androidx.compose.runtime.Composable
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.graphics.PathFillType
import androidx.compose.ui.graphics.SolidColor
import androidx.compose.ui.graphics.vector.ImageVector
import androidx.compose.ui.graphics.vector.addPathNodes
import androidx.compose.ui.tooling.preview.Preview
import androidx.compose.ui.unit.dp
/**
* Auto-generated from design tokens. Do not edit manually.
*/
private var _ic_wallet_16: ImageVector? = null
val Icons.ic_wallet_16: ImageVector
get() {
if (_ic_wallet_16 != null) return _ic_wallet_16!!
_ic_wallet_16 = ImageVector.Builder(
name = "ic_wallet_16",
defaultWidth = 16.dp,
defaultHeight = 16.dp,
viewportWidth = 16f,
viewportHeight = 16f,
).apply {
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M12.1094 3C13.1045 3.00018 13.999 3.75613 13.999 4.79199V11.209C13.999 12.2448 13.1045 13.0008 12.1094 13.001H3.88965C2.89442 13.001 2.00007 12.2449 2 11.209V4.79199C2 3.75601 2.89438 3 3.88965 3H12.1094ZM3.25 11.209C3.25008 11.4618 3.48817 11.751 3.88965 11.751H12.1094C12.5106 11.7508 12.7489 11.4617 12.749 11.209V10.668H11.4766C10.4816 10.6678 9.58724 9.91158 9.58691 8.87598C9.58691 7.84008 10.4814 7.08411 11.4766 7.08398H12.749V6.58398H3.88965C3.66831 6.58398 3.45263 6.54317 3.25 6.47363V11.209ZM11.4766 8.33398C11.0752 8.3341 10.8369 8.62322 10.8369 8.87598C10.8373 9.12859 11.0755 9.41785 11.4766 9.41797H12.749V8.33398H11.4766ZM3.88965 4.25C3.48811 4.25 3.25 4.53919 3.25 4.79199L3.26074 4.8877C3.31186 5.11231 3.53839 5.33398 3.88965 5.33398H12.749V4.79199C12.749 4.53926 12.5107 4.25017 12.1094 4.25H3.88965Z"),
)
}.build()
return _ic_wallet_16!!
}
@Composable
@Preview(showBackground = true)
private fun IcWallet16Preview() {
Icon(
imageVector = Icons.ic_wallet_16,
contentDescription = null,
)
}

View file

@ -0,0 +1,47 @@
@file:Suppress("all")
package com.tangem.core.ui.res.generated.icons
import androidx.compose.material3.Icon
import androidx.compose.runtime.Composable
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.graphics.PathFillType
import androidx.compose.ui.graphics.SolidColor
import androidx.compose.ui.graphics.vector.ImageVector
import androidx.compose.ui.graphics.vector.addPathNodes
import androidx.compose.ui.tooling.preview.Preview
import androidx.compose.ui.unit.dp
/**
* Auto-generated from design tokens. Do not edit manually.
*/
private var _ic_wallet_20: ImageVector? = null
val Icons.ic_wallet_20: ImageVector
get() {
if (_ic_wallet_20 != null) return _ic_wallet_20!!
_ic_wallet_20 = ImageVector.Builder(
name = "ic_wallet_20",
defaultWidth = 20.dp,
defaultHeight = 20.dp,
viewportWidth = 20f,
viewportHeight = 20f,
).apply {
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M15.5439 3C16.8835 3.00026 18 4.06618 18 5.41699V14.583C17.9996 15.9335 16.8833 16.9988 15.5439 16.999H4.45703C3.1175 16.999 2.00037 15.9337 2 14.583V5.41699C2 4.06602 3.11728 3 4.45703 3H15.5439ZM3.50098 14.583C3.50135 15.0726 3.91289 15.499 4.45703 15.499H15.5439C16.0878 15.4988 16.4996 15.0724 16.5 14.583V13.666H14.6914C13.3519 13.666 12.2358 12.6006 12.2354 11.25C12.2354 9.89902 13.3517 8.83301 14.6914 8.83301H16.5V7.83301H4.45703C4.11954 7.83301 3.79581 7.76437 3.50098 7.6416V14.583ZM14.6914 10.333C14.147 10.333 13.7354 10.7601 13.7354 11.25C13.7358 11.7395 14.1473 12.166 14.6914 12.166H16.5V10.333H14.6914ZM4.45703 4.5C3.91264 4.5 3.50098 4.92713 3.50098 5.41699L3.50586 5.50781C3.55335 5.95804 3.9469 6.33301 4.45703 6.33301H16.5V5.41699C16.5 4.92728 16.0881 4.50026 15.5439 4.5H4.45703Z"),
)
}.build()
return _ic_wallet_20!!
}
@Composable
@Preview(showBackground = true)
private fun IcWallet20Preview() {
Icon(
imageVector = Icons.ic_wallet_20,
contentDescription = null,
)
}

View file

@ -0,0 +1,47 @@
@file:Suppress("all")
package com.tangem.core.ui.res.generated.icons
import androidx.compose.material3.Icon
import androidx.compose.runtime.Composable
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.graphics.PathFillType
import androidx.compose.ui.graphics.SolidColor
import androidx.compose.ui.graphics.vector.ImageVector
import androidx.compose.ui.graphics.vector.addPathNodes
import androidx.compose.ui.tooling.preview.Preview
import androidx.compose.ui.unit.dp
/**
* Auto-generated from design tokens. Do not edit manually.
*/
private var _ic_wallet_24: ImageVector? = null
val Icons.ic_wallet_24: ImageVector
get() {
if (_ic_wallet_24 != null) return _ic_wallet_24!!
_ic_wallet_24 = ImageVector.Builder(
name = "ic_wallet_24",
defaultWidth = 24.dp,
defaultHeight = 24.dp,
viewportWidth = 24f,
viewportHeight = 24f,
).apply {
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M18.8809 3C20.6094 3 21.9979 4.40955 21.998 6.13281V11.4482C21.9981 11.4541 21.999 11.46 21.999 11.4658C21.999 11.4714 21.9981 11.4769 21.998 11.4824V15.7148C21.9981 15.7207 21.999 15.7266 21.999 15.7324C21.999 15.738 21.9981 15.7435 21.998 15.749V17.8652C21.9979 19.5885 20.6094 20.999 18.8809 20.999H5.11719C3.38873 20.9989 2.00014 19.5884 2 17.8652V6.13281C2.00018 4.40964 3.38875 3.00015 5.11719 3H18.8809ZM4 17.8652C4.00014 18.4978 4.50718 18.9989 5.11719 18.999H18.8809C19.491 18.999 19.9979 18.4979 19.998 17.8652V16.7324H17.8223C16.0937 16.7323 14.7051 15.3219 14.7051 13.5986C14.7053 11.8755 16.0938 10.466 17.8223 10.4658H19.998V9.2666H5.11719C4.72279 9.26657 4.34655 9.19139 4 9.05762V17.8652ZM17.8223 12.4658C17.2123 12.466 16.7053 12.9661 16.7051 13.5986C16.7051 14.2313 17.2122 14.7323 17.8223 14.7324H19.998V12.4658H17.8223ZM5.11719 5C4.50721 5.00015 4.00018 5.50027 4 6.13281C4.00014 6.76538 4.50718 7.26645 5.11719 7.2666H19.998V6.13281C19.9979 5.50018 19.491 5 18.8809 5H5.11719Z"),
)
}.build()
return _ic_wallet_24!!
}
@Composable
@Preview(showBackground = true)
private fun IcWallet24Preview() {
Icon(
imageVector = Icons.ic_wallet_24,
contentDescription = null,
)
}

View file

@ -0,0 +1,47 @@
@file:Suppress("all")
package com.tangem.core.ui.res.generated.icons
import androidx.compose.material3.Icon
import androidx.compose.runtime.Composable
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.graphics.PathFillType
import androidx.compose.ui.graphics.SolidColor
import androidx.compose.ui.graphics.vector.ImageVector
import androidx.compose.ui.graphics.vector.addPathNodes
import androidx.compose.ui.tooling.preview.Preview
import androidx.compose.ui.unit.dp
/**
* Auto-generated from design tokens. Do not edit manually.
*/
private var _ic_wallet_28: ImageVector? = null
val Icons.ic_wallet_28: ImageVector
get() {
if (_ic_wallet_28 != null) return _ic_wallet_28!!
_ic_wallet_28 = ImageVector.Builder(
name = "ic_wallet_28",
defaultWidth = 28.dp,
defaultHeight = 28.dp,
viewportWidth = 28f,
viewportHeight = 28f,
).apply {
addPath(
fill = SolidColor(Color.Black),
pathFillType = PathFillType.NonZero,
pathData = addPathNodes("M21.4561 4C23.4333 4.00015 25 5.62509 25 7.58398V20.4189C24.9997 22.3776 23.4332 24.0028 21.4561 24.0029H6.54395C4.56679 24.0028 3.00027 22.3776 3 20.4189V7.58398C3 5.62506 4.56662 4.0001 6.54395 4H21.4561ZM5.5 20.4189C5.50027 21.0373 5.98757 21.5028 6.54395 21.5029H21.4561C22.0124 21.5028 22.4997 21.0373 22.5 20.4189V19.334H20.3086C18.3315 19.3337 16.7648 17.7097 16.7646 15.751C16.7649 13.7923 18.3315 12.1672 20.3086 12.167H22.5V11.167H6.54395C6.17972 11.167 5.82913 11.112 5.5 11.0098V20.4189ZM20.3086 14.667C19.7523 14.6672 19.2649 15.1327 19.2646 15.751C19.2648 16.3694 19.7523 16.8337 20.3086 16.834H22.5V14.667H20.3086ZM6.54395 6.5C5.98741 6.50011 5.5 6.96534 5.5 7.58398L5.50586 7.69824C5.56185 8.2586 6.02248 8.66689 6.54395 8.66699H22.5V7.58398C22.5 6.96537 22.0126 6.50015 21.4561 6.5H6.54395Z"),
)
}.build()
return _ic_wallet_28!!
}
@Composable
@Preview(showBackground = true)
private fun IcWallet28Preview() {
Icon(
imageVector = Icons.ic_wallet_28,
contentDescription = null,
)
}