Updated on 2026-08-14
This commit is contained in:
parent
514e142989
commit
fb96f3651f
259 changed files with 12276 additions and 40 deletions
|
|
@ -1 +1 @@
|
|||
Subproject commit 06d801c92ac499d787093c30783e9ccb1f7e43dc
|
||||
Subproject commit 0be9b5e9f7fe13c483f9d037617e36c8848f2842
|
||||
|
|
@ -0,0 +1,31 @@
|
|||
package com.tangem.core.ui.ds2.button
|
||||
|
||||
import androidx.compose.runtime.Composable
|
||||
import androidx.compose.runtime.NonRestartableComposable
|
||||
import androidx.compose.ui.Modifier
|
||||
import com.tangem.core.ui.ds.image.TangemIconUM
|
||||
import com.tangem.core.ui.res.generated.icons.Icons
|
||||
import com.tangem.core.ui.res.generated.icons.ic_arrow_left_20
|
||||
import com.tangem.core.ui.res.generated.icons.ic_cross_20
|
||||
|
||||
@Composable
|
||||
@NonRestartableComposable
|
||||
fun TangemButton.Back(modifier: Modifier = Modifier, onClick: () -> Unit) {
|
||||
TangemButton(
|
||||
modifier = modifier,
|
||||
variant = TangemButton.Variant.Material,
|
||||
iconStart = TangemIconUM.Icon(Icons.ic_arrow_left_20),
|
||||
onClick = onClick,
|
||||
)
|
||||
}
|
||||
|
||||
@Composable
|
||||
@NonRestartableComposable
|
||||
fun TangemButton.Close(modifier: Modifier = Modifier, onClick: () -> Unit) {
|
||||
TangemButton(
|
||||
modifier = modifier,
|
||||
variant = TangemButton.Variant.Material,
|
||||
iconStart = TangemIconUM.Icon(Icons.ic_cross_20),
|
||||
onClick = onClick,
|
||||
)
|
||||
}
|
||||
|
|
@ -25,6 +25,7 @@ import androidx.compose.material3.Text
|
|||
import androidx.compose.runtime.Composable
|
||||
import androidx.compose.runtime.CompositionLocalProvider
|
||||
import androidx.compose.runtime.Immutable
|
||||
import androidx.compose.runtime.NonRestartableComposable
|
||||
import androidx.compose.runtime.ReadOnlyComposable
|
||||
import androidx.compose.runtime.getValue
|
||||
import androidx.compose.runtime.remember
|
||||
|
|
@ -43,7 +44,9 @@ import androidx.compose.ui.unit.Dp
|
|||
import androidx.compose.ui.unit.dp
|
||||
import com.tangem.core.ui.R
|
||||
import com.tangem.core.ui.components.SpacerH
|
||||
import com.tangem.core.ui.extensions.TextReference
|
||||
import com.tangem.core.ui.extensions.conditionalCompose
|
||||
import com.tangem.core.ui.extensions.resolveReference
|
||||
import com.tangem.core.ui.res.TangemTheme
|
||||
import com.tangem.core.ui.res.TangemThemePreviewRedesign
|
||||
|
||||
|
|
@ -350,6 +353,33 @@ fun TangemRowText(
|
|||
)
|
||||
}
|
||||
|
||||
/**
|
||||
* Default text styling for [TangemRow] label slots.
|
||||
*
|
||||
* @param text Label text.
|
||||
* @param role Semantic role. See [TangemRowTextRole].
|
||||
* @param modifier Modifier applied to the underlying [Text].
|
||||
* @param maxLines Maximum number of visible lines before truncation.
|
||||
* @param overflow Overflow behavior. Defaults to ellipsis.
|
||||
*/
|
||||
@Composable
|
||||
@NonRestartableComposable
|
||||
fun TangemRowText(
|
||||
text: TextReference,
|
||||
role: TangemRowTextRole,
|
||||
modifier: Modifier = Modifier,
|
||||
maxLines: Int = 1,
|
||||
overflow: TextOverflow = TextOverflow.Ellipsis,
|
||||
) {
|
||||
TangemRowText(
|
||||
text = text.resolveReference(),
|
||||
role = role,
|
||||
modifier = modifier,
|
||||
maxLines = maxLines,
|
||||
overflow = overflow,
|
||||
)
|
||||
}
|
||||
|
||||
@Composable
|
||||
private fun rowTextStyle(role: TangemRowTextRole): TextStyle = when (role) {
|
||||
TangemRowTextRole.Title, TangemRowTextRole.Value -> TangemTheme.typography3.body.medium
|
||||
|
|
|
|||
|
|
@ -110,7 +110,12 @@ fun TangemSurface(
|
|||
|
||||
// region material rendering
|
||||
|
||||
/** Drop shadow for the material variant. */
|
||||
/**
|
||||
* Drop shadow for the material variant.
|
||||
*
|
||||
* The material fill is translucent, so the shadow is clipped to the area outside [shape] (via
|
||||
* `isAlphaContentClip`) to avoid the dark blur bleeding through the surface.
|
||||
*/
|
||||
@Composable
|
||||
private fun Modifier.materialShadow(shape: Shape): Modifier = softLayerShadow(
|
||||
radius = 40.dp,
|
||||
|
|
@ -118,6 +123,7 @@ private fun Modifier.materialShadow(shape: Shape): Modifier = softLayerShadow(
|
|||
shape = shape,
|
||||
spread = 0.dp,
|
||||
offset = DpOffset(x = 0.dp, y = 8.dp),
|
||||
isAlphaContentClip = true,
|
||||
)
|
||||
|
||||
/** Diagonal gradient stroke that wraps the material variant. */
|
||||
|
|
|
|||
|
|
@ -0,0 +1,118 @@
|
|||
package com.tangem.core.ui.ds2.topnavigation
|
||||
|
||||
import androidx.compose.material3.Text
|
||||
import androidx.compose.runtime.Composable
|
||||
import androidx.compose.runtime.CompositionLocalProvider
|
||||
import androidx.compose.runtime.Immutable
|
||||
import androidx.compose.runtime.NonRestartableComposable
|
||||
import androidx.compose.runtime.remember
|
||||
import androidx.compose.ui.Modifier
|
||||
import androidx.compose.ui.graphics.Color
|
||||
import androidx.compose.ui.platform.LocalDensity
|
||||
import androidx.compose.ui.text.AnnotatedString
|
||||
import androidx.compose.ui.text.TextStyle
|
||||
import androidx.compose.ui.text.style.TextAlign
|
||||
import androidx.compose.ui.text.style.TextOverflow
|
||||
import androidx.compose.ui.unit.Density
|
||||
import com.tangem.core.ui.extensions.TextReference
|
||||
import com.tangem.core.ui.extensions.resolveAnnotatedReference
|
||||
import com.tangem.core.ui.res.TangemTheme
|
||||
|
||||
/**
|
||||
* Text component for [TangemTopNavigation] title / subtitle slots.
|
||||
*
|
||||
* Unlike a regular [Text], this composable pins the font scale to `1f` for its subtree so that the
|
||||
* system accessibility "font size" setting cannot stretch the top navigation vertically.
|
||||
*
|
||||
* @param text Label text.
|
||||
* @param role Semantic role. See [TangemNavigationText.Role].
|
||||
* @param modifier Modifier applied to the underlying [Text].
|
||||
* @param maxLines Maximum visible lines before truncation.
|
||||
* @param overflow Overflow behavior. Defaults to ellipsis.
|
||||
*/
|
||||
@Composable
|
||||
fun TangemNavigationText(
|
||||
text: String,
|
||||
role: TangemNavigationText.Role,
|
||||
modifier: Modifier = Modifier,
|
||||
maxLines: Int = 1,
|
||||
overflow: TextOverflow = TextOverflow.Ellipsis,
|
||||
) {
|
||||
val density = LocalDensity.current
|
||||
val fixedFontScaleDensity = remember(density) {
|
||||
Density(density = density.density, fontScale = 1f)
|
||||
}
|
||||
CompositionLocalProvider(LocalDensity provides fixedFontScaleDensity) {
|
||||
Text(
|
||||
text = text,
|
||||
modifier = modifier,
|
||||
color = navigationTextColor(role),
|
||||
style = navigationTextStyle(role),
|
||||
textAlign = TextAlign.Center,
|
||||
maxLines = maxLines,
|
||||
overflow = overflow,
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
@Composable
|
||||
fun TangemNavigationText(
|
||||
text: AnnotatedString,
|
||||
role: TangemNavigationText.Role,
|
||||
modifier: Modifier = Modifier,
|
||||
maxLines: Int = 1,
|
||||
overflow: TextOverflow = TextOverflow.Ellipsis,
|
||||
) {
|
||||
val density = LocalDensity.current
|
||||
val fixedFontScaleDensity = remember(density) {
|
||||
Density(density = density.density, fontScale = 1f)
|
||||
}
|
||||
CompositionLocalProvider(LocalDensity provides fixedFontScaleDensity) {
|
||||
Text(
|
||||
text = text,
|
||||
modifier = modifier,
|
||||
color = navigationTextColor(role),
|
||||
style = navigationTextStyle(role),
|
||||
textAlign = TextAlign.Center,
|
||||
maxLines = maxLines,
|
||||
overflow = overflow,
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
@Composable
|
||||
@NonRestartableComposable
|
||||
fun TangemNavigationText(
|
||||
text: TextReference,
|
||||
role: TangemNavigationText.Role,
|
||||
modifier: Modifier = Modifier,
|
||||
maxLines: Int = 1,
|
||||
overflow: TextOverflow = TextOverflow.Ellipsis,
|
||||
) {
|
||||
TangemNavigationText(
|
||||
text = text.resolveAnnotatedReference(),
|
||||
role = role,
|
||||
modifier = modifier,
|
||||
maxLines = maxLines,
|
||||
overflow = overflow,
|
||||
)
|
||||
}
|
||||
|
||||
@Composable
|
||||
private fun navigationTextStyle(role: TangemNavigationText.Role): TextStyle = when (role) {
|
||||
TangemNavigationText.Role.Title -> TangemTheme.typography3.body.medium
|
||||
TangemNavigationText.Role.Subtitle -> TangemTheme.typography3.caption.medium
|
||||
}
|
||||
|
||||
@Composable
|
||||
private fun navigationTextColor(role: TangemNavigationText.Role): Color = when (role) {
|
||||
TangemNavigationText.Role.Title -> TangemTheme.colors3.text.primary
|
||||
TangemNavigationText.Role.Subtitle -> TangemTheme.colors3.text.secondary
|
||||
}
|
||||
|
||||
object TangemNavigationText {
|
||||
|
||||
/** Semantic role of a label inside [TangemTopNavigation], driving its typography and color. */
|
||||
@Immutable
|
||||
enum class Role { Title, Subtitle }
|
||||
}
|
||||
|
|
@ -0,0 +1,369 @@
|
|||
package com.tangem.core.ui.ds2.topnavigation
|
||||
|
||||
import android.content.res.Configuration
|
||||
import androidx.compose.animation.AnimatedContent
|
||||
import androidx.compose.animation.AnimatedVisibility
|
||||
import androidx.compose.animation.core.Spring
|
||||
import androidx.compose.animation.core.spring
|
||||
import androidx.compose.animation.expandHorizontally
|
||||
import androidx.compose.animation.expandVertically
|
||||
import androidx.compose.animation.fadeIn
|
||||
import androidx.compose.animation.fadeOut
|
||||
import androidx.compose.animation.shrinkHorizontally
|
||||
import androidx.compose.animation.shrinkVertically
|
||||
import androidx.compose.animation.togetherWith
|
||||
import androidx.compose.foundation.background
|
||||
import androidx.compose.foundation.layout.*
|
||||
import androidx.compose.foundation.shape.CircleShape
|
||||
import androidx.compose.runtime.Composable
|
||||
import androidx.compose.runtime.remember
|
||||
import androidx.compose.ui.Alignment
|
||||
import androidx.compose.ui.Modifier
|
||||
import androidx.compose.ui.layout.Layout
|
||||
import androidx.compose.ui.layout.layoutId
|
||||
import androidx.compose.ui.tooling.preview.Devices
|
||||
import androidx.compose.ui.tooling.preview.Preview
|
||||
import androidx.compose.ui.unit.IntSize
|
||||
import androidx.compose.ui.unit.dp
|
||||
import com.tangem.core.ui.components.haze.hazeSourceTangem
|
||||
import com.tangem.core.ui.ds2.button.Back
|
||||
import com.tangem.core.ui.ds2.button.Close
|
||||
import com.tangem.core.ui.ds2.button.TangemButton
|
||||
import com.tangem.core.ui.ds2.fade.TangemFade
|
||||
import com.tangem.core.ui.ds2.surface.TangemSurface
|
||||
import com.tangem.core.ui.extensions.TextReference
|
||||
import com.tangem.core.ui.extensions.rememberLastNonNull
|
||||
import com.tangem.core.ui.extensions.stringReference
|
||||
import com.tangem.core.ui.res.TangemTheme
|
||||
import com.tangem.core.ui.res.TangemThemePreviewRedesign
|
||||
|
||||
private enum class SlotId { Start, Content, Group, End }
|
||||
|
||||
/**
|
||||
* Top navigation bar from the redesigned design system.
|
||||
*
|
||||
* [Figma](https://www.figma.com/design/AsnJ5CPHib4Qxw12gszjMS/%F0%9F%92%A0-DS-Components?node-id=2270-3&m=dev)
|
||||
*
|
||||
* @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 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].
|
||||
* @param endButton Trailing slot. Typically a close button (see [TangemButton.Close]).
|
||||
* @param contentColumn Center slot. Place title/subtitle children here.
|
||||
*/
|
||||
@Suppress("LongMethod")
|
||||
@Composable
|
||||
fun TangemTopNavigation(
|
||||
modifier: Modifier = Modifier,
|
||||
contentAlign: TangemTopNavigation.ContentAlign = TangemTopNavigation.ContentAlign.Start,
|
||||
windowInsets: WindowInsets = WindowInsets.statusBars,
|
||||
blurBackground: Boolean = true,
|
||||
startButton: (@Composable () -> Unit)? = null,
|
||||
endButtonsGroup: (@Composable RowScope.() -> Unit)? = null,
|
||||
endButton: (@Composable () -> Unit)? = null,
|
||||
contentColumn: (@Composable ColumnScope.() -> Unit)? = null,
|
||||
) {
|
||||
// Shared, snappy specs so size and alpha animations stay in sync across all top-nav slots,
|
||||
// mirroring the convention used by TangemButtonInternal.
|
||||
val slotSizeSpec = remember { spring<IntSize>(stiffness = Spring.StiffnessMediumLow) }
|
||||
val slotAlphaSpec = remember { spring<Float>(stiffness = Spring.StiffnessMediumLow) }
|
||||
val slotEnter = remember(slotSizeSpec, slotAlphaSpec) {
|
||||
fadeIn(animationSpec = slotAlphaSpec) + expandHorizontally(animationSpec = slotSizeSpec)
|
||||
}
|
||||
val slotExit = remember(slotSizeSpec, slotAlphaSpec) {
|
||||
fadeOut(animationSpec = slotAlphaSpec) + shrinkHorizontally(animationSpec = slotSizeSpec)
|
||||
}
|
||||
|
||||
Box(modifier) {
|
||||
TangemFade(
|
||||
modifier = Modifier.matchParentSize(),
|
||||
position = TangemFade.Position.Top,
|
||||
variant = TangemFade.Variant.Soft,
|
||||
blur = blurBackground,
|
||||
)
|
||||
|
||||
val groupSpacing = TangemTheme.dimens3.spacing.s100
|
||||
Layout(
|
||||
modifier = Modifier
|
||||
.fillMaxWidth()
|
||||
.windowInsetsPadding(windowInsets)
|
||||
.padding(
|
||||
top = TangemTheme.dimens3.spacing.s100,
|
||||
bottom = TangemTheme.dimens3.spacing.s200,
|
||||
start = TangemTheme.dimens3.spacing.s200,
|
||||
end = TangemTheme.dimens3.spacing.s200,
|
||||
),
|
||||
content = {
|
||||
// Each optional slot caches its last non-null content so the spring exit transition
|
||||
// still has something to render after the caller flips it back to `null`.
|
||||
val displayedStart = rememberLastNonNull(startButton)
|
||||
AnimatedVisibility(
|
||||
modifier = Modifier.layoutId(SlotId.Start),
|
||||
visible = startButton != null,
|
||||
enter = slotEnter,
|
||||
exit = slotExit,
|
||||
) {
|
||||
displayedStart?.invoke()
|
||||
}
|
||||
|
||||
Column(
|
||||
modifier = Modifier
|
||||
.padding(horizontal = TangemTheme.dimens3.spacing.s150)
|
||||
.layoutId(SlotId.Content),
|
||||
horizontalAlignment = when (contentAlign) {
|
||||
TangemTopNavigation.ContentAlign.Start -> Alignment.Start
|
||||
TangemTopNavigation.ContentAlign.Center -> Alignment.CenterHorizontally
|
||||
},
|
||||
) {
|
||||
contentColumn?.invoke(this)
|
||||
}
|
||||
|
||||
val displayedGroup = rememberLastNonNull(endButtonsGroup)
|
||||
AnimatedVisibility(
|
||||
modifier = Modifier.layoutId(SlotId.Group),
|
||||
visible = endButtonsGroup != null,
|
||||
enter = slotEnter,
|
||||
exit = slotExit,
|
||||
) {
|
||||
displayedGroup?.let { group ->
|
||||
TangemSurface(isMaterial = true, shape = CircleShape) {
|
||||
Row(
|
||||
horizontalArrangement = Arrangement.spacedBy(TangemTheme.dimens3.spacing.s050),
|
||||
content = group,
|
||||
)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
val displayedEnd = rememberLastNonNull(endButton)
|
||||
AnimatedVisibility(
|
||||
modifier = Modifier.layoutId(SlotId.End),
|
||||
visible = endButton != null,
|
||||
enter = slotEnter,
|
||||
exit = slotExit,
|
||||
) {
|
||||
displayedEnd?.invoke()
|
||||
}
|
||||
},
|
||||
) { measurables, constraints ->
|
||||
val groupSpacingPx = groupSpacing.roundToPx()
|
||||
val totalWidth = constraints.maxWidth
|
||||
|
||||
val startM = measurables.first { it.layoutId == SlotId.Start }
|
||||
val contentM = measurables.first { it.layoutId == SlotId.Content }
|
||||
val groupM = measurables.first { it.layoutId == SlotId.Group }
|
||||
val endM = measurables.first { it.layoutId == SlotId.End }
|
||||
|
||||
val slotConstraints = constraints.copy(minWidth = 0)
|
||||
val startP = startM.measure(slotConstraints)
|
||||
val endP = endM.measure(slotConstraints)
|
||||
val groupP = groupM.measure(slotConstraints)
|
||||
|
||||
val contentMaxWidth = when (contentAlign) {
|
||||
// Symmetric band so the content can be visually centered within `totalWidth`
|
||||
// without colliding with the start/end slots.
|
||||
TangemTopNavigation.ContentAlign.Center ->
|
||||
(totalWidth - 2 * maxOf(startP.width, endP.width)).coerceAtLeast(0)
|
||||
TangemTopNavigation.ContentAlign.Start ->
|
||||
(totalWidth - startP.width - endP.width).coerceAtLeast(0)
|
||||
}
|
||||
val contentP = contentM.measure(slotConstraints.copy(maxWidth = contentMaxWidth))
|
||||
|
||||
val rowHeight = maxOf(startP.height, contentP.height, endP.height, groupP.height)
|
||||
|
||||
layout(totalWidth, rowHeight) {
|
||||
fun centerY(h: Int) = (rowHeight - h) / 2
|
||||
startP.placeRelative(x = 0, y = centerY(startP.height))
|
||||
|
||||
val contentX = when (contentAlign) {
|
||||
TangemTopNavigation.ContentAlign.Start -> startP.width
|
||||
TangemTopNavigation.ContentAlign.Center ->
|
||||
((totalWidth - contentP.width) / 2)
|
||||
.coerceIn(
|
||||
startP.width,
|
||||
(totalWidth - endP.width - contentP.width).coerceAtLeast(startP.width),
|
||||
)
|
||||
}
|
||||
contentP.placeRelative(x = contentX, y = centerY(contentP.height))
|
||||
|
||||
endP.placeRelative(x = totalWidth - endP.width, y = centerY(endP.height))
|
||||
// Group floats to the left of endButton with `groupSpacing` gap, overlaying the
|
||||
// tail of the content band if necessary.
|
||||
val groupX = (totalWidth - endP.width - groupSpacingPx - groupP.width)
|
||||
.coerceAtLeast(0)
|
||||
groupP.placeRelative(x = groupX, y = centerY(groupP.height))
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/** [TangemTopNavigation] with predefined back / close buttons and a title / subtitle center. */
|
||||
@Composable
|
||||
fun TangemTopNavigation(
|
||||
title: TextReference,
|
||||
modifier: Modifier = Modifier,
|
||||
subtitle: TextReference? = null,
|
||||
contentAlign: TangemTopNavigation.ContentAlign = TangemTopNavigation.ContentAlign.Start,
|
||||
windowInsets: WindowInsets = WindowInsets.statusBars,
|
||||
blurBackground: Boolean = true,
|
||||
onBack: (() -> Unit)? = null,
|
||||
endButtonsGroup: (@Composable RowScope.() -> Unit)? = null,
|
||||
onClose: (() -> Unit)? = null,
|
||||
) {
|
||||
TangemTopNavigation(
|
||||
modifier = modifier,
|
||||
contentAlign = contentAlign,
|
||||
windowInsets = windowInsets,
|
||||
blurBackground = blurBackground,
|
||||
startButton = onBack?.let { { TangemButton.Back(onClick = it) } },
|
||||
endButtonsGroup = endButtonsGroup,
|
||||
endButton = onClose?.let { { TangemButton.Close(onClick = it) } },
|
||||
contentColumn = { TitleSubtitle(title = title, subtitle = subtitle) },
|
||||
)
|
||||
}
|
||||
|
||||
/** [TangemTopNavigation] with a custom [startButton], title / subtitle center, and predefined close. */
|
||||
@Composable
|
||||
fun TangemTopNavigation(
|
||||
title: TextReference,
|
||||
modifier: Modifier = Modifier,
|
||||
subtitle: TextReference? = null,
|
||||
contentAlign: TangemTopNavigation.ContentAlign = TangemTopNavigation.ContentAlign.Start,
|
||||
windowInsets: WindowInsets = WindowInsets.statusBars,
|
||||
blurBackground: Boolean = true,
|
||||
endButtonsGroup: (@Composable RowScope.() -> Unit)? = null,
|
||||
onClose: (() -> Unit)? = null,
|
||||
startButton: @Composable () -> Unit,
|
||||
) {
|
||||
TangemTopNavigation(
|
||||
modifier = modifier,
|
||||
contentAlign = contentAlign,
|
||||
windowInsets = windowInsets,
|
||||
blurBackground = blurBackground,
|
||||
startButton = startButton,
|
||||
endButtonsGroup = endButtonsGroup,
|
||||
endButton = onClose?.let { { TangemButton.Close(onClick = it) } },
|
||||
contentColumn = { TitleSubtitle(title = title, subtitle = subtitle) },
|
||||
)
|
||||
}
|
||||
|
||||
/** [TangemTopNavigation] with predefined back, title / subtitle center, and a custom [endButton]. */
|
||||
@Composable
|
||||
fun TangemTopNavigation(
|
||||
title: TextReference,
|
||||
modifier: Modifier = Modifier,
|
||||
subtitle: TextReference? = null,
|
||||
contentAlign: TangemTopNavigation.ContentAlign = TangemTopNavigation.ContentAlign.Start,
|
||||
windowInsets: WindowInsets = WindowInsets.statusBars,
|
||||
blurBackground: Boolean = true,
|
||||
onBack: (() -> Unit)? = null,
|
||||
endButton: @Composable () -> Unit,
|
||||
) {
|
||||
TangemTopNavigation(
|
||||
modifier = modifier,
|
||||
contentAlign = contentAlign,
|
||||
windowInsets = windowInsets,
|
||||
blurBackground = blurBackground,
|
||||
startButton = onBack?.let { { TangemButton.Back(onClick = it) } },
|
||||
endButton = endButton,
|
||||
contentColumn = { TitleSubtitle(title = title, subtitle = subtitle) },
|
||||
)
|
||||
}
|
||||
|
||||
@Composable
|
||||
private fun ColumnScope.TitleSubtitle(title: TextReference, subtitle: TextReference?) {
|
||||
val sizeSpec = remember { spring<IntSize>(stiffness = Spring.StiffnessMediumLow) }
|
||||
val alphaSpec = remember { spring<Float>(stiffness = Spring.StiffnessMediumLow) }
|
||||
|
||||
// Title swaps in place (no size change), so a pure cross-fade reads better than expand/shrink.
|
||||
val titleEnter = remember(alphaSpec) { fadeIn(animationSpec = alphaSpec) }
|
||||
val titleExit = remember(alphaSpec) { fadeOut(animationSpec = alphaSpec) }
|
||||
|
||||
// Subtitle pushes the bar down/up, so animate height instead of width.
|
||||
val subtitleEnter = remember(sizeSpec, alphaSpec) {
|
||||
fadeIn(animationSpec = alphaSpec) + expandVertically(animationSpec = sizeSpec)
|
||||
}
|
||||
val subtitleExit = remember(sizeSpec, alphaSpec) {
|
||||
fadeOut(animationSpec = alphaSpec) + shrinkVertically(animationSpec = sizeSpec)
|
||||
}
|
||||
|
||||
// Title swaps via cross-fade whenever the reference changes (e.g. step-driven flows).
|
||||
AnimatedContent(
|
||||
targetState = title,
|
||||
transitionSpec = { titleEnter togetherWith titleExit },
|
||||
label = "TangemTopNavigation.title",
|
||||
) { current ->
|
||||
TangemNavigationText(text = current, role = TangemNavigationText.Role.Title)
|
||||
}
|
||||
|
||||
// Subtitle expands/shrinks vertically so the title doesn't visually jump when toggled.
|
||||
val displayedSubtitle = rememberLastNonNull(subtitle)
|
||||
AnimatedVisibility(
|
||||
visible = subtitle != null,
|
||||
enter = subtitleEnter,
|
||||
exit = subtitleExit,
|
||||
) {
|
||||
displayedSubtitle?.let { text ->
|
||||
Column {
|
||||
Spacer(Modifier.height(TangemTheme.dimens3.spacing.s025))
|
||||
TangemNavigationText(text = text, role = TangemNavigationText.Role.Subtitle)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
object TangemTopNavigation {
|
||||
|
||||
/** Horizontal alignment of the center content slot. */
|
||||
enum class ContentAlign {
|
||||
Start, Center
|
||||
}
|
||||
}
|
||||
|
||||
@Preview(
|
||||
showBackground = true,
|
||||
device = Devices.PIXEL_7_PRO,
|
||||
)
|
||||
@Preview(
|
||||
showBackground = true,
|
||||
device = Devices.PIXEL_7_PRO,
|
||||
uiMode = Configuration.UI_MODE_NIGHT_YES,
|
||||
)
|
||||
@Composable
|
||||
private fun Preview() {
|
||||
TangemThemePreviewRedesign {
|
||||
Column(
|
||||
Modifier
|
||||
.fillMaxWidth()
|
||||
.hazeSourceTangem()
|
||||
.background(TangemTheme.colors.background.secondary),
|
||||
) {
|
||||
Spacer(Modifier.height(32.dp))
|
||||
// Screen-level usage: default insets reserve space for the system status bar.
|
||||
TangemTopNavigation(
|
||||
startButton = { TangemButton.Back { } },
|
||||
contentColumn = {
|
||||
TangemNavigationText(text = "Title", role = TangemNavigationText.Role.Title)
|
||||
Spacer(Modifier.height(4.dp))
|
||||
TangemNavigationText(text = "Subtitle", role = TangemNavigationText.Role.Subtitle)
|
||||
},
|
||||
endButtonsGroup = {
|
||||
TangemButton(variant = TangemButton.Variant.Ghost) { }
|
||||
TangemButton(variant = TangemButton.Variant.Ghost) { }
|
||||
},
|
||||
endButton = { TangemButton.Close { } },
|
||||
)
|
||||
Spacer(Modifier.height(16.dp))
|
||||
// Sheet/modal usage via the predefined-buttons overload: zero top inset.
|
||||
TangemTopNavigation(
|
||||
title = stringReference("Title"),
|
||||
subtitle = stringReference("Subtitle"),
|
||||
contentAlign = TangemTopNavigation.ContentAlign.Center,
|
||||
windowInsets = WindowInsets(0),
|
||||
onClose = { },
|
||||
)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -1 +1 @@
|
|||
2eb71d4ac556a6608e34adac157e599b5250677fe1b1727363fcb82218320be1
|
||||
058e1ecd83440d5fda33512248f67176db593029c9b398e4a2692816703e451c
|
||||
|
|
|
|||
|
|
@ -151,8 +151,8 @@ internal fun lightColors3() =
|
|||
),
|
||||
fill = TangemColors3.Material.Fill(
|
||||
glass = Color(0x00000000),
|
||||
blur = Color(0x99FFFFFF),
|
||||
solid = Color(0xE6FFFFFF),
|
||||
blur = Color(0x99F4F4F4),
|
||||
solid = Color(0xF2F4F4F4),
|
||||
),
|
||||
lighten = TangemColors3.Material.Lighten(
|
||||
glass = Color(0x80F7F7F7),
|
||||
|
|
@ -165,9 +165,9 @@ internal fun lightColors3() =
|
|||
solid = Color(0x00000000),
|
||||
),
|
||||
border = TangemColors3.Material.Border(
|
||||
start = Color(0x26000000),
|
||||
mid = Color(0x00000000),
|
||||
end = Color(0x1A000000),
|
||||
start = Color(0xCCFFFFFF),
|
||||
mid = Color(0x00FFFFFF),
|
||||
end = Color(0x99FFFFFF),
|
||||
),
|
||||
),
|
||||
)
|
||||
|
|
@ -27,6 +27,8 @@ class TangemDimens3 internal constructor(
|
|||
class Blur internal constructor(
|
||||
val card: Dp = 48.dp,
|
||||
val Button: Dp = 32.dp,
|
||||
val Fade: Dp = 8.dp,
|
||||
val None: Dp = 0.dp,
|
||||
)
|
||||
|
||||
@Stable
|
||||
|
|
|
|||
|
|
@ -86,7 +86,7 @@ class TangemTypography3 internal constructor(fontFamily: FontFamily) {
|
|||
fontFamily = fontFamily,
|
||||
fontWeight = FontWeight.Medium,
|
||||
fontSize = 14.sp,
|
||||
lineHeight = 17.sp,
|
||||
lineHeight = 18.sp,
|
||||
letterSpacing = 0.07.sp,
|
||||
lineHeightStyle = LineHeightStyle(
|
||||
alignment = LineHeightStyle.Alignment.Center,
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
c1f3db82744567cdd0c59a29761e1b3b4bd4bb81acce832fb0391c7ab24be491
|
||||
f264a99d653eca57bedd4b49ff9ce5171ba9615770a57d574824e387f6cb1d5c
|
||||
|
|
|
|||
|
|
@ -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_address_polygon_16: ImageVector? = null
|
||||
|
||||
val Icons.ic_address_polygon_16: ImageVector
|
||||
get() {
|
||||
if (_ic_address_polygon_16 != null) return _ic_address_polygon_16!!
|
||||
_ic_address_polygon_16 = ImageVector.Builder(
|
||||
name = "ic_address_polygon_16",
|
||||
defaultWidth = 16.dp,
|
||||
defaultHeight = 16.dp,
|
||||
viewportWidth = 16f,
|
||||
viewportHeight = 16f,
|
||||
).apply {
|
||||
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"),
|
||||
)
|
||||
}.build()
|
||||
return _ic_address_polygon_16!!
|
||||
}
|
||||
|
||||
@Composable
|
||||
@Preview(showBackground = true)
|
||||
private fun IcAddressPolygon16Preview() {
|
||||
Icon(
|
||||
imageVector = Icons.ic_address_polygon_16,
|
||||
contentDescription = null,
|
||||
)
|
||||
}
|
||||
|
|
@ -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_address_polygon_20: ImageVector? = null
|
||||
|
||||
val Icons.ic_address_polygon_20: ImageVector
|
||||
get() {
|
||||
if (_ic_address_polygon_20 != null) return _ic_address_polygon_20!!
|
||||
_ic_address_polygon_20 = ImageVector.Builder(
|
||||
name = "ic_address_polygon_20",
|
||||
defaultWidth = 20.dp,
|
||||
defaultHeight = 20.dp,
|
||||
viewportWidth = 20f,
|
||||
viewportHeight = 20f,
|
||||
).apply {
|
||||
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"),
|
||||
)
|
||||
}.build()
|
||||
return _ic_address_polygon_20!!
|
||||
}
|
||||
|
||||
@Composable
|
||||
@Preview(showBackground = true)
|
||||
private fun IcAddressPolygon20Preview() {
|
||||
Icon(
|
||||
imageVector = Icons.ic_address_polygon_20,
|
||||
contentDescription = null,
|
||||
)
|
||||
}
|
||||
|
|
@ -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_address_polygon_24: ImageVector? = null
|
||||
|
||||
val Icons.ic_address_polygon_24: ImageVector
|
||||
get() {
|
||||
if (_ic_address_polygon_24 != null) return _ic_address_polygon_24!!
|
||||
_ic_address_polygon_24 = ImageVector.Builder(
|
||||
name = "ic_address_polygon_24",
|
||||
defaultWidth = 24.dp,
|
||||
defaultHeight = 24.dp,
|
||||
viewportWidth = 24f,
|
||||
viewportHeight = 24f,
|
||||
).apply {
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M7.09277 4.21716C7.66252 3.92737 8.33748 3.92737 8.90723 4.21716L11.9072 5.74353C12.5777 6.08477 12.9999 6.7744 13 7.52673V8.43884C12.9999 8.99101 12.5522 9.43884 12 9.43884C11.4478 9.43884 11.0001 8.99101 11 8.43884V7.52673L8 6.00037L5 7.52673V11.3871L8 12.9125L15.0928 9.30505C15.6625 9.01526 16.3375 9.01526 16.9072 9.30505L19.9072 10.8304C20.5777 11.1717 20.9999 11.8613 21 12.6136V16.474C20.9998 17.2262 20.5776 17.915 19.9072 18.2562L16.9072 19.7826C16.3375 20.0724 15.6625 20.0724 15.0928 19.7826L12.0928 18.2562C11.4224 17.915 11.0002 17.2262 11 16.474V15.5609C11.0001 15.0087 11.4478 14.5609 12 14.5609C12.5522 14.5609 12.9999 15.0087 13 15.5609V16.474L16 17.9994L19 16.474V12.6136L16 11.0873L8.90723 14.6957C8.33749 14.9855 7.66251 14.9855 7.09277 14.6957L4.09277 13.1693C3.42245 12.8281 3.00021 12.1392 3 11.3871V7.52673C3.00008 6.7744 3.42229 6.08477 4.09277 5.74353L7.09277 4.21716Z"),
|
||||
)
|
||||
}.build()
|
||||
return _ic_address_polygon_24!!
|
||||
}
|
||||
|
||||
@Composable
|
||||
@Preview(showBackground = true)
|
||||
private fun IcAddressPolygon24Preview() {
|
||||
Icon(
|
||||
imageVector = Icons.ic_address_polygon_24,
|
||||
contentDescription = null,
|
||||
)
|
||||
}
|
||||
|
|
@ -31,7 +31,7 @@ val Icons.ic_arrow_down_12: ImageVector
|
|||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M5.5 2L5.5 9.04297L2.35352 5.89648C2.15825 5.70122 1.84175 5.70122 1.64649 5.89648C1.45122 6.09175 1.45122 6.40825 1.64649 6.60352L5.64648 10.6035L5.72266 10.666C5.80419 10.7204 5.90056 10.75 6 10.75C6.13261 10.75 6.25975 10.6973 6.35352 10.6035L10.3535 6.60352C10.5488 6.40826 10.5488 6.09175 10.3535 5.89649C10.1583 5.70122 9.84175 5.70122 9.64649 5.89649L6.5 9.04297L6.5 2C6.5 1.72386 6.27614 1.5 6 1.5C5.72386 1.5 5.5 1.72386 5.5 2Z"),
|
||||
pathData = addPathNodes("M2.14582 6.64587C1.95126 6.84117 1.95085 7.15787 2.14582 7.35291L5.6468 10.8539C5.84183 11.0489 6.15852 11.0485 6.35383 10.8539L9.85481 7.35291C10.05 7.15764 10.05 6.84112 9.85481 6.64587C9.65955 6.45076 9.343 6.45072 9.14777 6.64587L6.50031 9.29333L6.50031 1.50232C6.50031 1.22622 6.2764 1.00238 6.00031 1.00232C5.72451 1.00272 5.50031 1.22642 5.50031 1.50232L5.50031 9.29333L2.85285 6.64587C2.65765 6.45075 2.34107 6.45083 2.14582 6.64587Z"),
|
||||
)
|
||||
}.build()
|
||||
return _ic_arrow_down_12!!
|
||||
|
|
|
|||
|
|
@ -31,7 +31,7 @@ val Icons.ic_arrow_down_16: ImageVector
|
|||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M7.4997 2.66669L7.4997 12.4597L3.02021 7.98016C2.82494 7.7849 2.50844 7.7849 2.31318 7.98016C2.11808 8.17544 2.11797 8.49199 2.31318 8.68719L7.64618 14.0202C7.73987 14.1139 7.86721 14.1666 7.9997 14.1667C8.13223 14.1667 8.25946 14.1139 8.35321 14.0202L13.6872 8.6872C13.8824 8.49204 13.8821 8.17545 13.6872 7.98017C13.4919 7.7849 13.1754 7.7849 12.9802 7.98017L8.4997 12.4606L8.4997 2.66669C8.4997 2.39055 8.27584 2.16669 7.9997 2.16669C7.72371 2.16686 7.4997 2.39065 7.4997 2.66669Z"),
|
||||
pathData = addPathNodes("M12.8149 8.74725C13.0583 8.99129 13.0585 9.38713 12.8149 9.63104L8.44185 14.0041C8.19795 14.2476 7.80207 14.2474 7.55806 14.0041L3.18502 9.63104C2.94151 9.38704 2.94143 8.9912 3.18502 8.74725C3.42903 8.50336 3.82573 8.50343 4.06978 8.74725L7.37545 12.0529L7.37545 2.50018C7.37555 2.15518 7.65545 1.87532 8.00045 1.87518C8.34515 1.87567 8.62534 2.15539 8.62545 2.50018L8.62545 12.0519L11.9311 8.74725C12.1751 8.50352 12.5709 8.50348 12.8149 8.74725Z"),
|
||||
)
|
||||
}.build()
|
||||
return _ic_arrow_down_16!!
|
||||
|
|
|
|||
|
|
@ -31,7 +31,7 @@ val Icons.ic_arrow_down_20: ImageVector
|
|||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M9.25031 3.33331L9.2503 15.2728L3.86359 9.88605C3.57073 9.59337 3.09589 9.59337 2.80304 9.88605C2.5102 10.1789 2.51031 10.6537 2.80304 10.9466L9.47003 17.6136L9.58429 17.7073C9.70654 17.7888 9.85124 17.8333 10.0003 17.8333C10.1991 17.8332 10.39 17.7542 10.5306 17.6136L17.1966 10.9466C17.4895 10.6537 17.4895 10.1789 17.1966 9.88605C16.9037 9.59348 16.4288 9.59326 16.136 9.88605L10.7503 15.2728L10.7503 3.33331C10.7503 2.91921 10.4144 2.58349 10.0003 2.58331C9.58609 2.58331 9.25031 2.9191 9.25031 3.33331Z"),
|
||||
pathData = addPathNodes("M16.7808 10.4873C17.0729 10.7801 17.073 11.2551 16.7808 11.5479L10.5298 17.7988C10.2371 18.0915 9.76117 18.0912 9.46825 17.7988L3.21728 11.5479C2.92445 11.255 2.92458 10.7802 3.21728 10.4873C3.51021 10.1948 3.98508 10.1946 4.27782 10.4873L9.2495 15.458L9.2495 2.75C9.24962 2.33588 9.58536 2 9.9995 2C10.413 2.00075 10.7494 2.33635 10.7495 2.75L10.7495 15.457L15.7202 10.4873C16.0131 10.1948 16.488 10.1946 16.7808 10.4873Z"),
|
||||
)
|
||||
}.build()
|
||||
return _ic_arrow_down_20!!
|
||||
|
|
|
|||
|
|
@ -31,7 +31,7 @@ val Icons.ic_arrow_down_24: ImageVector
|
|||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M11 4L11 18.0859L4.70703 11.793C4.31651 11.4024 3.6835 11.4024 3.29297 11.793C2.90245 12.1835 2.90245 12.8165 3.29297 13.207L11.293 21.207L11.3662 21.2734C11.5442 21.4193 11.7679 21.5 12 21.5C12.2652 21.5 12.5195 21.3946 12.707 21.207L20.707 13.207C21.0976 12.8165 21.0976 12.1835 20.707 11.793C20.3165 11.4024 19.6835 11.4024 19.293 11.793L13 18.0859L13 4C13 3.44772 12.5523 3 12 3C11.4477 3 11 3.44772 11 4Z"),
|
||||
pathData = addPathNodes("M4.29244 14.707C3.90252 14.3167 3.90261 13.6834 4.29244 13.293C4.68283 12.9027 5.31598 12.9029 5.7065 13.293L10.9985 18.585L10.9985 3C10.9986 2.44808 11.4466 2.00042 11.9985 2C12.5507 2.00003 12.9984 2.44784 12.9985 3L12.9985 18.585L18.2905 13.293C18.6809 12.9027 19.314 12.9029 19.7045 13.293C20.0949 13.6835 20.0949 14.3165 19.7045 14.707L12.7055 21.7061C12.5181 21.8932 12.2634 21.999 11.9985 21.999C11.7336 21.9988 11.4788 21.8933 11.2915 21.7061L4.29244 14.707Z"),
|
||||
)
|
||||
}.build()
|
||||
return _ic_arrow_down_24!!
|
||||
|
|
|
|||
|
|
@ -31,7 +31,7 @@ val Icons.ic_arrow_down_28: ImageVector
|
|||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M12.7496 4.66669L12.7496 20.8991L5.55042 13.6999C5.06226 13.2117 4.27099 13.2117 3.78284 13.6999C3.29485 14.1881 3.29474 14.9794 3.78284 15.4675L13.1158 24.8005C13.3502 25.0348 13.6682 25.1666 13.9996 25.1667C14.3311 25.1667 14.649 25.0348 14.8834 24.8005L24.2174 15.4675C24.7055 14.9794 24.7052 14.1881 24.2174 13.6999C23.7293 13.2117 22.938 13.2117 22.4498 13.6999L15.2496 20.9001L15.2496 4.66669C15.2496 3.97633 14.69 3.41669 13.9996 3.41669C13.3094 3.41686 12.7496 3.97644 12.7496 4.66669Z"),
|
||||
pathData = addPathNodes("M4.35954 16.751C3.87516 16.2595 3.88101 15.468 4.37224 14.9834C4.86381 14.4991 5.65524 14.5048 6.13981 14.9961L12.7511 21.7021V3.25C12.7513 2.5599 13.3111 2.00024 14.0011 2C14.6911 2.00033 15.251 2.55995 15.2511 3.25V21.7012L21.8615 14.9961C22.3461 14.5048 23.1385 14.499 23.63 14.9834C24.1212 15.468 24.1269 16.2594 23.6427 16.751L14.8908 25.6279C14.6561 25.8657 14.3353 25.9998 14.0011 26C13.6668 25.9999 13.3453 25.866 13.1105 25.6279L4.35954 16.751Z"),
|
||||
)
|
||||
}.build()
|
||||
return _ic_arrow_down_28!!
|
||||
|
|
|
|||
|
|
@ -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_download_16: ImageVector? = null
|
||||
|
||||
val Icons.ic_arrow_download_16: ImageVector
|
||||
get() {
|
||||
if (_ic_arrow_download_16 != null) return _ic_arrow_download_16!!
|
||||
_ic_arrow_download_16 = ImageVector.Builder(
|
||||
name = "ic_arrow_download_16",
|
||||
defaultWidth = 16.dp,
|
||||
defaultHeight = 16.dp,
|
||||
viewportWidth = 16f,
|
||||
viewportHeight = 16f,
|
||||
).apply {
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M13.3779 12.7451C13.7228 12.7453 14.0027 13.0252 14.0029 13.3701C14.0027 13.715 13.7228 13.9949 13.3779 13.9951H2.625C2.27994 13.9951 2.00018 13.7151 2 13.3701C2.00018 13.0251 2.27993 12.7451 2.625 12.7451H13.3779Z"),
|
||||
)
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M8.00098 2C8.34615 2 8.62598 2.27982 8.62598 2.625V9.59082L10.9463 7.53027C11.2044 7.30141 11.6 7.3241 11.8291 7.58203C12.0581 7.83997 12.034 8.23462 11.7764 8.46387L8.41602 11.4502C8.40238 11.4623 8.38548 11.4707 8.37109 11.4814C8.36061 11.4892 8.35082 11.4978 8.33984 11.5049C8.31406 11.5217 8.28723 11.5353 8.25977 11.5479C8.25221 11.5513 8.24502 11.5554 8.2373 11.5586C8.20496 11.5719 8.1724 11.5832 8.13867 11.5908C8.13375 11.5919 8.12899 11.5937 8.12402 11.5947C8.04367 11.6109 7.9613 11.6104 7.88086 11.5947C7.8712 11.5928 7.86203 11.5892 7.85254 11.5869C7.82143 11.5793 7.79062 11.571 7.76074 11.5586C7.75671 11.5569 7.75301 11.5545 7.74902 11.5527C7.71757 11.5389 7.6875 11.5222 7.6582 11.5029C7.6498 11.4974 7.6419 11.4913 7.63379 11.4854C7.61791 11.4737 7.60092 11.4635 7.58594 11.4502L4.22559 8.46387C3.9677 8.23458 3.94461 7.84002 4.17383 7.58203C4.40316 7.3245 4.7978 7.30117 5.05566 7.53027L7.37598 9.59082V2.625C7.37598 2.27985 7.65584 2.00005 8.00098 2Z"),
|
||||
)
|
||||
}.build()
|
||||
return _ic_arrow_download_16!!
|
||||
}
|
||||
|
||||
@Composable
|
||||
@Preview(showBackground = true)
|
||||
private fun IcArrowDownload16Preview() {
|
||||
Icon(
|
||||
imageVector = Icons.ic_arrow_download_16,
|
||||
contentDescription = null,
|
||||
)
|
||||
}
|
||||
|
|
@ -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_download_20: ImageVector? = null
|
||||
|
||||
val Icons.ic_arrow_download_20: ImageVector
|
||||
get() {
|
||||
if (_ic_arrow_download_20 != null) return _ic_arrow_download_20!!
|
||||
_ic_arrow_download_20 = ImageVector.Builder(
|
||||
name = "ic_arrow_download_20",
|
||||
defaultWidth = 20.dp,
|
||||
defaultHeight = 20.dp,
|
||||
viewportWidth = 20f,
|
||||
viewportHeight = 20f,
|
||||
).apply {
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M16.7549 15.502C17.1688 15.5023 17.5049 15.838 17.5049 16.252C17.5047 16.6657 17.1686 17.0016 16.7549 17.002H3.25C2.83593 17.002 2.50023 16.666 2.5 16.252C2.5 15.8377 2.83579 15.502 3.25 15.502H16.7549Z"),
|
||||
)
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M10.002 3C10.4161 3 10.7518 3.33589 10.752 3.75V11.6631L13.4717 8.94336C13.7646 8.65082 14.2395 8.65059 14.5322 8.94336C14.8249 9.23615 14.8248 9.71102 14.5322 10.0039L10.5322 14.0039C10.4383 14.0978 10.3205 14.1605 10.1943 14.1943C10.1793 14.1983 10.1648 14.2049 10.1494 14.208C10.1468 14.2085 10.1442 14.2085 10.1416 14.209C10.1025 14.2164 10.0625 14.2197 10.0215 14.2207C10.015 14.2209 10.0085 14.2236 10.002 14.2236C9.99521 14.2236 9.98817 14.2209 9.98145 14.2207C9.94114 14.2196 9.90176 14.2162 9.86328 14.209C9.85944 14.2083 9.85538 14.2088 9.85156 14.208C9.84522 14.2067 9.83929 14.2036 9.83301 14.2021C9.69737 14.1707 9.57171 14.1038 9.47168 14.0039L5.47168 10.0039C5.17881 9.71101 5.1788 9.23624 5.47168 8.94336C5.76461 8.65082 6.23946 8.65059 6.53223 8.94336L9.25195 11.6631V3.75C9.25208 3.33594 9.58788 3.00007 10.002 3Z"),
|
||||
)
|
||||
}.build()
|
||||
return _ic_arrow_download_20!!
|
||||
}
|
||||
|
||||
@Composable
|
||||
@Preview(showBackground = true)
|
||||
private fun IcArrowDownload20Preview() {
|
||||
Icon(
|
||||
imageVector = Icons.ic_arrow_download_20,
|
||||
contentDescription = null,
|
||||
)
|
||||
}
|
||||
|
|
@ -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_download_24: ImageVector? = null
|
||||
|
||||
val Icons.ic_arrow_download_24: ImageVector
|
||||
get() {
|
||||
if (_ic_arrow_download_24 != null) return _ic_arrow_download_24!!
|
||||
_ic_arrow_download_24 = ImageVector.Builder(
|
||||
name = "ic_arrow_download_24",
|
||||
defaultWidth = 24.dp,
|
||||
defaultHeight = 24.dp,
|
||||
viewportWidth = 24f,
|
||||
viewportHeight = 24f,
|
||||
).apply {
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M20 18.501C20.5523 18.501 21 18.9487 21 19.501C20.9999 20.0532 20.5522 20.501 20 20.501H4C3.44777 20.501 3.00009 20.0532 3 19.501C3 18.9487 3.44772 18.501 4 18.501H20Z"),
|
||||
)
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M12 3.5C12.5523 3.5 13 3.94772 13 4.5V14.0303L16.3594 11.2314C16.7836 10.878 17.415 10.9353 17.7686 11.3594C18.1221 11.7836 18.0648 12.415 17.6406 12.7686L12.6396 16.9355C12.6146 16.9565 12.588 16.9751 12.5615 16.9932C12.5553 16.9974 12.5493 17.0018 12.543 17.0059C12.5221 17.0194 12.501 17.0321 12.4795 17.0439C12.4754 17.0462 12.4709 17.0476 12.4668 17.0498C12.4434 17.0622 12.4196 17.0736 12.3955 17.084C12.3877 17.0873 12.3799 17.0906 12.3721 17.0938C12.3562 17.1001 12.3403 17.1058 12.3242 17.1113C12.2796 17.1267 12.2338 17.1395 12.1865 17.1484C12.1697 17.1516 12.1527 17.1529 12.1357 17.1553C12.101 17.16 12.066 17.164 12.0303 17.165C12.0078 17.1657 11.9854 17.1649 11.9629 17.1641C11.9302 17.1629 11.898 17.1605 11.8662 17.1562C11.8469 17.1537 11.8277 17.1512 11.8086 17.1475C11.7645 17.1389 11.7215 17.1274 11.6797 17.1133C11.5653 17.0747 11.4557 17.0167 11.3584 16.9355L6.3584 12.7686C5.93422 12.4149 5.87687 11.7836 6.23047 11.3594C6.58408 10.9352 7.21544 10.8779 7.63965 11.2314L11 14.0322V4.5C11 3.94772 11.4477 3.5 12 3.5Z"),
|
||||
)
|
||||
}.build()
|
||||
return _ic_arrow_download_24!!
|
||||
}
|
||||
|
||||
@Composable
|
||||
@Preview(showBackground = true)
|
||||
private fun IcArrowDownload24Preview() {
|
||||
Icon(
|
||||
imageVector = Icons.ic_arrow_download_24,
|
||||
contentDescription = null,
|
||||
)
|
||||
}
|
||||
|
|
@ -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_arrow_left_12: ImageVector? = null
|
||||
|
||||
val Icons.ic_arrow_left_12: ImageVector
|
||||
get() {
|
||||
if (_ic_arrow_left_12 != null) return _ic_arrow_left_12!!
|
||||
_ic_arrow_left_12 = ImageVector.Builder(
|
||||
name = "ic_arrow_left_12",
|
||||
defaultWidth = 12.dp,
|
||||
defaultHeight = 12.dp,
|
||||
viewportWidth = 12f,
|
||||
viewportHeight = 12f,
|
||||
).apply {
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M4.64638 2.14623C4.84125 1.95157 5.15811 1.95224 5.35341 2.14623C5.54826 2.34146 5.54835 2.6581 5.35341 2.85327L2.70595 5.50073H10.497C10.7726 5.50073 10.9962 5.72523 10.997 6.00073C10.9966 6.27659 10.7729 6.50073 10.497 6.50073H2.70595L5.35341 9.14819C5.54837 9.34338 5.54834 9.66001 5.35341 9.85522C5.15819 10.0501 4.84154 10.0502 4.64638 9.85522L1.1454 6.35424C0.951454 6.159 0.950881 5.8421 1.1454 5.64721L4.64638 2.14623Z"),
|
||||
)
|
||||
}.build()
|
||||
return _ic_arrow_left_12!!
|
||||
}
|
||||
|
||||
@Composable
|
||||
@Preview(showBackground = true)
|
||||
private fun IcArrowLeft12Preview() {
|
||||
Icon(
|
||||
imageVector = Icons.ic_arrow_left_12,
|
||||
contentDescription = null,
|
||||
)
|
||||
}
|
||||
|
|
@ -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_arrow_left_16: ImageVector? = null
|
||||
|
||||
val Icons.ic_arrow_left_16: ImageVector
|
||||
get() {
|
||||
if (_ic_arrow_left_16 != null) return _ic_arrow_left_16!!
|
||||
_ic_arrow_left_16 = ImageVector.Builder(
|
||||
name = "ic_arrow_left_16",
|
||||
defaultWidth = 16.dp,
|
||||
defaultHeight = 16.dp,
|
||||
viewportWidth = 16f,
|
||||
viewportHeight = 16f,
|
||||
).apply {
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M7.25277 3.18508C7.00873 2.94166 6.61289 2.94146 6.36898 3.18508L1.99593 7.55813C1.75241 7.80203 1.75258 8.19791 1.99593 8.44192L6.36898 12.815C6.61298 13.0585 7.00881 13.0586 7.25277 12.815C7.49666 12.571 7.49659 12.1743 7.25277 11.9302L3.9471 8.62453H13.4998C13.8448 8.62443 14.1247 8.34453 14.1248 7.99953C14.1244 7.65483 13.8446 7.37464 13.4998 7.37453H3.94808L7.25277 4.06887C7.4965 3.82484 7.49654 3.42909 7.25277 3.18508Z"),
|
||||
)
|
||||
}.build()
|
||||
return _ic_arrow_left_16!!
|
||||
}
|
||||
|
||||
@Composable
|
||||
@Preview(showBackground = true)
|
||||
private fun IcArrowLeft16Preview() {
|
||||
Icon(
|
||||
imageVector = Icons.ic_arrow_left_16,
|
||||
contentDescription = null,
|
||||
)
|
||||
}
|
||||
|
|
@ -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_arrow_left_20: ImageVector? = null
|
||||
|
||||
val Icons.ic_arrow_left_20: ImageVector
|
||||
get() {
|
||||
if (_ic_arrow_left_20 != null) return _ic_arrow_left_20!!
|
||||
_ic_arrow_left_20 = ImageVector.Builder(
|
||||
name = "ic_arrow_left_20",
|
||||
defaultWidth = 20.dp,
|
||||
defaultHeight = 20.dp,
|
||||
viewportWidth = 20f,
|
||||
viewportHeight = 20f,
|
||||
).apply {
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M9.51269 3.21852C9.21989 2.92641 8.74486 2.92628 8.45214 3.21852L2.20117 9.4695C1.90849 9.76222 1.90881 10.2381 2.20117 10.531L8.45214 16.782C8.74497 17.0748 9.21978 17.0747 9.51269 16.782C9.80515 16.4891 9.80544 16.0142 9.51269 15.7215L4.54199 10.7498H17.25C17.6641 10.7497 18 10.4139 18 9.99977C17.9992 9.58627 17.6636 9.24989 17.25 9.24977H4.54296L9.51269 4.27907C9.80515 3.98614 9.80544 3.51127 9.51269 3.21852Z"),
|
||||
)
|
||||
}.build()
|
||||
return _ic_arrow_left_20!!
|
||||
}
|
||||
|
||||
@Composable
|
||||
@Preview(showBackground = true)
|
||||
private fun IcArrowLeft20Preview() {
|
||||
Icon(
|
||||
imageVector = Icons.ic_arrow_left_20,
|
||||
contentDescription = null,
|
||||
)
|
||||
}
|
||||
|
|
@ -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_arrow_left_24: ImageVector? = null
|
||||
|
||||
val Icons.ic_arrow_left_24: ImageVector
|
||||
get() {
|
||||
if (_ic_arrow_left_24 != null) return _ic_arrow_left_24!!
|
||||
_ic_arrow_left_24 = ImageVector.Builder(
|
||||
name = "ic_arrow_left_24",
|
||||
defaultWidth = 24.dp,
|
||||
defaultHeight = 24.dp,
|
||||
viewportWidth = 24f,
|
||||
viewportHeight = 24f,
|
||||
).apply {
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M9.29199 4.29265C9.68241 3.90259 10.3156 3.90264 10.7061 4.29265C11.0962 4.68308 11.0962 5.31624 10.7061 5.70671L5.41406 10.9987H20.999C21.551 10.9988 21.9987 11.4467 21.999 11.9987C21.9988 12.5507 21.5511 12.9986 20.999 12.9987H5.41406L10.7061 18.2907C11.0962 18.6811 11.0962 19.3143 10.7061 19.7048C10.3156 20.0949 9.68242 20.0949 9.29199 19.7048L2.29297 12.7057C2.10577 12.5183 2.00009 12.2636 2 11.9987C2.00014 11.7338 2.10575 11.479 2.29297 11.2917L9.29199 4.29265Z"),
|
||||
)
|
||||
}.build()
|
||||
return _ic_arrow_left_24!!
|
||||
}
|
||||
|
||||
@Composable
|
||||
@Preview(showBackground = true)
|
||||
private fun IcArrowLeft24Preview() {
|
||||
Icon(
|
||||
imageVector = Icons.ic_arrow_left_24,
|
||||
contentDescription = null,
|
||||
)
|
||||
}
|
||||
|
|
@ -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_arrow_left_28: ImageVector? = null
|
||||
|
||||
val Icons.ic_arrow_left_28: ImageVector
|
||||
get() {
|
||||
if (_ic_arrow_left_28 != null) return _ic_arrow_left_28!!
|
||||
_ic_arrow_left_28 = ImageVector.Builder(
|
||||
name = "ic_arrow_left_28",
|
||||
defaultWidth = 28.dp,
|
||||
defaultHeight = 28.dp,
|
||||
viewportWidth = 28f,
|
||||
viewportHeight = 28f,
|
||||
).apply {
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M11.249 4.35978C11.7405 3.8754 12.532 3.88125 13.0166 4.37248C13.5009 4.86406 13.4952 5.65549 13.0039 6.14006L6.29785 12.7514H24.75C25.4401 12.7515 25.9998 13.3113 26 14.0014C25.9997 14.6914 25.4401 15.2513 24.75 15.2514H6.29883L13.0039 21.8617C13.4952 22.3464 13.501 23.1387 13.0166 23.6303C12.532 24.1214 11.7406 24.1271 11.249 23.643L2.37207 14.891C2.13429 14.6563 2.00016 14.3355 2 14.0014C2.00012 13.667 2.13402 13.3455 2.37207 13.1108L11.249 4.35978Z"),
|
||||
)
|
||||
}.build()
|
||||
return _ic_arrow_left_28!!
|
||||
}
|
||||
|
||||
@Composable
|
||||
@Preview(showBackground = true)
|
||||
private fun IcArrowLeft28Preview() {
|
||||
Icon(
|
||||
imageVector = Icons.ic_arrow_left_28,
|
||||
contentDescription = null,
|
||||
)
|
||||
}
|
||||
|
|
@ -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_12: ImageVector? = null
|
||||
|
||||
val Icons.ic_arrow_refresh_12: ImageVector
|
||||
get() {
|
||||
if (_ic_arrow_refresh_12 != null) return _ic_arrow_refresh_12!!
|
||||
_ic_arrow_refresh_12 = ImageVector.Builder(
|
||||
name = "ic_arrow_refresh_12",
|
||||
defaultWidth = 12.dp,
|
||||
defaultHeight = 12.dp,
|
||||
viewportWidth = 12f,
|
||||
viewportHeight = 12f,
|
||||
).apply {
|
||||
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"),
|
||||
)
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M6.00098 1.5C7.38045 1.50006 8.61056 2.12258 9.43457 3.09863V2.69434C9.43457 2.39994 9.67344 2.16138 9.96777 2.16113C10.2623 2.16113 10.501 2.39978 10.501 2.69434V4.34766C10.5006 4.64187 10.2621 4.88086 9.96777 4.88086H8.31445C8.02049 4.88046 7.78164 4.64162 7.78125 4.34766C7.78125 4.05335 8.02024 3.81486 8.31445 3.81445H8.64355C8.01382 3.05222 7.06456 2.56647 6.00098 2.56641C4.10455 2.56659 2.56762 4.10363 2.56738 6C2.56713 6.29422 2.32841 6.53399 2.03418 6.53418C1.73978 6.53418 1.50123 6.29434 1.50098 6C1.50121 3.51452 3.51547 1.50018 6.00098 1.5Z"),
|
||||
)
|
||||
}.build()
|
||||
return _ic_arrow_refresh_12!!
|
||||
}
|
||||
|
||||
@Composable
|
||||
@Preview(showBackground = true)
|
||||
private fun IcArrowRefresh12Preview() {
|
||||
Icon(
|
||||
imageVector = Icons.ic_arrow_refresh_12,
|
||||
contentDescription = null,
|
||||
)
|
||||
}
|
||||
|
|
@ -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_16: ImageVector? = null
|
||||
|
||||
val Icons.ic_arrow_refresh_16: ImageVector
|
||||
get() {
|
||||
if (_ic_arrow_refresh_16 != null) return _ic_arrow_refresh_16!!
|
||||
_ic_arrow_refresh_16 = ImageVector.Builder(
|
||||
name = "ic_arrow_refresh_16",
|
||||
defaultWidth = 16.dp,
|
||||
defaultHeight = 16.dp,
|
||||
viewportWidth = 16f,
|
||||
viewportHeight = 16f,
|
||||
).apply {
|
||||
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"),
|
||||
)
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M8.00195 2.5C9.71877 2.50008 11.2466 3.28982 12.2539 4.52051V3.93848C12.2539 3.5933 12.5337 3.31348 12.8789 3.31348C13.224 3.31356 13.5039 3.59335 13.5039 3.93848V5.9707C13.5036 6.31553 13.2238 6.59562 12.8789 6.5957H10.8467C10.5018 6.59558 10.222 6.31551 10.2217 5.9707C10.2217 5.6256 10.5016 5.34582 10.8467 5.3457H11.3135C10.5345 4.37354 9.34185 3.75008 8.00195 3.75C5.65376 3.75025 3.75106 5.65377 3.75098 8.00195C3.75087 8.34682 3.47079 8.6266 3.12598 8.62695C2.78087 8.62695 2.50109 8.34704 2.50098 8.00195C2.50106 4.9634 4.96342 2.50025 8.00195 2.5Z"),
|
||||
)
|
||||
}.build()
|
||||
return _ic_arrow_refresh_16!!
|
||||
}
|
||||
|
||||
@Composable
|
||||
@Preview(showBackground = true)
|
||||
private fun IcArrowRefresh16Preview() {
|
||||
Icon(
|
||||
imageVector = Icons.ic_arrow_refresh_16,
|
||||
contentDescription = null,
|
||||
)
|
||||
}
|
||||
|
|
@ -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_20: ImageVector? = null
|
||||
|
||||
val Icons.ic_arrow_refresh_20: ImageVector
|
||||
get() {
|
||||
if (_ic_arrow_refresh_20 != null) return _ic_arrow_refresh_20!!
|
||||
_ic_arrow_refresh_20 = ImageVector.Builder(
|
||||
name = "ic_arrow_refresh_20",
|
||||
defaultWidth = 20.dp,
|
||||
defaultHeight = 20.dp,
|
||||
viewportWidth = 20f,
|
||||
viewportHeight = 20f,
|
||||
).apply {
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M15.75 9.25C16.1642 9.25 16.5 9.58579 16.5 10C16.5 13.5902 13.5901 16.4999 10 16.5C7.98553 16.5 6.19017 15.5813 5 14.1445V14.791C5 15.2051 4.66404 15.5408 4.25 15.541C3.83581 15.541 3.5 15.2052 3.5 14.791V12.3955C3.50015 11.9814 3.8359 11.6455 4.25 11.6455H6.64551C7.05963 11.6455 7.39536 11.9814 7.39551 12.3955C7.39551 12.8097 7.05972 13.1455 6.64551 13.1455H6.12305C7.0395 14.2763 8.43424 15 10 15C12.7617 14.9999 15 12.7617 15 10C15 9.58584 15.3359 9.25008 15.75 9.25Z"),
|
||||
)
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M10 3.5C12.0145 3.50009 13.8099 4.41862 15 5.85547V5.20801C15.0001 4.79393 15.3359 4.45809 15.75 4.45801C16.1641 4.45801 16.4999 4.79388 16.5 5.20801V7.60352C16.5 8.01773 16.1642 8.35352 15.75 8.35352H13.3545C12.9403 8.35343 12.6045 8.01768 12.6045 7.60352C12.6048 7.18962 12.9405 6.8536 13.3545 6.85352H13.876C12.9595 5.72327 11.5652 5.00009 10 5C7.23838 5.00014 5.00007 7.23837 5 10C4.99989 10.414 4.664 10.7498 4.25 10.75C3.83591 10.7499 3.50011 10.4141 3.5 10C3.50007 6.40994 6.40996 3.50014 10 3.5Z"),
|
||||
)
|
||||
}.build()
|
||||
return _ic_arrow_refresh_20!!
|
||||
}
|
||||
|
||||
@Composable
|
||||
@Preview(showBackground = true)
|
||||
private fun IcArrowRefresh20Preview() {
|
||||
Icon(
|
||||
imageVector = Icons.ic_arrow_refresh_20,
|
||||
contentDescription = null,
|
||||
)
|
||||
}
|
||||
|
|
@ -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_24: ImageVector? = null
|
||||
|
||||
val Icons.ic_arrow_refresh_24: ImageVector
|
||||
get() {
|
||||
if (_ic_arrow_refresh_24 != null) return _ic_arrow_refresh_24!!
|
||||
_ic_arrow_refresh_24 = ImageVector.Builder(
|
||||
name = "ic_arrow_refresh_24",
|
||||
defaultWidth = 24.dp,
|
||||
defaultHeight = 24.dp,
|
||||
viewportWidth = 24f,
|
||||
viewportHeight = 24f,
|
||||
).apply {
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M20 11C20.5523 11 21 11.4477 21 12C21 16.971 16.971 21 12 21C9.16729 21 6.64691 19.6886 5 17.6455V18.666C5 19.2182 4.55214 19.6658 4 19.666C3.44783 19.6659 3 19.2182 3 18.666V15.333C3.0002 14.781 3.44795 14.3331 4 14.333H7.33301C7.88517 14.333 8.33281 14.7809 8.33301 15.333C8.33301 15.8853 7.88529 16.333 7.33301 16.333H6.51172C7.79335 17.9577 9.77446 19 12 19C15.8664 19 19 15.8664 19 12C19 11.4477 19.4477 11 20 11Z"),
|
||||
)
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M12 3C14.8327 3.00005 17.3533 4.31128 19 6.35449V5.33301C19.0002 4.78089 19.4478 4.33301 20 4.33301C20.5522 4.33301 20.9998 4.78089 21 5.33301V8.66602C21 9.2183 20.5523 9.66602 20 9.66602H16.667C16.1147 9.66602 15.667 9.2183 15.667 8.66602C15.6674 8.11405 16.1149 7.66602 16.667 7.66602H17.4883C16.2066 6.04172 14.2252 5.00005 12 5C8.13373 5.00013 5 8.1337 5 12C5 12.5522 4.55221 12.9999 4 13C3.44783 12.9999 3 12.5522 3 12C3 7.02913 7.02916 3.00013 12 3Z"),
|
||||
)
|
||||
}.build()
|
||||
return _ic_arrow_refresh_24!!
|
||||
}
|
||||
|
||||
@Composable
|
||||
@Preview(showBackground = true)
|
||||
private fun IcArrowRefresh24Preview() {
|
||||
Icon(
|
||||
imageVector = Icons.ic_arrow_refresh_24,
|
||||
contentDescription = null,
|
||||
)
|
||||
}
|
||||
|
|
@ -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_32: ImageVector? = null
|
||||
|
||||
val Icons.ic_arrow_refresh_32: ImageVector
|
||||
get() {
|
||||
if (_ic_arrow_refresh_32 != null) return _ic_arrow_refresh_32!!
|
||||
_ic_arrow_refresh_32 = ImageVector.Builder(
|
||||
name = "ic_arrow_refresh_32",
|
||||
defaultWidth = 32.dp,
|
||||
defaultHeight = 32.dp,
|
||||
viewportWidth = 32f,
|
||||
viewportHeight = 32f,
|
||||
).apply {
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M26.751 14.75C27.4413 14.75 28.001 15.3096 28.001 16C28.001 22.628 22.6289 27.9999 16.001 28C12.1256 28 8.69027 26.1578 6.5 23.3105V24.959C6.49973 25.6491 5.94019 26.209 5.25 26.209C4.56008 26.2087 4.00027 25.6489 4 24.959V20.4795C4 19.7893 4.55991 19.2298 5.25 19.2295H9.72949C10.4198 19.2295 10.9795 19.7891 10.9795 20.4795C10.9794 21.1697 10.4198 21.7295 9.72949 21.7295H8.43555C10.1698 24.0207 12.9119 25.5 16.001 25.5C21.2482 25.4999 25.501 21.2473 25.501 16C25.501 15.3096 26.0606 14.75 26.751 14.75Z"),
|
||||
)
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M16.001 4C19.8754 4.00001 23.3106 5.84055 25.501 8.68652V7.04102C25.5012 6.35088 26.0608 5.79102 26.751 5.79102C27.4412 5.79102 28.0007 6.35088 28.001 7.04102V11.5205C28.0008 12.2107 27.4412 12.7705 26.751 12.7705H22.2715C21.5813 12.7704 21.0216 12.2106 21.0215 11.5205C21.0217 10.8305 21.5814 10.2707 22.2715 10.2705H23.5664C21.8322 7.97924 19.0901 6.50001 16.001 6.5C10.7538 6.5001 6.50106 10.7528 6.50098 16C6.50088 16.6903 5.94126 17.25 5.25098 17.25C4.56071 17.25 4.00108 16.6902 4.00098 16C4.00106 9.37211 9.3731 4.0001 16.001 4Z"),
|
||||
)
|
||||
}.build()
|
||||
return _ic_arrow_refresh_32!!
|
||||
}
|
||||
|
||||
@Composable
|
||||
@Preview(showBackground = true)
|
||||
private fun IcArrowRefresh32Preview() {
|
||||
Icon(
|
||||
imageVector = Icons.ic_arrow_refresh_32,
|
||||
contentDescription = null,
|
||||
)
|
||||
}
|
||||
|
|
@ -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_arrow_right_12: ImageVector? = null
|
||||
|
||||
val Icons.ic_arrow_right_12: ImageVector
|
||||
get() {
|
||||
if (_ic_arrow_right_12 != null) return _ic_arrow_right_12!!
|
||||
_ic_arrow_right_12 = ImageVector.Builder(
|
||||
name = "ic_arrow_right_12",
|
||||
defaultWidth = 12.dp,
|
||||
defaultHeight = 12.dp,
|
||||
viewportWidth = 12f,
|
||||
viewportHeight = 12f,
|
||||
).apply {
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M6.64418 2.14284C6.83946 1.9481 7.15611 1.94781 7.35121 2.14284L10.8522 5.64381C11.0469 5.83894 11.0468 6.15566 10.8522 6.35084L7.35121 9.85182C7.15605 10.0468 6.8394 10.0467 6.64418 9.85182C6.44912 9.65662 6.44917 9.34002 6.64418 9.14479L9.29164 6.49733H1.50063C1.22468 6.49733 1.00095 6.27319 1.00063 5.99733C1.00093 5.72145 1.22467 5.49733 1.50063 5.49733H9.29164L6.64418 2.84987C6.4491 2.65471 6.44928 2.3381 6.64418 2.14284Z"),
|
||||
)
|
||||
}.build()
|
||||
return _ic_arrow_right_12!!
|
||||
}
|
||||
|
||||
@Composable
|
||||
@Preview(showBackground = true)
|
||||
private fun IcArrowRight12Preview() {
|
||||
Icon(
|
||||
imageVector = Icons.ic_arrow_right_12,
|
||||
contentDescription = null,
|
||||
)
|
||||
}
|
||||
|
|
@ -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_arrow_right_16: ImageVector? = null
|
||||
|
||||
val Icons.ic_arrow_right_16: ImageVector
|
||||
get() {
|
||||
if (_ic_arrow_right_16 != null) return _ic_arrow_right_16!!
|
||||
_ic_arrow_right_16 = ImageVector.Builder(
|
||||
name = "ic_arrow_right_16",
|
||||
defaultWidth = 16.dp,
|
||||
defaultHeight = 16.dp,
|
||||
viewportWidth = 16f,
|
||||
viewportHeight = 16f,
|
||||
).apply {
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M8.74725 3.18508C8.99129 2.94166 9.38713 2.94146 9.63104 3.18508L14.0041 7.55813C14.2476 7.80203 14.2474 8.19791 14.0041 8.44192L9.63104 12.815C9.38704 13.0585 8.9912 13.0586 8.74725 12.815C8.50336 12.571 8.50343 12.1743 8.74725 11.9302L12.0529 8.62453H2.50018C2.15518 8.62443 1.87532 8.34453 1.87518 7.99953C1.87567 7.65483 2.15539 7.37464 2.50018 7.37453H12.0519L8.74725 4.06887C8.50352 3.82484 8.50348 3.42909 8.74725 3.18508Z"),
|
||||
)
|
||||
}.build()
|
||||
return _ic_arrow_right_16!!
|
||||
}
|
||||
|
||||
@Composable
|
||||
@Preview(showBackground = true)
|
||||
private fun IcArrowRight16Preview() {
|
||||
Icon(
|
||||
imageVector = Icons.ic_arrow_right_16,
|
||||
contentDescription = null,
|
||||
)
|
||||
}
|
||||
|
|
@ -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_arrow_right_20: ImageVector? = null
|
||||
|
||||
val Icons.ic_arrow_right_20: ImageVector
|
||||
get() {
|
||||
if (_ic_arrow_right_20 != null) return _ic_arrow_right_20!!
|
||||
_ic_arrow_right_20 = ImageVector.Builder(
|
||||
name = "ic_arrow_right_20",
|
||||
defaultWidth = 20.dp,
|
||||
defaultHeight = 20.dp,
|
||||
viewportWidth = 20f,
|
||||
viewportHeight = 20f,
|
||||
).apply {
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M10.4874 3.21724C10.7802 2.92513 11.2553 2.925 11.548 3.21724L17.799 9.46822C18.0916 9.76094 18.0913 10.2368 17.799 10.5297L11.548 16.7807C11.2551 17.0735 10.7803 17.0734 10.4874 16.7807C10.195 16.4878 10.1947 16.0129 10.4874 15.7202L15.4581 10.7485H2.75012C2.336 10.7484 2.00012 10.4126 2.00012 9.99849C2.00087 9.58499 2.33647 9.24861 2.75012 9.24849H15.4572L10.4874 4.27779C10.195 3.98486 10.1947 3.50999 10.4874 3.21724Z"),
|
||||
)
|
||||
}.build()
|
||||
return _ic_arrow_right_20!!
|
||||
}
|
||||
|
||||
@Composable
|
||||
@Preview(showBackground = true)
|
||||
private fun IcArrowRight20Preview() {
|
||||
Icon(
|
||||
imageVector = Icons.ic_arrow_right_20,
|
||||
contentDescription = null,
|
||||
)
|
||||
}
|
||||
|
|
@ -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_arrow_right_24: ImageVector? = null
|
||||
|
||||
val Icons.ic_arrow_right_24: ImageVector
|
||||
get() {
|
||||
if (_ic_arrow_right_24 != null) return _ic_arrow_right_24!!
|
||||
_ic_arrow_right_24 = ImageVector.Builder(
|
||||
name = "ic_arrow_right_24",
|
||||
defaultWidth = 24.dp,
|
||||
defaultHeight = 24.dp,
|
||||
viewportWidth = 24f,
|
||||
viewportHeight = 24f,
|
||||
).apply {
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M13.2929 4.29263C13.6833 3.9029 14.3166 3.90283 14.7069 4.29263L21.706 11.2916C21.8932 11.4789 21.9987 11.7339 21.9989 11.9987C21.9989 12.2636 21.8931 12.5183 21.706 12.7057L14.7069 19.7047C14.3165 20.0951 13.6834 20.0951 13.2929 19.7047C12.9029 19.3142 12.9027 18.681 13.2929 18.2907L18.5849 12.9987H2.99991C2.44775 12.9986 1.99994 12.5509 1.99991 11.9987C2.00043 11.4469 2.44805 10.9988 2.99991 10.9987H18.5849L13.2929 5.70669C12.9029 5.31616 12.9027 4.68299 13.2929 4.29263Z"),
|
||||
)
|
||||
}.build()
|
||||
return _ic_arrow_right_24!!
|
||||
}
|
||||
|
||||
@Composable
|
||||
@Preview(showBackground = true)
|
||||
private fun IcArrowRight24Preview() {
|
||||
Icon(
|
||||
imageVector = Icons.ic_arrow_right_24,
|
||||
contentDescription = null,
|
||||
)
|
||||
}
|
||||
|
|
@ -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_arrow_right_28: ImageVector? = null
|
||||
|
||||
val Icons.ic_arrow_right_28: ImageVector
|
||||
get() {
|
||||
if (_ic_arrow_right_28 != null) return _ic_arrow_right_28!!
|
||||
_ic_arrow_right_28 = ImageVector.Builder(
|
||||
name = "ic_arrow_right_28",
|
||||
defaultWidth = 28.dp,
|
||||
defaultHeight = 28.dp,
|
||||
viewportWidth = 28f,
|
||||
viewportHeight = 28f,
|
||||
).apply {
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M14.9832 4.36926C15.4679 3.87819 16.2593 3.87231 16.7508 4.35657L25.6278 13.1075C25.8658 13.3423 25.9997 13.6638 25.9998 13.9982C25.9997 14.3322 25.8655 14.6531 25.6278 14.8878L16.7508 23.6398C16.2593 24.1238 15.4678 24.1182 14.9832 23.6271C14.499 23.1356 14.5048 22.3431 14.9959 21.8585L21.701 15.2482H3.24985C2.5599 15.2479 2.00017 14.6881 1.99985 13.9982C2.00016 13.3082 2.5599 12.7484 3.24985 12.7482H21.702L14.9959 6.13684C14.5048 5.6523 14.4991 4.86082 14.9832 4.36926Z"),
|
||||
)
|
||||
}.build()
|
||||
return _ic_arrow_right_28!!
|
||||
}
|
||||
|
||||
@Composable
|
||||
@Preview(showBackground = true)
|
||||
private fun IcArrowRight28Preview() {
|
||||
Icon(
|
||||
imageVector = Icons.ic_arrow_right_28,
|
||||
contentDescription = null,
|
||||
)
|
||||
}
|
||||
|
|
@ -31,12 +31,12 @@ val Icons.ic_arrow_swap_horizontal_12: ImageVector
|
|||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M10.5 5.5C10.7761 5.5 11 5.72386 11 6C10.9999 8.18874 9.37753 9.75 7.25 9.75H2.61035C2.70332 9.82714 2.78927 9.90003 2.8623 9.95703C2.91927 10.0015 2.98043 10.0639 3.0459 10.0967C3.2682 10.2604 3.31608 10.5745 3.15234 10.7969C3.00907 10.991 2.7519 11.0514 2.54102 10.9541L2.45312 10.9023L2.39453 10.8584C2.28672 10.777 2.04429 10.5908 1.79688 10.376C1.63446 10.235 1.45893 10.0719 1.32031 9.91504C1.25161 9.83725 1.18177 9.74877 1.12598 9.65625C1.07837 9.57728 1.00003 9.43037 1 9.25C1.00001 8.78513 1.48359 8.39606 1.79688 8.12402C2.04428 7.90921 2.28669 7.72306 2.39453 7.6416L2.45312 7.59765C2.67535 7.43398 2.98852 7.48108 3.15234 7.70312C3.31603 7.92547 3.26822 8.23958 3.0459 8.40332C2.98043 8.43605 2.91927 8.49851 2.8623 8.54297C2.78925 8.59998 2.70334 8.67284 2.61035 8.75H7.25C8.83566 8.75 9.99994 7.6261 10 6C10 5.72386 10.2239 5.5 10.5 5.5Z"),
|
||||
pathData = addPathNodes("M10 5.50004C10.2761 5.50009 10.5 5.72393 10.5 6.00004C10.4999 7.97667 9.03239 9.38859 7.11133 9.38871H3.14258C3.17968 9.41851 3.2133 9.44786 3.24512 9.47269C3.29449 9.51123 3.33569 9.54291 3.36426 9.56449C3.37832 9.57511 3.39012 9.58343 3.39746 9.5889C3.40102 9.59155 3.40356 9.59441 3.40527 9.59574L3.40723 9.59671C3.62953 9.76043 3.67729 10.0736 3.51367 10.2959C3.37035 10.4905 3.1125 10.5518 2.90137 10.4541L2.81445 10.4024L2.81348 10.4014C2.81281 10.4009 2.81152 10.4002 2.81055 10.3994C2.80809 10.3976 2.80409 10.3948 2.7998 10.3916C2.79087 10.385 2.77772 10.3744 2.76172 10.3623C2.72962 10.3381 2.68391 10.3039 2.62988 10.2618C2.52156 10.1772 2.37507 10.0598 2.22754 9.93168C2.08245 9.80569 1.92445 9.65881 1.79883 9.51664C1.73656 9.44615 1.67118 9.36467 1.61914 9.27836C1.58631 9.22384 1.53602 9.13061 1.5127 9.01371L1.5 8.88871L1.5127 8.76371C1.53605 8.64638 1.58629 8.55258 1.61914 8.49808C1.67121 8.41177 1.73656 8.33027 1.79883 8.2598C1.9244 8.11773 2.08255 7.97163 2.22754 7.84574C2.37514 7.71758 2.52154 7.60021 2.62988 7.51566C2.68422 7.47326 2.72956 7.43839 2.76172 7.4141C2.77779 7.40196 2.79087 7.39244 2.7998 7.38578C2.80426 7.38246 2.80807 7.3798 2.81055 7.37796C2.81169 7.37712 2.8128 7.37651 2.81348 7.37601L2.81445 7.37504C3.03666 7.21141 3.34984 7.25852 3.51367 7.4805C3.67742 7.70284 3.62955 8.01596 3.40723 8.17972C3.40688 8.17998 3.40612 8.18104 3.40527 8.18168C3.40356 8.18295 3.40093 8.18495 3.39746 8.18754C3.39013 8.193 3.37852 8.20117 3.36426 8.21195C3.33571 8.23351 3.29464 8.2651 3.24512 8.30375C3.21302 8.32879 3.1791 8.35858 3.1416 8.38871H7.11133C8.49051 8.38859 9.49991 7.41403 9.5 6.00004C9.5 5.72389 9.72386 5.50004 10 5.50004Z"),
|
||||
)
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M8.84766 1.20312C9.01149 0.981078 9.32465 0.933983 9.54688 1.09765L9.60547 1.1416C9.71331 1.22306 9.95572 1.40921 10.2031 1.62402C10.3655 1.76505 10.5411 1.92809 10.6797 2.08496C10.7484 2.16275 10.8182 2.25123 10.874 2.34375C10.9216 2.42275 11 2.56965 11 2.75C10.9999 3.2149 10.5165 3.6039 10.2031 3.87597C9.95571 4.09078 9.71328 4.27696 9.60547 4.3584L9.54688 4.40234C9.32468 4.56593 9.01149 4.51882 8.84766 4.29687C8.68392 4.07454 8.7318 3.76044 8.9541 3.59668C9.01957 3.56394 9.08073 3.50148 9.1377 3.45703C9.21073 3.40003 9.29668 3.32714 9.38965 3.25H4.75C3.1643 3.25 2 4.37383 2 6C1.99993 6.27608 1.7761 6.5 1.5 6.5C1.2239 6.5 1.00007 6.27608 1 6C1 3.8112 2.62242 2.25 4.75 2.25H9.38965C9.29666 2.17284 9.21075 2.09998 9.1377 2.04297C9.08073 1.99851 9.01957 1.93605 8.9541 1.90332C8.73178 1.73958 8.68397 1.42547 8.84766 1.20312Z"),
|
||||
pathData = addPathNodes("M8.48633 1.70316C8.65014 1.48113 8.96332 1.43406 9.18555 1.59769L9.18652 1.59867C9.18722 1.59918 9.1883 1.59977 9.18945 1.60062C9.19193 1.60245 9.19575 1.60512 9.2002 1.60843C9.20906 1.61504 9.22149 1.62481 9.2373 1.63675C9.26947 1.66105 9.3157 1.69585 9.37012 1.73832C9.47844 1.82286 9.62492 1.94029 9.77246 2.06839C9.91746 2.19431 10.0756 2.34038 10.2012 2.48246C10.2634 2.55287 10.3278 2.63451 10.3799 2.72074C10.4237 2.79342 10.5 2.93552 10.5 3.11136C10.4999 3.28706 10.4237 3.42837 10.3799 3.50101C10.3279 3.58726 10.2634 3.66886 10.2012 3.73929C10.0756 3.88145 9.91753 4.02838 9.77246 4.15433C9.62489 4.28246 9.47844 4.39988 9.37012 4.48441C9.31577 4.52682 9.26943 4.56073 9.2373 4.585C9.22131 4.59709 9.2091 4.60766 9.2002 4.61429C9.1958 4.61756 9.1919 4.62029 9.18945 4.62211C9.18837 4.62289 9.18717 4.62358 9.18652 4.62406L9.18555 4.62504C8.96322 4.78865 8.65006 4.74085 8.48633 4.51859C8.32262 4.29629 8.37055 3.98315 8.59277 3.81937L8.59473 3.81839C8.59643 3.81713 8.59905 3.81418 8.60254 3.81156C8.60985 3.80611 8.62078 3.79771 8.63477 3.78714C8.66333 3.76557 8.70522 3.7341 8.75488 3.69535C8.78665 3.67055 8.82036 3.64113 8.85742 3.61136H4.88867C3.50948 3.61148 2.50007 4.58602 2.5 6.00004C2.49982 6.27602 2.27603 6.50004 2 6.50004C1.72402 6.49998 1.50018 6.27599 1.5 6.00004C1.50007 4.02338 2.9676 2.61148 4.88867 2.61136H8.8584C8.82091 2.58124 8.78698 2.55145 8.75488 2.5264C8.70518 2.48761 8.66335 2.45619 8.63477 2.43461C8.6207 2.42398 8.60982 2.41562 8.60254 2.41019C8.59916 2.40767 8.59645 2.40561 8.59473 2.40433C8.59389 2.4037 8.59312 2.40263 8.59277 2.40238C8.37051 2.23864 8.3227 1.92548 8.48633 1.70316Z"),
|
||||
)
|
||||
}.build()
|
||||
return _ic_arrow_swap_horizontal_12!!
|
||||
|
|
|
|||
|
|
@ -31,12 +31,12 @@ val Icons.ic_arrow_swap_horizontal_16: ImageVector
|
|||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M14.5038 7.50422C14.7798 7.50444 15.0038 7.72822 15.0038 8.00422C15.0037 11.0405 12.7618 13.1984 9.80948 13.1986H2.51163C2.58365 13.2652 2.658 13.3346 2.73526 13.4017C3.01657 13.6459 3.3084 13.8774 3.60635 14.1009C3.82835 14.2646 3.87617 14.5779 3.7128 14.8001C3.5517 15.0188 3.22177 15.0713 3.00772 14.9017C2.68924 14.6658 2.37925 14.4174 2.07999 14.1575C1.84813 13.9562 1.60275 13.7279 1.41202 13.512C1.31737 13.4049 1.22518 13.2888 1.15421 13.1712C1.10709 13.0931 1.04672 12.9776 1.01944 12.8411L1.00479 12.6986L1.01944 12.555C1.04678 12.4189 1.10716 12.3039 1.15421 12.2259C1.22525 12.1081 1.31723 11.9914 1.41202 11.8841C1.60273 11.6683 1.84818 11.4408 2.07999 11.2396C2.37597 10.9826 2.73594 10.7672 3.0126 10.4905C3.23486 10.3271 3.54905 10.3739 3.7128 10.596C4.12667 11.1585 3.02979 11.7387 2.73526 11.9945C2.65746 12.062 2.58217 12.1314 2.50967 12.1986H9.80948C12.2199 12.1984 14.0037 10.4779 14.0038 8.00422C14.0038 7.72809 14.2277 7.50422 14.5038 7.50422Z"),
|
||||
pathData = addPathNodes("M12.8707 7.37361C13.2157 7.37372 13.4956 7.65363 13.4957 7.99861C13.4957 10.4151 11.7006 12.1421 9.35217 12.1422H4.56311C4.59562 12.168 4.62521 12.194 4.65393 12.2164C4.71423 12.2634 4.76473 12.3015 4.79944 12.3277C4.81669 12.3407 4.83058 12.3513 4.83948 12.358C4.84361 12.3611 4.84721 12.3633 4.84924 12.3648L4.8512 12.3668L4.94495 12.4517C5.13976 12.6675 5.16297 12.9976 4.98401 13.2408C4.77931 13.5186 4.38788 13.5782 4.10999 13.3736L4.10803 13.3717C4.10729 13.3711 4.10617 13.3705 4.1051 13.3697C4.10212 13.3675 4.09768 13.3639 4.09241 13.3599C4.08149 13.3518 4.0651 13.3396 4.04553 13.3248C4.00632 13.2952 3.95045 13.2533 3.8844 13.2017C3.75233 13.0987 3.57412 12.9556 3.39417 12.7994C3.21725 12.6458 3.02442 12.4665 2.87073 12.2926C2.79453 12.2063 2.71413 12.1059 2.65002 11.9996C2.60287 11.9213 2.52507 11.7772 2.50647 11.5963L2.50256 11.5172L2.50647 11.4371C2.52522 11.2561 2.60295 11.1119 2.65002 11.0338C2.71414 10.9275 2.79455 10.827 2.87073 10.7408C3.02432 10.567 3.21743 10.3884 3.39417 10.2349C3.57398 10.0788 3.75239 9.93562 3.8844 9.83259C3.95053 9.78099 4.00634 9.73817 4.04553 9.70857C4.06509 9.6938 4.08153 9.68152 4.09241 9.67341C4.0976 9.66956 4.10217 9.66679 4.1051 9.66462C4.10634 9.66365 4.10722 9.66229 4.10803 9.6617L4.10999 9.66072C4.38775 9.45629 4.77926 9.51508 4.98401 9.79255C5.18865 10.0704 5.12896 10.4618 4.8512 10.6666L4.84924 10.6685C4.84721 10.67 4.84377 10.6731 4.83948 10.6763C4.83064 10.6829 4.81662 10.6927 4.79944 10.7056C4.76471 10.7319 4.71434 10.7708 4.65393 10.8179C4.62525 10.8403 4.59558 10.8664 4.56311 10.8922H9.35217C11.0233 10.8921 12.2457 9.71179 12.2457 7.99861C12.2459 7.65357 12.5256 7.37361 12.8707 7.37361Z"),
|
||||
)
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M12.2958 1.20735C12.4792 0.958959 12.7528 0.98075 12.997 1.10285C13.3075 1.35229 13.6272 1.58922 13.9286 1.8509C14.1605 2.05225 14.4059 2.27956 14.5966 2.49543C14.6914 2.60277 14.7833 2.71937 14.8544 2.83723C14.9172 2.94141 15.0038 3.11122 15.0038 3.30988C15.0038 3.50848 14.9172 3.67838 14.8544 3.78254C14.7834 3.90019 14.6912 4.01619 14.5966 4.12336C14.4059 4.33923 14.1605 4.56752 13.9286 4.76887C13.6944 4.97226 13.4614 5.15895 13.288 5.29426C13.1919 5.36928 13.0916 5.44026 12.997 5.51692C12.7247 5.51692 12.5298 5.72903 12.2958 5.41145C12.1321 5.18912 12.179 4.87598 12.4013 4.71223C12.7002 4.48979 12.9919 4.25737 13.2733 4.01301C13.3507 3.94586 13.4249 3.87662 13.497 3.80988H6.19913C3.78848 3.80988 2.00479 5.53034 2.00479 8.00422C2.0047 8.28016 1.7807 8.50401 1.50479 8.50422C1.2287 8.50422 1.00488 8.28029 1.00479 8.00422C1.00479 4.96775 3.24656 2.80988 6.19913 2.80988H13.4989C13.4264 2.74268 13.3512 2.67341 13.2733 2.60578C13.0565 2.41748 12.8378 2.24241 12.6728 2.1136C12.586 2.04586 12.4794 1.98464 12.4013 1.90656C12.1792 1.74273 12.1321 1.42957 12.2958 1.20735Z"),
|
||||
pathData = addPathNodes("M11.0143 2.75642C11.2191 2.47888 11.6105 2.42002 11.8883 2.62459L11.8893 2.62556C11.8902 2.62621 11.8917 2.62737 11.8932 2.62849C11.8962 2.6307 11.9006 2.63338 11.9059 2.63728C11.9168 2.6454 11.9322 2.65766 11.9518 2.67244C11.991 2.70207 12.0465 2.74467 12.1129 2.79646C12.245 2.89953 12.4231 3.0425 12.6031 3.1988C12.7801 3.35243 12.9738 3.53069 13.1276 3.70466C13.2038 3.79095 13.2832 3.89124 13.3473 3.99763C13.4011 4.08687 13.4957 4.26241 13.4957 4.48103C13.4956 4.69928 13.4011 4.8742 13.3473 4.96345C13.2832 5.06976 13.2037 5.1702 13.1276 5.25642C12.9738 5.43038 12.7801 5.60965 12.6031 5.76326C12.4233 5.91943 12.2449 6.06261 12.1129 6.1656C12.0467 6.21724 11.9909 6.25907 11.9518 6.28865C11.9322 6.30344 11.9168 6.31569 11.9059 6.3238C11.9005 6.32782 11.8962 6.33134 11.8932 6.33357C11.8918 6.33457 11.8901 6.33491 11.8893 6.33552L11.8883 6.3365C11.6105 6.54102 11.219 6.48233 11.0143 6.20466C10.8096 5.92676 10.8693 5.53535 11.1471 5.33064C11.1475 5.33034 11.1481 5.32943 11.149 5.32869C11.1511 5.32719 11.1546 5.32501 11.1588 5.32185C11.1677 5.31523 11.1815 5.30465 11.1989 5.29158C11.2336 5.26535 11.284 5.22733 11.3444 5.18025C11.3729 5.15799 11.402 5.13172 11.4342 5.10603H6.64612C4.97486 5.10603 3.75256 6.28631 3.75256 7.99959C3.75217 8.34442 3.47248 8.62456 3.12756 8.62459C2.78263 8.62459 2.50295 8.34443 2.50256 7.99959C2.50256 5.583 4.29754 3.85603 6.64612 3.85603H11.4352C11.4027 3.83019 11.3731 3.80424 11.3444 3.78181C11.2839 3.73462 11.2336 3.69576 11.1989 3.66951C11.1815 3.65643 11.1677 3.64685 11.1588 3.64021C11.1544 3.6369 11.1511 3.63394 11.149 3.6324L11.1471 3.63142C10.8692 3.42675 10.8097 3.03434 11.0143 2.75642Z"),
|
||||
)
|
||||
}.build()
|
||||
return _ic_arrow_swap_horizontal_16!!
|
||||
|
|
|
|||
|
|
@ -31,12 +31,12 @@ val Icons.ic_arrow_swap_horizontal_20: ImageVector
|
|||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M17.2486 9.25041C17.6626 9.25059 17.9986 9.58634 17.9986 10.0004C17.9984 13.4943 15.4106 15.9844 12.0142 15.9848H4.38239C4.64562 16.2075 4.91445 16.4234 5.19098 16.6293C5.5247 16.878 5.62195 17.3488 5.36871 17.6928C5.13841 18.0054 4.71159 18.0873 4.38434 17.894L4.31989 17.852C4.00747 17.5396 3.60039 17.2964 3.26617 17.0063C3.00544 16.7799 2.72524 16.5198 2.50446 16.2699C2.39484 16.1459 2.28339 16.0059 2.19586 15.8608C2.13005 15.7516 2.03019 15.5645 2.00641 15.3354L2.00153 15.2348L2.00641 15.1342C2.03017 14.9049 2.13004 14.718 2.19586 14.6088C2.28347 14.4635 2.39475 14.3238 2.50446 14.1996C2.72541 13.9496 3.00522 13.6889 3.26617 13.4623C3.59999 13.1725 4.00686 12.9296 4.31891 12.6176C4.65232 12.3721 5.12302 12.4435 5.36871 12.7768C5.61412 13.1102 5.54289 13.579 5.20953 13.8246C4.96546 14.0687 4.64515 14.2617 4.38141 14.4848H12.0142C14.5978 14.4844 16.4984 12.6503 16.4986 10.0004C16.4986 9.58623 16.8344 9.25041 17.2486 9.25041Z"),
|
||||
pathData = addPathNodes("M16.7457 9.24631C17.1599 9.24631 17.4957 9.5821 17.4957 9.99631C17.4955 13.2795 15.062 15.6213 11.8707 15.6213H4.90485C5.04583 15.7382 5.17904 15.8456 5.28961 15.9319C5.37369 15.9975 5.44327 16.0515 5.49176 16.0881C5.51566 16.1062 5.53492 16.1198 5.54742 16.1291C5.55362 16.1337 5.55912 16.1377 5.56207 16.1399C5.56327 16.1407 5.56442 16.1414 5.565 16.1418L5.56598 16.1428C5.89901 16.3885 5.96968 16.8583 5.72418 17.1916C5.47861 17.5246 5.00968 17.5958 4.67633 17.3508L4.67535 17.3498L4.6734 17.3489C4.67228 17.348 4.67039 17.3463 4.66852 17.3449C4.66451 17.342 4.65894 17.3375 4.65192 17.3322C4.63702 17.3212 4.61532 17.3047 4.58844 17.2844C4.53459 17.2437 4.45795 17.1856 4.36676 17.1145C4.18473 16.9724 3.93841 16.7756 3.69098 16.5608C3.44733 16.3492 3.18409 16.1047 2.97614 15.8694C2.873 15.7526 2.76789 15.6196 2.68414 15.4807C2.61272 15.3622 2.4957 15.1417 2.49567 14.8713C2.49571 14.6008 2.61273 14.3804 2.68414 14.2619C2.76794 14.1229 2.87292 13.9901 2.97614 13.8733C3.18415 13.6378 3.44725 13.3935 3.69098 13.1819C3.9384 12.967 4.18374 12.7702 4.36578 12.6281C4.45719 12.5568 4.53449 12.499 4.58844 12.4582C4.61519 12.438 4.63606 12.4215 4.65094 12.4104C4.65824 12.4049 4.66442 12.4007 4.66852 12.3977C4.67051 12.3962 4.67224 12.3946 4.6734 12.3938L4.67535 12.3928C5.00886 12.1473 5.47858 12.2185 5.72418 12.552C5.96945 12.8853 5.89892 13.3541 5.56598 13.5998L5.565 13.6008C5.56442 13.6012 5.56335 13.6018 5.56207 13.6028C5.5591 13.605 5.55367 13.6088 5.54742 13.6135C5.5349 13.6228 5.51578 13.6373 5.49176 13.6555C5.44329 13.6921 5.37349 13.7453 5.28961 13.8108C5.17903 13.8971 5.04588 14.0043 4.90485 14.1213H11.8707C14.2491 14.1213 15.9955 12.4356 15.9957 9.99631C15.9957 9.58211 16.3315 9.24633 16.7457 9.24631Z"),
|
||||
)
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M14.6314 2.30705C14.931 1.90064 15.293 2.0191 15.6822 2.14885C16.0261 2.43744 16.3931 2.69754 16.733 2.9926C16.994 3.2192 17.2747 3.47982 17.4957 3.7299C17.6054 3.85404 17.7167 3.99383 17.8043 4.13908C17.8794 4.26384 17.9985 4.49026 17.9986 4.76506C17.9985 5.03992 17.8795 5.26625 17.8043 5.39103C17.7167 5.53626 17.6053 5.67609 17.4957 5.80021C17.2748 6.05019 16.9939 6.31001 16.733 6.53654C16.3358 6.88138 15.9458 7.18139 15.773 7.31193C15.743 7.33459 15.706 7.35553 15.6793 7.38225C15.3458 7.62751 14.877 7.55625 14.6314 7.22307C14.3776 6.87826 14.475 6.40861 14.8091 6.15959C15.0856 5.95362 15.3546 5.7379 15.6177 5.51506H7.9859C5.40232 5.51539 3.5018 7.34953 3.50153 9.99943C3.50153 10.4136 3.16574 10.7494 2.75153 10.7494C2.33741 10.7493 2.00153 10.4136 2.00153 9.99943C2.00181 6.50557 4.58949 4.0154 7.9859 4.01506H15.6177C15.306 3.75105 15.008 3.51895 14.8697 3.41447C14.8435 3.39469 14.8168 3.37557 14.7906 3.35588C14.4572 3.11024 14.3859 2.64052 14.6314 2.30705Z"),
|
||||
pathData = addPathNodes("M14.2672 2.801C14.5128 2.4677 14.9816 2.39643 15.315 2.64182L15.3179 2.6428C15.3191 2.64365 15.3208 2.64523 15.3228 2.6467C15.3269 2.64973 15.3331 2.65398 15.3404 2.6594C15.3553 2.67048 15.3762 2.68707 15.4029 2.70725C15.4568 2.74799 15.5342 2.80586 15.6255 2.87717C15.8076 3.01924 16.053 3.21607 16.3004 3.43088C16.544 3.64248 16.8072 3.88689 17.0152 4.12229C17.1184 4.23907 17.2234 4.37202 17.3072 4.51096C17.3786 4.62939 17.4956 4.84988 17.4957 5.12034C17.4957 5.39069 17.3786 5.61114 17.3072 5.72971C17.2235 5.86861 17.1183 6.00161 17.0152 6.11838C16.8072 6.35374 16.544 6.59821 16.3004 6.80979C16.053 7.02454 15.8076 7.22143 15.6255 7.3635C15.5342 7.4348 15.4568 7.49267 15.4029 7.53342C15.3762 7.55358 15.3553 7.57016 15.3404 7.58127C15.3332 7.58663 15.3269 7.59094 15.3228 7.59397C15.3209 7.59536 15.3191 7.597 15.3179 7.59787L15.316 7.59885L15.315 7.59983C14.9816 7.84497 14.5128 7.77369 14.2672 7.44065C14.0218 7.10728 14.0922 6.6375 14.4254 6.39182L14.4263 6.39084C14.4269 6.39041 14.4281 6.38978 14.4293 6.38889C14.4323 6.38667 14.4377 6.38276 14.4439 6.37815C14.4564 6.36881 14.4757 6.35519 14.4996 6.33713C14.5481 6.30049 14.6176 6.24651 14.7017 6.18088C14.8123 6.09455 14.9454 5.98732 15.0865 5.87034H8.12067C5.74237 5.87037 3.99599 7.55626 3.99567 9.99534C3.99567 10.4095 3.6598 10.7452 3.24567 10.7453C2.83145 10.7453 2.49567 10.4095 2.49567 9.99534C2.496 6.71236 4.92948 4.37037 8.12067 4.37034H15.0865C14.9458 4.25344 14.8132 4.14602 14.7027 4.05979C14.6187 3.9942 14.5481 3.94119 14.4996 3.90452C14.4756 3.88639 14.4564 3.87185 14.4439 3.86252C14.4377 3.85789 14.4322 3.85397 14.4293 3.85178C14.428 3.85087 14.4269 3.85024 14.4263 3.84983L14.4254 3.84885C14.0924 3.60311 14.0218 3.13429 14.2672 2.801Z"),
|
||||
)
|
||||
}.build()
|
||||
return _ic_arrow_swap_horizontal_20!!
|
||||
|
|
|
|||
|
|
@ -31,12 +31,12 @@ val Icons.ic_arrow_swap_horizontal_24: ImageVector
|
|||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M21 11.0045C21.5523 11.0045 22 11.4522 22 12.0045C22 16.3821 18.7551 19.5045 14.5 19.5045H5.21191C5.49969 19.743 5.79278 19.9745 6.0918 20.1988C6.53636 20.5262 6.6328 21.1526 6.30566 21.5972C5.96497 22.0598 5.32136 22.1191 4.87402 21.7857C4.43528 21.4587 4.00784 21.1151 3.59473 20.7564C3.26986 20.4744 2.91892 20.1493 2.6416 19.8355C2.50393 19.6797 2.36275 19.5024 2.25098 19.317C2.15573 19.1589 2 18.8651 2 18.5045C2.00003 18.1439 2.15574 17.85 2.25098 17.692C2.36275 17.5066 2.50394 17.3292 2.6416 17.1734C2.91892 16.8596 3.26988 16.5346 3.59473 16.2525C4.00784 15.8938 4.43528 15.5502 4.87402 15.2232C4.88489 15.2151 4.8976 15.2084 4.90723 15.1988C5.35185 14.8717 5.97725 14.9672 6.30469 15.4117C6.63219 15.8564 6.53744 16.4826 6.09277 16.8101L6.0918 16.8092C5.79136 17.0311 5.4995 17.2661 5.21191 17.5045H14.5C17.6714 17.5045 20 15.2568 20 12.0045C20 11.4522 20.4477 11.0045 21 11.0045Z"),
|
||||
pathData = addPathNodes("M20.4955 10.9976C21.0478 10.9976 21.4955 11.4453 21.4955 11.9976C21.4953 16.1623 18.4059 19.1351 14.3578 19.1353H5.74261C5.87496 19.243 5.99883 19.3418 6.1059 19.4253C6.21181 19.5079 6.29979 19.5755 6.36078 19.6216C6.39118 19.6446 6.4154 19.6617 6.43109 19.6734C6.43892 19.6792 6.44496 19.6843 6.44867 19.687L6.45258 19.69C6.89726 20.0173 6.99272 20.6437 6.66547 21.0884C6.35855 21.5052 5.78936 21.6145 5.35297 21.3569L5.26703 21.3003L5.2641 21.2984C5.26268 21.2973 5.26057 21.2962 5.25824 21.2944C5.25301 21.2906 5.24522 21.2849 5.23578 21.2778C5.21688 21.2638 5.18975 21.243 5.1557 21.2173C5.08762 21.1659 4.99152 21.0923 4.8764 21.0025C4.64664 20.8232 4.33651 20.5746 4.02386 20.3032C3.71627 20.0363 3.38294 19.7273 3.11859 19.4282C2.98742 19.2798 2.85158 19.1102 2.74359 18.9312C2.65214 18.7795 2.49847 18.4906 2.49847 18.1343C2.49865 17.7783 2.65219 17.49 2.74359 17.3384C2.85158 17.1594 2.98745 16.9897 3.11859 16.8413C3.38296 16.5423 3.71627 16.2323 4.02386 15.9653C4.33618 15.6943 4.64582 15.4462 4.87543 15.2671C4.99055 15.1773 5.0876 15.1037 5.1557 15.0523C5.18962 15.0266 5.21692 15.0058 5.23578 14.9917C5.24515 14.9847 5.25305 14.979 5.25824 14.9751C5.2605 14.9735 5.2627 14.9722 5.2641 14.9712L5.26605 14.9692C5.26892 14.973 5.30307 15.0175 5.6889 15.5415L5.26703 14.9683C5.71173 14.6411 6.33809 14.7366 6.66547 15.1812C6.99271 15.6258 6.89711 16.2522 6.45258 16.5796L6.44867 16.5825C6.44503 16.5852 6.43871 16.5896 6.43109 16.5952C6.41543 16.6069 6.39116 16.625 6.36078 16.648C6.29983 16.694 6.21167 16.7617 6.1059 16.8442C5.99844 16.9281 5.87356 17.027 5.74066 17.1353H14.3578C17.3221 17.1351 19.4953 15.0369 19.4955 11.9976C19.4955 11.4454 19.9434 10.9977 20.4955 10.9976Z"),
|
||||
)
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M17.6953 2.41169C18.036 1.94929 18.6787 1.88996 19.126 2.22321C19.5647 2.55021 19.9922 2.89383 20.4053 3.25251C20.7301 3.53456 21.0811 3.85962 21.3584 4.17341C21.4961 4.32922 21.6373 4.50657 21.749 4.69196C21.8443 4.84998 22 5.14386 22 5.50446C22 5.86506 21.8443 6.15891 21.749 6.31696C21.6373 6.50237 21.4961 6.67971 21.3584 6.83552C21.0811 7.14932 20.7301 7.47436 20.4053 7.75642C20.0754 8.04283 19.7486 8.30528 19.5059 8.4947C19.3736 8.59794 19.212 8.69092 19.0928 8.81013C18.6481 9.13731 18.0218 9.04181 17.6943 8.59724C17.3672 8.15256 17.4627 7.52621 17.9072 7.1988C18.2219 7.01 18.5075 6.73711 18.7881 6.50446H9.5C6.32862 6.50446 4.00003 8.75217 4 12.0045C4 12.5567 3.55228 13.0045 3 13.0045C2.44772 13.0045 2 12.5567 2 12.0045C2.00004 7.6269 5.24487 4.50446 9.5 4.50446H18.7881C18.5017 4.26707 18.2111 4.0345 17.9121 3.81306C17.4729 3.48759 17.3691 2.85468 17.6953 2.41169Z"),
|
||||
pathData = addPathNodes("M17.3295 2.90577C17.6569 2.46114 18.2832 2.36568 18.728 2.69288L18.7309 2.69581C18.7323 2.69683 18.7345 2.69804 18.7368 2.69972C18.742 2.70359 18.7498 2.70934 18.7592 2.71632C18.7781 2.7304 18.8053 2.75119 18.8393 2.77687C18.9074 2.82832 19.0044 2.90184 19.1196 2.99171C19.3492 3.17086 19.6588 3.41888 19.9711 3.68995C20.2788 3.95699 20.613 4.26683 20.8774 4.56593C21.0085 4.71425 21.1435 4.88407 21.2514 5.063C21.3428 5.21463 21.4964 5.50286 21.4965 5.8589C21.4965 6.21521 21.3428 6.50414 21.2514 6.65577C21.1435 6.83475 21.0085 7.0045 20.8774 7.15284C20.613 7.45197 20.2788 7.7608 19.9711 8.02784C19.6586 8.29911 19.3493 8.54784 19.1196 8.72706C19.0043 8.81701 18.9074 8.89045 18.8393 8.94191C18.8052 8.96763 18.7781 8.98837 18.7592 9.00245C18.7498 9.00944 18.742 9.0152 18.7368 9.01905C18.7344 9.02077 18.7323 9.02193 18.7309 9.02296L18.7289 9.02491C18.2842 9.35232 17.657 9.25765 17.3295 8.813C17.0022 8.36825 17.0977 7.74198 17.5424 7.41456C17.5432 7.41398 17.5456 7.4129 17.5473 7.41163C17.551 7.40888 17.5562 7.40369 17.5639 7.39796C17.5796 7.38628 17.6038 7.36916 17.6342 7.3462C17.6952 7.30015 17.7832 7.23256 17.8891 7.14991C17.9966 7.06604 18.1214 6.96718 18.2543 6.8589H9.63617C6.67185 6.85903 4.49868 8.95717 4.49847 11.9966C4.49847 12.5488 4.0507 12.9965 3.49847 12.9966C2.94619 12.9966 2.49847 12.5489 2.49847 11.9966C2.49869 7.83185 5.58813 4.85903 9.63617 4.8589H18.2524C18.12 4.75115 17.9962 4.65239 17.8891 4.56886C17.7833 4.48628 17.6952 4.41862 17.6342 4.37257C17.6038 4.34963 17.5796 4.33153 17.5639 4.31984C17.5565 4.31433 17.551 4.30986 17.5473 4.30714C17.5457 4.30597 17.5442 4.30482 17.5434 4.30421C17.0987 3.97683 17.0023 3.3505 17.3295 2.90577Z"),
|
||||
)
|
||||
}.build()
|
||||
return _ic_arrow_swap_horizontal_24!!
|
||||
|
|
|
|||
|
|
@ -31,12 +31,12 @@ val Icons.ic_arrow_swap_horizontal_28: ImageVector
|
|||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M24.7474 12.7524C25.4377 12.7525 25.9974 13.3121 25.9974 14.0024C25.997 19.2619 22.0959 23.0158 16.9837 23.0161H6.04327C6.34685 23.2645 6.65476 23.5082 6.97003 23.7417C7.00663 23.7671 7.04005 23.7983 7.07452 23.8266C7.54368 24.2519 7.6241 24.9726 7.24054 25.4936C6.83126 26.049 6.04922 26.167 5.49347 25.7583C4.9236 25.4733 4.39161 24.9068 3.9212 24.4985C3.53236 24.161 3.11138 23.7696 2.77765 23.392C2.61218 23.2048 2.44089 22.9913 2.30499 22.7661C2.20416 22.5989 2.04466 22.3001 2.00616 21.9292L1.99738 21.7661L2.00616 21.603C2.04454 21.2318 2.2041 20.9334 2.30499 20.7661C2.44095 20.5406 2.61202 20.3265 2.77765 20.1391C3.11135 19.7616 3.53239 19.3712 3.9212 19.0337C4.42705 18.5946 4.95059 18.1738 5.48956 17.7758C6.02099 17.3469 6.84799 17.5056 7.24054 18.0385C7.6494 18.5943 7.53135 19.3773 6.97589 19.7866C6.65821 20.0211 6.34807 20.2662 6.0423 20.5161H16.9837C20.7412 20.5159 23.497 17.8553 23.4974 14.0024C23.4974 13.312 24.057 12.7524 24.7474 12.7524Z"),
|
||||
pathData = addPathNodes("M24.2441 12.7517C24.9345 12.7517 25.4941 13.3113 25.4941 14.0017C25.4939 19.0495 21.7491 22.6547 16.8438 22.655H6.5791C6.70293 22.7548 6.81889 22.8471 6.92188 22.9274C7.04931 23.0269 7.1552 23.1084 7.22852 23.1638C7.26498 23.1913 7.29372 23.2123 7.3125 23.2263C7.32174 23.2332 7.32859 23.2386 7.33301 23.2419C7.33517 23.2435 7.337 23.2451 7.33789 23.2458C7.89346 23.6552 8.01271 24.4381 7.60352 24.9938C7.21978 25.5147 6.50827 25.6517 5.96289 25.3298L5.85547 25.2585C5.85495 25.2581 5.85333 25.2572 5.85254 25.2565C5.85073 25.2552 5.84784 25.253 5.84473 25.2507C5.83846 25.246 5.82952 25.2395 5.81836 25.2311C5.79552 25.2141 5.76282 25.189 5.72168 25.1579C5.63937 25.0957 5.52211 25.0069 5.38281 24.8981C5.10561 24.6818 4.73184 24.382 4.35449 24.0544C3.983 23.7318 3.57848 23.3568 3.25781 22.9938C3.09888 22.8139 2.93379 22.6074 2.80176 22.3884C2.70422 22.2266 2.54669 21.933 2.50879 21.5661L2.5 21.405L2.50879 21.2438C2.54669 20.877 2.70422 20.5834 2.80176 20.4216C2.93376 20.2026 3.09891 19.996 3.25781 19.8161C3.57843 19.4532 3.98209 19.0781 4.35352 18.7556C4.73097 18.4278 5.10552 18.1283 5.38281 17.9118C5.52208 17.8031 5.63939 17.7132 5.72168 17.6511C5.76258 17.6202 5.79561 17.5958 5.81836 17.5788C5.82947 17.5705 5.83847 17.5639 5.84473 17.5593C5.84781 17.557 5.85075 17.5547 5.85254 17.5534L5.85547 17.5505C6.4113 17.1412 7.19414 17.2603 7.60352 17.8161C8.0128 18.3719 7.89351 19.1537 7.33789 19.5632C7.33701 19.5638 7.33513 19.5665 7.33301 19.5681C7.32859 19.5713 7.32167 19.5768 7.3125 19.5837C7.29372 19.5977 7.26496 19.6187 7.22852 19.6462C7.1552 19.7016 7.0493 19.7831 6.92188 19.8825C6.81891 19.9629 6.70289 20.0552 6.5791 20.155H16.8438C20.3935 20.1548 22.994 17.6438 22.9941 14.0017C22.9941 13.3114 23.5539 12.7518 24.2441 12.7517Z"),
|
||||
)
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M20.7542 2.51021C21.1635 1.95435 21.9464 1.83538 22.5023 2.24459C22.6445 2.38682 22.8384 2.49824 22.9964 2.62154C23.2868 2.84813 23.6785 3.16239 24.0735 3.50533C24.4625 3.84293 24.8843 4.23318 25.2181 4.6108C25.3836 4.79814 25.5538 5.01237 25.6898 5.23775C25.805 5.42891 25.9983 5.79119 25.9984 6.23775C25.9983 6.68425 25.805 7.04662 25.6898 7.23775C25.5539 7.46296 25.3835 7.67651 25.2181 7.86373C24.8843 8.24139 24.4625 8.63254 24.0735 8.97018C23.4801 9.48529 22.9005 9.93091 22.6429 10.1254L22.5062 10.228C21.9463 10.6178 21.168 10.5271 20.7542 9.96529C20.3449 9.40939 20.4649 8.62559 21.0208 8.21627C21.3376 7.98225 21.6468 7.73745 21.9515 7.48775H11.011C7.2533 7.48792 4.49754 10.1482 4.49738 14.0014C4.49728 14.6915 3.93745 15.2512 3.24738 15.2514C2.55708 15.2514 1.99747 14.6917 1.99738 14.0014C1.99754 8.74159 5.89861 4.98792 11.011 4.98775H21.9525C21.6489 4.73936 21.341 4.49564 21.0257 4.26217C20.4769 3.85506 20.3464 3.06423 20.7542 2.51021Z"),
|
||||
pathData = addPathNodes("M20.3916 3.00849C20.801 2.45311 21.584 2.33379 22.1396 2.74287L22.1406 2.74385C22.1413 2.7443 22.1427 2.74518 22.1436 2.7458C22.1453 2.74714 22.1475 2.74949 22.1504 2.75166C22.1567 2.75634 22.1664 2.76274 22.1777 2.77119C22.2006 2.7882 22.2335 2.81251 22.2744 2.84345C22.3567 2.90564 22.473 2.99549 22.6123 3.1042C22.8896 3.32065 23.2641 3.62011 23.6416 3.94795C24.0131 4.27054 24.4167 4.64555 24.7373 5.00849C24.8962 5.18841 25.0613 5.39498 25.1934 5.61396C25.3048 5.7988 25.496 6.15564 25.4961 6.59736C25.4961 7.03887 25.3048 7.39576 25.1934 7.58076C25.0614 7.79961 24.8962 8.00639 24.7373 8.18623C24.4167 8.54907 24.013 8.92424 23.6416 9.24678C23.2642 9.57449 22.8896 9.8741 22.6123 10.0905C22.4734 10.199 22.3567 10.2881 22.2744 10.3503C22.2335 10.3812 22.2006 10.4065 22.1777 10.4235C22.1666 10.4319 22.1567 10.4384 22.1504 10.4431C22.1476 10.4451 22.1452 10.4476 22.1436 10.4489L22.1406 10.4509C21.5848 10.8603 20.801 10.7421 20.3916 10.1862C19.9823 9.63039 20.1014 8.84757 20.6572 8.43818C20.658 8.43737 20.6604 8.43556 20.6621 8.43428C20.6666 8.43097 20.6745 8.42544 20.6836 8.41865C20.7024 8.4046 20.7314 8.38351 20.7676 8.35615C20.8409 8.30073 20.9469 8.21918 21.0742 8.11982C21.1771 8.03952 21.2924 7.94701 21.416 7.84736H11.1504C7.60071 7.84759 5.00029 10.3587 5 14.0007C5 14.6909 4.44024 15.2505 3.75 15.2507C3.05964 15.2507 2.5 14.691 2.5 14.0007C2.5003 8.95295 6.24511 5.34759 11.1504 5.34736H21.416C21.2924 5.24771 21.1771 5.15519 21.0742 5.0749C20.9468 4.97544 20.8409 4.894 20.7676 4.83857C20.7312 4.81111 20.7024 4.79012 20.6836 4.77607C20.6743 4.76913 20.6666 4.76374 20.6621 4.76045C20.6602 4.75903 20.6591 4.75727 20.6582 4.75654C20.1025 4.34718 19.9824 3.56432 20.3916 3.00849Z"),
|
||||
)
|
||||
}.build()
|
||||
return _ic_arrow_swap_horizontal_28!!
|
||||
|
|
|
|||
|
|
@ -31,7 +31,7 @@ val Icons.ic_arrow_up_12: ImageVector
|
|||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M5.5 10.25C5.5 10.5261 5.72386 10.75 6 10.75C6.27614 10.75 6.5 10.5261 6.5 10.25V3.20703L9.64648 6.35352C9.84175 6.54878 10.1583 6.54878 10.3535 6.35352C10.5488 6.15825 10.5488 5.84175 10.3535 5.64648L6.35352 1.64648C6.15825 1.45122 5.84175 1.45122 5.64648 1.64648L1.64648 5.64648C1.45122 5.84175 1.45122 6.15825 1.64648 6.35352C1.84175 6.54878 2.15825 6.54878 2.35352 6.35352L5.5 3.20703V10.25Z"),
|
||||
pathData = addPathNodes("M2.14681 5.35641C1.95207 5.16113 1.95178 4.84448 2.14681 4.64938L5.64779 1.14841C5.84291 0.953653 6.15963 0.953757 6.35482 1.14841L9.8558 4.64938C10.0507 4.84455 10.0506 5.16119 9.8558 5.35641C9.66059 5.55147 9.344 5.55142 9.14876 5.35641L6.5013 2.70895V10.5C6.5013 10.7759 6.27717 10.9996 6.0013 11C5.72542 10.9997 5.5013 10.7759 5.5013 10.5L5.5013 2.70895L2.85384 5.35641C2.65869 5.55149 2.34208 5.55131 2.14681 5.35641Z"),
|
||||
)
|
||||
}.build()
|
||||
return _ic_arrow_up_12!!
|
||||
|
|
|
|||
|
|
@ -31,7 +31,7 @@ val Icons.ic_arrow_up_16: ImageVector
|
|||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M7.49966 13.6667C7.49966 13.9427 7.72367 14.1665 7.99966 14.1667C8.27581 14.1667 8.49966 13.9428 8.49966 13.6667V3.87372L12.9801 8.35321C13.1754 8.54847 13.4919 8.54847 13.6872 8.35321C13.8821 8.15792 13.8823 7.84133 13.6872 7.64618L8.35318 2.31317C8.1579 2.11807 7.84136 2.11796 7.64615 2.31317L2.31314 7.64618C2.11793 7.84139 2.11804 8.15793 2.31314 8.35321C2.5084 8.54847 2.82491 8.54847 3.02017 8.35321L7.49966 3.87372V13.6667Z"),
|
||||
pathData = addPathNodes("M3.1851 7.25277C2.94168 7.00873 2.94149 6.61289 3.1851 6.36898L7.55815 1.99593C7.80205 1.75241 8.19793 1.75258 8.44194 1.99593L12.815 6.36898C13.0585 6.61298 13.0586 7.00881 12.815 7.25277C12.571 7.49666 12.1743 7.49659 11.9302 7.25277L8.62456 3.9471V13.4998C8.62445 13.8448 8.34455 14.1247 7.99956 14.1248C7.65486 14.1244 7.37466 13.8446 7.37456 13.4998V3.94808L4.06889 7.25277C3.82486 7.4965 3.42911 7.49654 3.1851 7.25277Z"),
|
||||
)
|
||||
}.build()
|
||||
return _ic_arrow_up_16!!
|
||||
|
|
|
|||
|
|
@ -31,7 +31,7 @@ val Icons.ic_arrow_up_20: ImageVector
|
|||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M9.25034 17.0833C9.25034 17.4975 9.58612 17.8333 10.0003 17.8333C10.4144 17.8331 10.7503 17.4974 10.7503 17.0833V5.14484L16.1361 10.5306C16.4289 10.8234 16.9037 10.8231 17.1966 10.5306C17.4895 10.2377 17.4895 9.76293 17.1966 9.47003L10.5306 2.80304C10.2378 2.5102 9.76297 2.51031 9.47006 2.80304L2.80307 9.47003C2.51034 9.76294 2.51023 10.2377 2.80307 10.5306C3.09592 10.8233 3.57076 10.8233 3.86362 10.5306L9.25034 5.14386V17.0833Z"),
|
||||
pathData = addPathNodes("M3.21926 9.51272C2.92715 9.21992 2.92701 8.74489 3.21926 8.45217L9.47023 2.2012C9.76296 1.90852 10.2388 1.90884 10.5318 2.2012L16.7827 8.45217C17.0756 8.745 17.0754 9.21981 16.7827 9.51272C16.4898 9.80518 16.0149 9.80547 15.7222 9.51272L10.7505 4.54202L10.7505 17.25C10.7504 17.6641 10.4147 18 10.0005 18C9.587 17.9993 9.25062 17.6637 9.25051 17.25L9.25051 4.54299L4.2798 9.51272C3.98687 9.80518 3.512 9.80547 3.21926 9.51272Z"),
|
||||
)
|
||||
}.build()
|
||||
return _ic_arrow_up_20!!
|
||||
|
|
|
|||
|
|
@ -31,7 +31,7 @@ val Icons.ic_arrow_up_24: ImageVector
|
|||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M11 20.5C11 21.0523 11.4477 21.5 12 21.5C12.5523 21.5 13 21.0523 13 20.5V6.41406L19.293 12.707C19.6835 13.0976 20.3165 13.0976 20.707 12.707C21.0976 12.3165 21.0976 11.6835 20.707 11.293L12.707 3.29297C12.3165 2.90244 11.6835 2.90244 11.293 3.29297L3.29297 11.293C2.90245 11.6835 2.90245 12.3165 3.29297 12.707C3.68349 13.0976 4.31651 13.0976 4.70703 12.707L11 6.41406V20.5Z"),
|
||||
pathData = addPathNodes("M19.7048 9.29199C20.0948 9.68237 20.0947 10.3156 19.7048 10.7061C19.3144 11.0963 18.6813 11.0961 18.2908 10.7061L12.9988 5.41406L12.9988 20.999C12.9986 21.5509 12.5506 21.9986 11.9988 21.999C11.4466 21.999 10.9989 21.5512 10.9988 20.999L10.9988 5.41406L5.70679 10.7061C5.31639 11.0963 4.68324 11.0961 4.29272 10.7061C3.9024 10.3156 3.90237 9.68248 4.29272 9.29199L11.2917 2.29297C11.4792 2.10579 11.7338 2.00001 11.9988 2C12.2637 2.00021 12.5185 2.1057 12.7058 2.29297L19.7048 9.29199Z"),
|
||||
)
|
||||
}.build()
|
||||
return _ic_arrow_up_24!!
|
||||
|
|
|
|||
|
|
@ -31,7 +31,7 @@ val Icons.ic_arrow_up_28: ImageVector
|
|||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M12.7497 23.9167C12.7497 24.6069 13.3095 25.1665 13.9997 25.1667C14.69 25.1667 15.2497 24.607 15.2497 23.9167V7.68427L22.4499 14.8835C22.938 15.3716 23.7293 15.3716 24.2174 14.8835C24.7053 14.3953 24.7055 13.604 24.2174 13.1159L14.8835 3.7829C14.3953 3.29491 13.604 3.2948 13.1159 3.7829L3.78287 13.1159C3.29477 13.604 3.29487 14.3953 3.78287 14.8835C4.27102 15.3716 5.06229 15.3716 5.55045 14.8835L12.7497 7.68427V23.9167Z"),
|
||||
pathData = addPathNodes("M23.6427 11.249C24.1271 11.7405 24.1212 12.532 23.63 13.0166C23.1384 13.5009 22.347 13.4952 21.8624 13.0039L15.2511 6.29785L15.2511 24.75C15.251 25.4401 14.6912 25.9998 14.0011 26C13.3111 25.9997 12.7512 25.4401 12.7511 24.75L12.7511 6.29883L6.14075 13.0039C5.65612 13.4952 4.86375 13.501 4.37219 13.0166C3.88106 12.532 3.87536 11.7406 4.3595 11.249L13.1114 2.37207C13.3462 2.13429 13.667 2.00016 14.0011 2C14.3355 2.00012 14.6569 2.13402 14.8917 2.37207L23.6427 11.249Z"),
|
||||
)
|
||||
}.build()
|
||||
return _ic_arrow_up_28!!
|
||||
|
|
|
|||
|
|
@ -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_bell_20: ImageVector? = null
|
||||
|
||||
val Icons.ic_bell_20: ImageVector
|
||||
get() {
|
||||
if (_ic_bell_20 != null) return _ic_bell_20!!
|
||||
_ic_bell_20 = ImageVector.Builder(
|
||||
name = "ic_bell_20",
|
||||
defaultWidth = 20.dp,
|
||||
defaultHeight = 20.dp,
|
||||
viewportWidth = 20f,
|
||||
viewportHeight = 20f,
|
||||
).apply {
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M10 2.93652C12.973 2.93675 15.4256 5.27508 15.4258 8.21094V10.9453L16.2607 11.752C16.7205 12.1978 16.9838 12.8084 16.9844 13.4492C16.9841 14.7413 15.9089 15.7479 14.6348 15.748H12.2832C12.2186 16.2767 12.0159 16.7844 11.6787 17.1904C11.2611 17.6931 10.661 18.01 9.99902 18.0098C9.33733 18.01 8.73779 17.6929 8.32031 17.1904C7.98308 16.7844 7.78058 16.2767 7.71582 15.748H5.36426C4.74898 15.7479 4.15428 15.511 3.71191 15.083C3.26883 14.6542 3.01476 14.0676 3.01465 13.4502C3.01525 12.8094 3.27849 12.1987 3.73828 11.7529L3.73926 11.752L4.57324 10.9453V8.21094C4.57346 5.27493 7.02678 2.93652 10 2.93652ZM9.23535 15.748C9.28339 15.9377 9.36736 16.1044 9.47363 16.2324C9.64032 16.433 9.83385 16.5106 9.99805 16.5107L9.99902 16.9961L10 16.5107C10.1644 16.5107 10.3576 16.4323 10.5244 16.2314C10.6307 16.1035 10.7156 15.9374 10.7637 15.748H9.23535ZM10 4.43652C7.80819 4.43652 6.07346 6.14961 6.07324 8.21094V11.2637C6.07324 11.4668 5.99072 11.6614 5.84473 11.8027L4.78125 12.8311C4.6295 12.9787 4.53991 13.1681 4.51953 13.3652L4.51465 13.4502C4.51476 13.6536 4.5982 13.8542 4.75488 14.0059C4.91243 14.1582 5.13125 14.2479 5.36426 14.248H14.6348C15.0969 14.2479 15.4395 13.9133 15.4805 13.5273L15.4844 13.4502C15.4841 13.223 15.3914 12.9999 15.2178 12.8311L14.1543 11.8027C14.0083 11.6615 13.9258 11.4668 13.9258 11.2637V8.21094C13.9256 6.14974 12.1916 4.43675 10 4.43652Z"),
|
||||
)
|
||||
}.build()
|
||||
return _ic_bell_20!!
|
||||
}
|
||||
|
||||
@Composable
|
||||
@Preview(showBackground = true)
|
||||
private fun IcBell20Preview() {
|
||||
Icon(
|
||||
imageVector = Icons.ic_bell_20,
|
||||
contentDescription = null,
|
||||
)
|
||||
}
|
||||
|
|
@ -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_bell_24: ImageVector? = null
|
||||
|
||||
val Icons.ic_bell_24: ImageVector
|
||||
get() {
|
||||
if (_ic_bell_24 != null) return _ic_bell_24!!
|
||||
_ic_bell_24 = ImageVector.Builder(
|
||||
name = "ic_bell_24",
|
||||
defaultWidth = 24.dp,
|
||||
defaultHeight = 24.dp,
|
||||
viewportWidth = 24f,
|
||||
viewportHeight = 24f,
|
||||
).apply {
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M12 1.99902C15.866 1.99917 18.9999 5.13314 19 8.99902V12.6318L20.0723 13.7031C20.666 14.2981 20.9993 15.1048 21 15.9453C20.9998 17.6313 19.6333 18.999 17.9473 18.999H14.9668C14.8834 19.6925 14.6261 20.361 14.1943 20.8984C13.6572 21.5668 12.875 22.0002 12 22C11.1254 22.0005 10.3438 21.5674 9.80664 20.8994C9.37441 20.3618 9.11566 19.6929 9.03223 18.999H6.05176C5.24226 18.9989 4.466 18.6769 3.89355 18.1045C3.32116 17.5321 2.99913 16.7558 2.99902 15.9463C2.99974 15.1058 3.334 14.2981 3.92773 13.7031L4.99902 12.6318V8.99902C4.99912 5.13311 8.13394 1.99911 12 1.99902ZM11.0576 18.999C11.12 19.254 11.229 19.477 11.3652 19.6465C11.5779 19.9108 11.8138 20.0011 11.999 20.001L12 20.6416L12.001 20.001C12.1864 20.0009 12.4221 19.9101 12.6348 19.6455C12.7708 19.4762 12.879 19.2536 12.9414 18.999H11.0576ZM12 3.99902C9.23833 3.99911 6.99912 6.23786 6.99902 8.99902V13.0469C6.99902 13.3121 6.89362 13.5664 6.70605 13.7539L5.3418 15.1172C5.14984 15.31 5.03163 15.5627 5.00488 15.8311L4.99902 15.9463C4.99913 16.2253 5.11032 16.4931 5.30762 16.6904C5.50497 16.8877 5.77266 16.9989 6.05176 16.999H17.9473C18.4926 16.999 18.9411 16.5845 18.9951 16.0537L19 15.9463C18.9996 15.6355 18.8766 15.3374 18.6572 15.1172L17.293 13.7539C17.1056 13.5664 17 13.3119 17 13.0469V8.99902C16.9999 6.2379 14.7616 3.99917 12 3.99902Z"),
|
||||
)
|
||||
}.build()
|
||||
return _ic_bell_24!!
|
||||
}
|
||||
|
||||
@Composable
|
||||
@Preview(showBackground = true)
|
||||
private fun IcBell24Preview() {
|
||||
Icon(
|
||||
imageVector = Icons.ic_bell_24,
|
||||
contentDescription = null,
|
||||
)
|
||||
}
|
||||
|
|
@ -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_bell_28: ImageVector? = null
|
||||
|
||||
val Icons.ic_bell_28: ImageVector
|
||||
get() {
|
||||
if (_ic_bell_28 != null) return _ic_bell_28!!
|
||||
_ic_bell_28 = ImageVector.Builder(
|
||||
name = "ic_bell_28",
|
||||
defaultWidth = 28.dp,
|
||||
defaultHeight = 28.dp,
|
||||
viewportWidth = 28f,
|
||||
viewportHeight = 28f,
|
||||
).apply {
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M14.0107 1.93945C18.7349 1.9396 22.6109 5.69589 22.6113 10.3848V14.7139L23.9062 15.9805L23.9072 15.9824C24.6419 16.7033 25.0606 17.6859 25.0615 18.7158C25.0614 20.7906 23.3499 22.4286 21.2959 22.4287H17.668C17.5583 23.2581 17.2355 24.0537 16.709 24.6953C16.0428 25.507 15.08 26.0269 14.0098 26.0264C12.9404 26.0267 11.9784 25.5073 11.3125 24.6963C10.7856 24.0545 10.463 23.2585 10.3535 22.4287H6.72559C5.73563 22.4286 4.78117 22.0436 4.07324 21.3506C3.36442 20.6566 2.96101 19.7099 2.96094 18.7168C2.96187 17.687 3.37971 16.7032 4.11426 15.9824L4.11621 15.9805L5.41113 14.7139V10.3848C5.41153 5.69589 9.28657 1.9396 14.0107 1.93945ZM12.9004 22.4287C12.9764 22.6953 13.0954 22.9292 13.2441 23.1104C13.4968 23.418 13.7808 23.5265 14.0098 23.5264C14.239 23.5265 14.5236 23.4173 14.7764 23.1094C14.925 22.9283 15.0448 22.695 15.1211 22.4287H12.9004ZM14.0107 4.43945C10.617 4.43959 7.91153 7.12635 7.91113 10.3848V15.2402C7.91102 15.5762 7.77524 15.8988 7.53516 16.1338L5.86426 17.7676C5.60306 18.0244 5.46132 18.367 5.46094 18.7178C5.46127 19.0301 5.58822 19.3353 5.82227 19.5645C6.05746 19.7946 6.38185 19.9286 6.72559 19.9287H21.2959C22.0191 19.9286 22.5608 19.3617 22.5615 18.7178L22.5547 18.5859C22.5235 18.2817 22.3853 17.9913 22.1562 17.7666L20.4873 16.1338C20.247 15.8987 20.1114 15.5763 20.1113 15.2402V10.3848C20.1109 7.12635 17.4045 4.4396 14.0107 4.43945Z"),
|
||||
)
|
||||
}.build()
|
||||
return _ic_bell_28!!
|
||||
}
|
||||
|
||||
@Composable
|
||||
@Preview(showBackground = true)
|
||||
private fun IcBell28Preview() {
|
||||
Icon(
|
||||
imageVector = Icons.ic_bell_28,
|
||||
contentDescription = null,
|
||||
)
|
||||
}
|
||||
|
|
@ -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_16: ImageVector? = null
|
||||
|
||||
val Icons.ic_binoculars_16: ImageVector
|
||||
get() {
|
||||
if (_ic_binoculars_16 != null) return _ic_binoculars_16!!
|
||||
_ic_binoculars_16 = ImageVector.Builder(
|
||||
name = "ic_binoculars_16",
|
||||
defaultWidth = 16.dp,
|
||||
defaultHeight = 16.dp,
|
||||
viewportWidth = 16f,
|
||||
viewportHeight = 16f,
|
||||
).apply {
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M11.3098 3C12.4041 2.99991 13.3878 3.71042 13.673 4.7666L14.8517 9.12207C14.9489 9.4116 15.0021 9.71899 15.0021 10.0361C15.002 11.2515 14.2373 12.3277 13.0978 12.7793C11.9618 13.2292 10.6505 12.9823 9.77264 12.1396C9.25299 11.6407 8.95822 11.0064 8.88592 10.3535H7.11639C7.08557 10.6333 7.01479 10.9125 6.89862 11.1816C6.41743 12.296 5.29383 13.0036 4.06854 13.0039C2.84301 13.0039 1.7188 12.2962 1.23749 11.1816C0.96398 10.548 0.931868 9.86125 1.11639 9.23145L2.32538 4.7666C2.61062 3.71043 3.59427 2.99986 4.68866 3C5.82805 3.00037 6.8141 3.76776 7.06659 4.83105H8.93182C9.18435 3.76767 10.1702 3.00021 11.3098 3ZM5.36151 8.83496C4.64998 8.1551 3.48724 8.15532 2.77557 8.83496C2.2609 9.32689 2.11299 10.0565 2.38495 10.6865C2.65921 11.3213 3.31782 11.7539 4.06854 11.7539C4.81898 11.7536 5.47699 11.3211 5.75116 10.6865C5.84681 10.4649 5.88978 10.2306 5.88397 9.99902H5.88104V9.93262C5.85436 9.52928 5.6775 9.13717 5.36151 8.83496ZM12.6379 8.45508C11.9478 8.1817 11.157 8.33688 10.6389 8.83398C9.94391 9.50125 9.9439 10.57 10.6389 11.2373C11.157 11.7346 11.9477 11.8906 12.6379 11.6172C13.3244 11.345 13.752 10.7139 13.7521 10.0361C13.7521 9.89577 13.7326 9.7576 13.6974 9.62402L13.6926 9.62598L13.6535 9.48438C13.4905 9.03322 13.1319 8.65095 12.6379 8.45508ZM7.13104 9.10352H8.86737V6.08105H7.13104V9.10352ZM4.68768 4.25C4.12579 4.25014 3.66195 4.61281 3.53241 5.09277L2.93963 7.28223C3.90342 6.91459 5.01956 7.03899 5.88104 7.65137V5.36621C5.88089 4.77496 5.37151 4.25042 4.68768 4.25ZM11.3098 4.25C10.6257 4.25024 10.1175 4.77485 10.1174 5.36621V7.64746C10.9608 7.04783 12.0712 6.90363 13.0568 7.27832L12.466 5.09375C12.3365 4.61377 11.8716 4.25019 11.3098 4.25Z"),
|
||||
)
|
||||
}.build()
|
||||
return _ic_binoculars_16!!
|
||||
}
|
||||
|
||||
@Composable
|
||||
@Preview(showBackground = true)
|
||||
private fun IcBinoculars16Preview() {
|
||||
Icon(
|
||||
imageVector = Icons.ic_binoculars_16,
|
||||
contentDescription = null,
|
||||
)
|
||||
}
|
||||
|
|
@ -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_20: ImageVector? = null
|
||||
|
||||
val Icons.ic_binoculars_20: ImageVector
|
||||
get() {
|
||||
if (_ic_binoculars_20 != null) return _ic_binoculars_20!!
|
||||
_ic_binoculars_20 = ImageVector.Builder(
|
||||
name = "ic_binoculars_20",
|
||||
defaultWidth = 20.dp,
|
||||
defaultHeight = 20.dp,
|
||||
viewportWidth = 20f,
|
||||
viewportHeight = 20f,
|
||||
).apply {
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M14.0039 4.00977C15.1905 4.11079 16.1926 4.9581 16.4922 6.12891L17.8301 11.3438C17.942 11.6918 18.0029 12.0603 18.003 12.4385C18.0029 13.8728 17.1461 15.1718 15.8252 15.7236C14.5031 16.2758 12.9824 15.9674 11.9746 14.9473C11.3857 14.3509 11.0504 13.596 10.9678 12.8193H9.03421C8.99921 13.151 8.91846 13.4814 8.78812 13.7998C8.24446 15.1274 6.95919 15.999 5.52737 15.999C4.0957 15.9988 2.81018 15.1273 2.26663 13.7998C1.95711 13.0436 1.9221 12.2218 2.13577 11.4668L3.50589 6.12891L3.57523 5.89941C3.96607 4.77373 5.02469 4.00095 6.23343 4.00098C7.57474 4.00112 8.68641 4.94236 8.97562 6.19531H11.0225C11.3115 4.94204 12.4232 4.00006 13.7647 4L14.0039 4.00977ZM6.95706 10.9854C6.1663 10.1885 4.8895 10.1886 4.09866 10.9854C3.83288 11.2533 3.653 11.5841 3.56448 11.9375L3.56351 11.9365C3.45788 12.3577 3.48348 12.8117 3.6553 13.2314C3.97079 14.0019 4.71161 14.4988 5.52737 14.499C6.34329 14.499 7.08483 14.002 7.40042 13.2314C7.5112 12.9608 7.56039 12.6757 7.55374 12.3945H7.55179V12.3242C7.52331 11.8285 7.31823 11.3494 6.95706 10.9854ZM15.2471 10.5381C14.492 10.2227 13.622 10.3972 13.042 10.9844C12.2492 11.7875 12.249 13.0906 13.042 13.8936C13.6219 14.4805 14.4921 14.6551 15.2471 14.3398C16.0034 14.0239 16.5029 13.2747 16.503 12.4385C16.5029 12.2661 16.4808 12.0974 16.4405 11.9355L16.4346 11.9375L16.3916 11.7705C16.2049 11.2207 15.7936 10.7664 15.2471 10.5381ZM9.05179 11.3193H10.9473V7.69531H9.05179V11.3193ZM6.23343 5.5C5.6386 5.49997 5.11095 5.90695 4.95901 6.50098L4.28812 9.11328C5.35974 8.7088 6.58737 8.84774 7.55179 9.53027V6.83887C7.55179 6.09257 6.9538 5.50017 6.23343 5.5ZM13.7647 5.5C13.0442 5.50007 12.4473 6.09251 12.4473 6.83887V9.53027C13.3896 8.86279 14.6082 8.69601 15.708 9.11035L15.0391 6.50195C14.8871 5.90798 14.3595 5.5 13.7647 5.5Z"),
|
||||
)
|
||||
}.build()
|
||||
return _ic_binoculars_20!!
|
||||
}
|
||||
|
||||
@Composable
|
||||
@Preview(showBackground = true)
|
||||
private fun IcBinoculars20Preview() {
|
||||
Icon(
|
||||
imageVector = Icons.ic_binoculars_20,
|
||||
contentDescription = null,
|
||||
)
|
||||
}
|
||||
|
|
@ -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_24: ImageVector? = null
|
||||
|
||||
val Icons.ic_binoculars_24: ImageVector
|
||||
get() {
|
||||
if (_ic_binoculars_24 != null) return _ic_binoculars_24!!
|
||||
_ic_binoculars_24 = ImageVector.Builder(
|
||||
name = "ic_binoculars_24",
|
||||
defaultWidth = 24.dp,
|
||||
defaultHeight = 24.dp,
|
||||
viewportWidth = 24f,
|
||||
viewportHeight = 24f,
|
||||
).apply {
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M7.32502 4.5C9.00231 4.5 10.4008 5.66143 10.786 7.21875H13.2127C13.5978 5.66204 14.9949 4.50145 16.6717 4.50098C18.3023 4.5006 19.7197 5.61008 20.1248 7.18848L21.786 13.6494C21.9253 14.085 22.0018 14.5455 22.0018 15.0186C22.0018 16.8243 20.9214 18.4575 19.2567 19.1514C17.5906 19.8456 15.6748 19.4587 14.4041 18.1758C13.6771 17.4416 13.2569 16.5166 13.1414 15.5615H10.8621C10.8145 15.9573 10.7164 16.3513 10.5604 16.7314C9.87445 18.4023 8.25312 19.498 6.44905 19.498C4.64512 19.4979 3.02456 18.4022 2.33869 16.7314C1.96487 15.8205 1.91034 14.8347 2.1424 13.9189L3.87287 7.18848C4.27794 5.61028 5.69469 4.49991 7.32502 4.5ZM8.17561 13.2705C7.2209 12.3108 5.67819 12.3108 4.72346 13.2705C4.42591 13.5697 4.21642 13.9336 4.10237 14.3242L4.07893 14.417L4.07795 14.416C3.95074 14.9225 3.98128 15.4682 4.1883 15.9727C4.56882 16.8992 5.46342 17.4979 6.44905 17.498C7.43474 17.498 8.32916 16.8992 8.70979 15.9727C8.84366 15.6465 8.90257 15.3028 8.89436 14.9639H8.89143V14.873C8.85546 14.2798 8.6092 13.7065 8.17561 13.2705ZM18.4871 12.7314C17.5754 12.3518 16.5249 12.5622 15.825 13.2686C14.8683 14.2348 14.8683 15.8024 15.825 16.7686C16.5249 17.4751 17.5752 17.6854 18.4871 17.3057C19.4003 16.925 20.0018 16.0238 20.0018 15.0186C20.0018 14.8116 19.9741 14.6095 19.9256 14.415L19.9188 14.417L19.866 14.2119C19.6405 13.5521 19.1457 13.006 18.4871 12.7314ZM10.8914 13.5615H13.1063V9.21875H10.8914V13.5615ZM16.6727 6.5C15.815 6.50019 15.1063 7.20318 15.1063 8.08594V11.2861C16.2422 10.5321 17.6731 10.3358 18.9842 10.7842L18.1873 7.68652C18.007 6.98349 17.3808 6.49986 16.6727 6.5ZM7.32502 6.5C6.61698 6.49999 5.99062 6.98355 5.81037 7.68652L5.01057 10.79C6.29071 10.351 7.73079 10.515 8.89143 11.2832V8.08594C8.89143 7.25828 8.26878 6.58831 7.4842 6.50781L7.32502 6.5Z"),
|
||||
)
|
||||
}.build()
|
||||
return _ic_binoculars_24!!
|
||||
}
|
||||
|
||||
@Composable
|
||||
@Preview(showBackground = true)
|
||||
private fun IcBinoculars24Preview() {
|
||||
Icon(
|
||||
imageVector = Icons.ic_binoculars_24,
|
||||
contentDescription = null,
|
||||
)
|
||||
}
|
||||
|
|
@ -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_32: ImageVector? = null
|
||||
|
||||
val Icons.ic_binoculars_32: ImageVector
|
||||
get() {
|
||||
if (_ic_binoculars_32 != null) return _ic_binoculars_32!!
|
||||
_ic_binoculars_32 = ImageVector.Builder(
|
||||
name = "ic_binoculars_32",
|
||||
defaultWidth = 32.dp,
|
||||
defaultHeight = 32.dp,
|
||||
viewportWidth = 32f,
|
||||
viewportHeight = 32f,
|
||||
).apply {
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M9.89423 6C12.0387 6.00016 13.8678 7.45751 14.362 9.45215H17.6306C18.1248 7.4579 19.9531 6.00129 22.0974 6.00098C24.176 6.00066 26.0186 7.37886 26.5495 9.39062L28.7116 17.5684C28.8987 18.1282 29.0006 18.7227 29.0007 19.335C29.0007 21.6402 27.5827 23.7003 25.4392 24.5693C23.2989 25.4366 20.8323 24.9573 19.1872 23.3418C18.2353 22.4068 17.6868 21.2255 17.5397 20.0059H14.4616C14.4005 20.5161 14.2692 21.0241 14.0622 21.5146C13.1663 23.6372 11.0628 25.0027 8.75068 25.0029C6.43857 25.0029 4.3362 23.637 3.44013 21.5146C2.92702 20.2989 2.87215 18.9796 3.22724 17.7705L5.44306 9.39062C5.97407 7.37893 7.81562 5.99967 9.89423 6ZM11.0563 17.1143C9.78538 15.8718 7.71717 15.8721 6.44599 17.1143C5.52052 18.0191 5.24876 19.3708 5.74286 20.542C6.23918 21.7174 7.42051 22.5029 8.75068 22.5029C10.0808 22.5027 11.2623 21.7175 11.7585 20.542C11.9323 20.1299 12.0095 19.6951 11.9987 19.2656H11.9948V19.1475C11.9472 18.398 11.626 17.6714 11.0563 17.1143ZM24.5007 16.418C23.275 15.9213 21.867 16.2016 20.9392 17.1123C19.6853 18.3439 19.6852 20.327 20.9392 21.5586C21.867 22.4697 23.2748 22.7487 24.5007 22.252C25.7223 21.7563 26.5007 20.5984 26.5007 19.335C26.5006 19.0741 26.4645 18.8182 26.4011 18.5713L26.3923 18.5742L26.3249 18.3193C26.0314 17.4804 25.383 16.7757 24.5007 16.418ZM14.4948 17.5059H17.4977V11.9521H14.4948V17.5059ZM9.89423 8.5C8.91961 8.49978 8.09346 9.14465 7.86005 10.0293L6.80536 14.0146C8.51381 13.4118 10.4539 13.6303 11.9948 14.6689V10.5332C11.9947 9.50323 11.189 8.61753 10.113 8.51074L9.89423 8.5ZM22.0983 8.5C20.9144 8.5 19.9979 9.43444 19.9977 10.5332V14.666C21.507 13.6479 23.4367 13.3915 25.1833 14.0059L24.1325 10.0303C23.9137 9.20092 23.1736 8.5817 22.279 8.50781L22.0983 8.5Z"),
|
||||
)
|
||||
}.build()
|
||||
return _ic_binoculars_32!!
|
||||
}
|
||||
|
||||
@Composable
|
||||
@Preview(showBackground = true)
|
||||
private fun IcBinoculars32Preview() {
|
||||
Icon(
|
||||
imageVector = Icons.ic_binoculars_32,
|
||||
contentDescription = null,
|
||||
)
|
||||
}
|
||||
|
|
@ -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_calendar_16: ImageVector? = null
|
||||
|
||||
val Icons.ic_calendar_16: ImageVector
|
||||
get() {
|
||||
if (_ic_calendar_16 != null) return _ic_calendar_16!!
|
||||
_ic_calendar_16 = ImageVector.Builder(
|
||||
name = "ic_calendar_16",
|
||||
defaultWidth = 16.dp,
|
||||
defaultHeight = 16.dp,
|
||||
viewportWidth = 16f,
|
||||
viewportHeight = 16f,
|
||||
).apply {
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M10 9.375C10.3452 9.37501 10.625 9.65483 10.625 10C10.625 10.3452 10.3452 10.625 10 10.625H6C5.65484 10.625 5.375 10.3452 5.375 10C5.375 9.65483 5.65484 9.37502 6 9.375H10Z"),
|
||||
)
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M9.625 2.375C9.97017 2.37501 10.25 2.65483 10.25 3H10.6016C11.9131 3.00009 12.9764 4.0635 12.9766 5.375V10.6016C12.9766 11.9132 11.9132 12.9765 10.6016 12.9766H5.375C4.06348 12.9764 3 11.9131 3 10.6016V5.375C3.00014 4.06356 4.06357 3.00018 5.375 3H5.75C5.75 2.65484 6.02985 2.37503 6.375 2.375C6.72017 2.37501 7 2.65483 7 3H9C9 2.65484 9.27985 2.37503 9.625 2.375ZM5.375 4.25C4.75392 4.25018 4.25014 4.75391 4.25 5.375V10.6016C4.25 11.2228 4.75383 11.7264 5.375 11.7266H10.6016C11.2228 11.7265 11.7266 11.2228 11.7266 10.6016V5.375C11.7264 4.75386 11.2227 4.25009 10.6016 4.25H10.25C10.25 4.59517 9.97017 4.87499 9.625 4.875C9.27985 4.87497 9 4.59516 9 4.25H7C7 4.59517 6.72017 4.87499 6.375 4.875C6.02985 4.87497 5.75 4.59516 5.75 4.25H5.375Z"),
|
||||
)
|
||||
}.build()
|
||||
return _ic_calendar_16!!
|
||||
}
|
||||
|
||||
@Composable
|
||||
@Preview(showBackground = true)
|
||||
private fun IcCalendar16Preview() {
|
||||
Icon(
|
||||
imageVector = Icons.ic_calendar_16,
|
||||
contentDescription = null,
|
||||
)
|
||||
}
|
||||
|
|
@ -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_calendar_20: ImageVector? = null
|
||||
|
||||
val Icons.ic_calendar_20: ImageVector
|
||||
get() {
|
||||
if (_ic_calendar_20 != null) return _ic_calendar_20!!
|
||||
_ic_calendar_20 = ImageVector.Builder(
|
||||
name = "ic_calendar_20",
|
||||
defaultWidth = 20.dp,
|
||||
defaultHeight = 20.dp,
|
||||
viewportWidth = 20f,
|
||||
viewportHeight = 20f,
|
||||
).apply {
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M13.252 13C13.6662 13 14.002 13.3358 14.002 13.75C14.0019 14.1642 13.6661 14.5 13.252 14.5H6.74609C6.33192 14.5 5.99614 14.1642 5.99609 13.75C5.99609 13.3358 6.33189 13 6.74609 13H13.252Z"),
|
||||
)
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M13.25 2.5C13.6642 2.50001 14 2.83579 14 3.25V3.5H14.2324C15.7512 3.50001 16.9824 4.73122 16.9824 6.25V14.2344C16.9823 15.7531 15.7511 16.9844 14.2324 16.9844H5.76758C4.24897 16.9842 3.01767 15.753 3.01758 14.2344V6.25C3.01758 4.73131 4.24892 3.50014 5.76758 3.5H6V3.25293C6 2.83872 6.3358 2.50294 6.75 2.50293C7.1642 2.50294 7.5 2.83872 7.5 3.25293V3.5H9.25V3.25C9.25 2.83579 9.58579 2.50001 10 2.5C10.4142 2.50001 10.75 2.83579 10.75 3.25V3.5H12.5V3.25C12.5 2.83579 12.8358 2.50001 13.25 2.5ZM5.76758 5C5.07735 5.00014 4.51758 5.55973 4.51758 6.25V14.2344C4.51767 14.9246 5.0774 15.4842 5.76758 15.4844H14.2324C14.9227 15.4844 15.4823 14.9246 15.4824 14.2344V6.25C15.4824 5.55965 14.9228 5.00001 14.2324 5H14V5.25C14 5.66417 13.6642 5.99999 13.25 6C12.8358 5.99999 12.5 5.66417 12.5 5.25V5H10.75V5.25C10.75 5.66417 10.4142 5.99999 10 6C9.58582 5.99999 9.25004 5.66417 9.25 5.25V5H7.5V5.25293C7.49962 5.66681 7.16397 6.00292 6.75 6.00293C6.33603 6.00292 6.00038 5.66681 6 5.25293V5H5.76758Z"),
|
||||
)
|
||||
}.build()
|
||||
return _ic_calendar_20!!
|
||||
}
|
||||
|
||||
@Composable
|
||||
@Preview(showBackground = true)
|
||||
private fun IcCalendar20Preview() {
|
||||
Icon(
|
||||
imageVector = Icons.ic_calendar_20,
|
||||
contentDescription = null,
|
||||
)
|
||||
}
|
||||
|
|
@ -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_calendar_24: ImageVector? = null
|
||||
|
||||
val Icons.ic_calendar_24: ImageVector
|
||||
get() {
|
||||
if (_ic_calendar_24 != null) return _ic_calendar_24!!
|
||||
_ic_calendar_24 = ImageVector.Builder(
|
||||
name = "ic_calendar_24",
|
||||
defaultWidth = 24.dp,
|
||||
defaultHeight = 24.dp,
|
||||
viewportWidth = 24f,
|
||||
viewportHeight = 24f,
|
||||
).apply {
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M16 16C16.5523 16 17 16.4477 17 17C17 17.5523 16.5523 18 16 18H8C7.44772 18 7 17.5523 7 17C7 16.4477 7.44772 16 8 16H16Z"),
|
||||
)
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M12 2.49414C12.5523 2.49414 13 2.94186 13 3.49414V4H15V3.5C15 2.94772 15.4477 2.50001 16 2.5C16.5523 2.5 17 2.94772 17 3.5V4H17.5107C19.4437 4 21.0107 5.56705 21.0107 7.5V17.502C21.0107 19.4349 19.4437 21.002 17.5107 21.002H6.48926C4.55642 21.0018 2.98927 19.4348 2.98926 17.502V7.5C2.98931 5.56716 4.55645 4.00018 6.48926 4H7V3.5C7 2.94772 7.44773 2.50001 8 2.5C8.55228 2.5 9 2.94772 9 3.5V4H11V3.49414C11 2.94186 11.4477 2.49415 12 2.49414ZM6.48926 6C5.66102 6.00018 4.98931 6.67173 4.98926 7.5V17.502C4.98927 18.3303 5.66099 19.0018 6.48926 19.002H17.5107C18.3392 19.002 19.0107 18.3304 19.0107 17.502V7.5C19.0107 6.67162 18.3391 6 17.5107 6H17V6.5C17 7.05228 16.5523 7.5 16 7.5C15.4477 7.49999 15 7.05228 15 6.5V6H13V6.5C13 7.05228 12.5523 7.5 12 7.5C11.4477 7.49999 11 7.05228 11 6.5V6H9V6.5C9 7.05228 8.55228 7.5 8 7.5C7.44773 7.49999 7 7.05228 7 6.5V6H6.48926Z"),
|
||||
)
|
||||
}.build()
|
||||
return _ic_calendar_24!!
|
||||
}
|
||||
|
||||
@Composable
|
||||
@Preview(showBackground = true)
|
||||
private fun IcCalendar24Preview() {
|
||||
Icon(
|
||||
imageVector = Icons.ic_calendar_24,
|
||||
contentDescription = null,
|
||||
)
|
||||
}
|
||||
|
|
@ -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_calendar_28: ImageVector? = null
|
||||
|
||||
val Icons.ic_calendar_28: ImageVector
|
||||
get() {
|
||||
if (_ic_calendar_28 != null) return _ic_calendar_28!!
|
||||
_ic_calendar_28 = ImageVector.Builder(
|
||||
name = "ic_calendar_28",
|
||||
defaultWidth = 28.dp,
|
||||
defaultHeight = 28.dp,
|
||||
viewportWidth = 28f,
|
||||
viewportHeight = 28f,
|
||||
).apply {
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M18.7471 18.5C19.4371 18.5003 19.9969 19.0599 19.9971 19.75C19.9971 20.4402 19.4372 20.9997 18.7471 21H9.25098C8.56063 21 8.00098 20.4403 8.00098 19.75C8.00111 19.0598 8.56071 18.5 9.25098 18.5H18.7471Z"),
|
||||
)
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M18.75 2.5C19.4403 2.5 19.9999 3.05976 20 3.75V4.25H20.748C23.0952 4.25002 24.998 6.1528 24.998 8.5V20.7471C24.9979 23.0941 23.0952 24.9971 20.748 24.9971H7.25C4.90289 24.9971 3.00015 23.0941 3 20.7471V8.5C3 6.1528 4.9028 4.25001 7.25 4.25H8V3.75C8.00013 3.05976 8.55973 2.50001 9.25 2.5C9.94027 2.5 10.4999 3.05976 10.5 3.75V4.25H12.75V3.75C12.75 3.05964 13.3096 2.5 14 2.5C14.6903 2.50007 15.25 3.05969 15.25 3.75V4.25H17.5V3.75C17.5001 3.05976 18.0597 2.50001 18.75 2.5ZM7.25 6.75C6.28351 6.75001 5.5 7.53351 5.5 8.5V20.7471C5.50015 21.7134 6.2836 22.4971 7.25 22.4971H20.748C21.7144 22.4971 22.4979 21.7134 22.498 20.7471V8.5C22.498 7.53351 21.7145 6.75002 20.748 6.75H20V7.25C20 7.94036 19.4404 8.5 18.75 8.5C18.0597 8.49999 17.5 7.94035 17.5 7.25V6.75H15.25V7.25C15.2497 7.94008 14.6901 8.49993 14 8.5C13.3098 8.5 12.7503 7.94013 12.75 7.25V6.75H10.5V7.25C10.5 7.94036 9.94036 8.5 9.25 8.5C8.55965 8.49999 8 7.94035 8 7.25V6.75H7.25Z"),
|
||||
)
|
||||
}.build()
|
||||
return _ic_calendar_28!!
|
||||
}
|
||||
|
||||
@Composable
|
||||
@Preview(showBackground = true)
|
||||
private fun IcCalendar28Preview() {
|
||||
Icon(
|
||||
imageVector = Icons.ic_calendar_28,
|
||||
contentDescription = null,
|
||||
)
|
||||
}
|
||||
|
|
@ -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_card_12: ImageVector? = null
|
||||
|
||||
val Icons.ic_card_12: ImageVector
|
||||
get() {
|
||||
if (_ic_card_12 != null) return _ic_card_12!!
|
||||
_ic_card_12 = ImageVector.Builder(
|
||||
name = "ic_card_12",
|
||||
defaultWidth = 12.dp,
|
||||
defaultHeight = 12.dp,
|
||||
viewportWidth = 12f,
|
||||
viewportHeight = 12f,
|
||||
).apply {
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M4.5 6.9375C4.77605 6.93761 5 7.16142 5 7.4375C4.99969 7.71332 4.77586 7.93739 4.5 7.9375H3.2998C3.02385 7.9375 2.80011 7.71338 2.7998 7.4375C2.7998 7.16136 3.02366 6.9375 3.2998 6.9375H4.5Z"),
|
||||
)
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M9 2C10.1046 2 11 2.89536 11 4V8C11 9.10464 10.1046 10 9 10H3C1.89536 10 1 9.10464 1 8V4C1 2.89536 1.89536 2 3 2H9ZM2 8C2 8.55236 2.44764 9 3 9H9C9.55236 9 10 8.55236 10 8V5H2V8ZM3 3C2.44764 3 2 3.44764 2 4H10C10 3.44764 9.55236 3 9 3H3Z"),
|
||||
)
|
||||
}.build()
|
||||
return _ic_card_12!!
|
||||
}
|
||||
|
||||
@Composable
|
||||
@Preview(showBackground = true)
|
||||
private fun IcCard12Preview() {
|
||||
Icon(
|
||||
imageVector = Icons.ic_card_12,
|
||||
contentDescription = null,
|
||||
)
|
||||
}
|
||||
|
|
@ -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_card_16: ImageVector? = null
|
||||
|
||||
val Icons.ic_card_16: ImageVector
|
||||
get() {
|
||||
if (_ic_card_16 != null) return _ic_card_16!!
|
||||
_ic_card_16 = ImageVector.Builder(
|
||||
name = "ic_card_16",
|
||||
defaultWidth = 16.dp,
|
||||
defaultHeight = 16.dp,
|
||||
viewportWidth = 16f,
|
||||
viewportHeight = 16f,
|
||||
).apply {
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M6.08691 9.13184C6.43135 9.13235 6.71142 9.4124 6.71191 9.75684C6.71191 10.1017 6.43165 10.3813 6.08691 10.3818H4.47559C4.13041 10.3818 3.85059 10.102 3.85059 9.75684C3.85109 9.41208 4.13072 9.13184 4.47559 9.13184H6.08691Z"),
|
||||
)
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M11.9189 3C13.3199 3.00027 14.5017 4.09489 14.502 5.50098V10.5029C14.502 11.9092 13.32 13.0036 11.9189 13.0039H4.08398C2.68267 13.0039 1.5 11.9094 1.5 10.5029V5.50098C1.50024 4.09472 2.68282 3 4.08398 3H11.9189ZM2.75 10.5029C2.75 11.1687 3.32155 11.7539 4.08398 11.7539H11.9189C12.6811 11.7536 13.252 11.1685 13.252 10.5029V6.85254H2.75V10.5029ZM4.08398 4.25C3.32171 4.25 2.75025 4.83543 2.75 5.50098V5.60254H13.252V5.50098C13.2517 4.83558 12.681 4.25027 11.9189 4.25H4.08398Z"),
|
||||
)
|
||||
}.build()
|
||||
return _ic_card_16!!
|
||||
}
|
||||
|
||||
@Composable
|
||||
@Preview(showBackground = true)
|
||||
private fun IcCard16Preview() {
|
||||
Icon(
|
||||
imageVector = Icons.ic_card_16,
|
||||
contentDescription = null,
|
||||
)
|
||||
}
|
||||
|
|
@ -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_card_20: ImageVector? = null
|
||||
|
||||
val Icons.ic_card_20: ImageVector
|
||||
get() {
|
||||
if (_ic_card_20 != null) return _ic_card_20!!
|
||||
_ic_card_20 = ImageVector.Builder(
|
||||
name = "ic_card_20",
|
||||
defaultWidth = 20.dp,
|
||||
defaultHeight = 20.dp,
|
||||
viewportWidth = 20f,
|
||||
viewportHeight = 20f,
|
||||
).apply {
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M7.63965 12.0664C8.05362 12.0667 8.38965 12.4024 8.38965 12.8164C8.38946 13.2303 8.0535 13.5661 7.63965 13.5664H5.65137C5.23727 13.5664 4.90156 13.2305 4.90137 12.8164C4.90137 12.4022 5.23715 12.0664 5.65137 12.0664H7.63965Z"),
|
||||
)
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M14.8379 3.5C16.6005 3.50047 18.0049 4.95342 18.0049 6.71484V13.2861C18.0048 15.0475 16.6004 16.5005 14.8379 16.501H5.16797C3.40516 16.5008 2.00005 15.0477 2 13.2861V6.71484C2 4.95324 3.40513 3.50017 5.16797 3.5H14.8379ZM3.50098 13.2861C3.50103 14.2467 4.2608 15.0008 5.16797 15.001H14.8379C15.7448 15.0005 16.5048 14.2466 16.5049 13.2861V8.35449H3.50098V13.2861ZM5.16797 5C4.26077 5.00017 3.50098 5.75419 3.50098 6.71484V6.85449H16.5049V6.71484C16.5049 5.75438 15.7448 5.00048 14.8379 5H5.16797Z"),
|
||||
)
|
||||
}.build()
|
||||
return _ic_card_20!!
|
||||
}
|
||||
|
||||
@Composable
|
||||
@Preview(showBackground = true)
|
||||
private fun IcCard20Preview() {
|
||||
Icon(
|
||||
imageVector = Icons.ic_card_20,
|
||||
contentDescription = null,
|
||||
)
|
||||
}
|
||||
|
|
@ -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_card_24: ImageVector? = null
|
||||
|
||||
val Icons.ic_card_24: ImageVector
|
||||
get() {
|
||||
if (_ic_card_24 != null) return _ic_card_24!!
|
||||
_ic_card_24 = ImageVector.Builder(
|
||||
name = "ic_card_24",
|
||||
defaultWidth = 24.dp,
|
||||
defaultHeight = 24.dp,
|
||||
viewportWidth = 24f,
|
||||
viewportHeight = 24f,
|
||||
).apply {
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M9.57031 14C10.1225 14.0002 10.5703 14.4478 10.5703 15C10.5703 15.5522 10.1225 15.9998 9.57031 16H7C6.44772 16 6 15.5523 6 15C6 14.4477 6.44772 14 7 14H9.57031Z"),
|
||||
)
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M18 4C20.2093 4 22 5.79072 22 8V16C22 18.2093 20.2093 20 18 20H6C3.79072 20 2 18.2093 2 16V8C2 5.79072 3.79072 4 6 4H18ZM4 16C4 17.1047 4.89528 18 6 18H18C19.1047 18 20 17.1047 20 16V10H4V16ZM6 6C4.89528 6 4 6.89528 4 8H20C20 6.89528 19.1047 6 18 6H6Z"),
|
||||
)
|
||||
}.build()
|
||||
return _ic_card_24!!
|
||||
}
|
||||
|
||||
@Composable
|
||||
@Preview(showBackground = true)
|
||||
private fun IcCard24Preview() {
|
||||
Icon(
|
||||
imageVector = Icons.ic_card_24,
|
||||
contentDescription = null,
|
||||
)
|
||||
}
|
||||
|
|
@ -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_card_plus_20: ImageVector? = null
|
||||
|
||||
val Icons.ic_card_plus_20: ImageVector
|
||||
get() {
|
||||
if (_ic_card_plus_20 != null) return _ic_card_plus_20!!
|
||||
_ic_card_plus_20 = ImageVector.Builder(
|
||||
name = "ic_card_plus_20",
|
||||
defaultWidth = 20.dp,
|
||||
defaultHeight = 20.dp,
|
||||
viewportWidth = 20f,
|
||||
viewportHeight = 20f,
|
||||
).apply {
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M10.8086 4.38867C11.2226 4.38894 11.5586 4.72464 11.5586 5.13867C11.5586 5.55272 11.2226 5.88841 10.8086 5.88867H5.16797C4.1867 5.88883 3.501 6.60642 3.50098 7.36133V14.0283C3.50121 14.7831 4.18685 15.4998 5.16797 15.5H14.8379C15.8187 15.4996 16.5046 14.783 16.5049 14.0283V9.58301C16.5051 9.16895 16.8408 8.83301 17.2549 8.83301C17.6687 8.8333 18.0047 9.16913 18.0049 9.58301V14.0283C18.0047 15.7275 16.526 16.9996 14.8379 17H5.16797C3.4796 16.9998 2.00023 15.7277 2 14.0283V7.36133C2.00002 5.66175 3.47949 4.38883 5.16797 4.38867H10.8086Z"),
|
||||
)
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M7.63965 12.665C8.05353 12.6653 8.38951 13.0011 8.38965 13.415C8.3894 13.8289 8.05346 14.1648 7.63965 14.165H5.65137C5.23731 14.165 4.90162 13.829 4.90137 13.415C4.90151 13.0009 5.23724 12.665 5.65137 12.665H7.63965Z"),
|
||||
)
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M15.3203 3C15.7345 3 16.0703 3.33579 16.0703 3.75V4.38867H16.7705C17.1846 4.38867 17.5202 4.72468 17.5205 5.13867C17.5205 5.55286 17.1847 5.88867 16.7705 5.88867H16.0703V6.52832C16.0699 6.94222 15.7343 7.27832 15.3203 7.27832C14.9064 7.27829 14.5707 6.9422 14.5703 6.52832V5.88867H13.8701C13.456 5.88854 13.1201 5.55278 13.1201 5.13867C13.1204 4.72476 13.4562 4.3888 13.8701 4.38867H14.5703V3.75C14.5703 3.33581 14.9061 3.00003 15.3203 3Z"),
|
||||
)
|
||||
}.build()
|
||||
return _ic_card_plus_20!!
|
||||
}
|
||||
|
||||
@Composable
|
||||
@Preview(showBackground = true)
|
||||
private fun IcCardPlus20Preview() {
|
||||
Icon(
|
||||
imageVector = Icons.ic_card_plus_20,
|
||||
contentDescription = null,
|
||||
)
|
||||
}
|
||||
|
|
@ -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_card_plus_24: ImageVector? = null
|
||||
|
||||
val Icons.ic_card_plus_24: ImageVector
|
||||
get() {
|
||||
if (_ic_card_plus_24 != null) return _ic_card_plus_24!!
|
||||
_ic_card_plus_24 = ImageVector.Builder(
|
||||
name = "ic_card_plus_24",
|
||||
defaultWidth = 24.dp,
|
||||
defaultHeight = 24.dp,
|
||||
viewportWidth = 24f,
|
||||
viewportHeight = 24f,
|
||||
).apply {
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M13 4.4541C13.5522 4.4541 13.9998 4.90195 14 5.4541C14 6.00639 13.5523 6.4541 13 6.4541H6C4.86632 6.4541 4.00017 7.3378 4 8.36328V17.0908C4.00011 18.1164 4.86629 19 6 19H18C19.1337 19 19.9999 18.1164 20 17.0908V11.2725C20.0002 10.7203 20.4478 10.2725 21 10.2725C21.5522 10.2725 21.9998 10.7203 22 11.2725V17.0908C21.9999 19.2785 20.1799 21 18 21H6C3.82014 21 2.00011 19.2785 2 17.0908V8.36328C2.00017 6.1757 3.82018 4.4541 6 4.4541H13Z"),
|
||||
)
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M9.57031 15.1221C10.1225 15.1222 10.5703 15.5699 10.5703 16.1221C10.57 16.6739 10.1222 17.1219 9.57031 17.1221H7C6.44794 17.1221 6.00036 16.674 6 16.1221C6 15.5698 6.44772 15.1221 7 15.1221H9.57031Z"),
|
||||
)
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M19.5 3C20.0523 3 20.5 3.44772 20.5 4V4.45508H21C21.5523 4.45508 22 4.90279 22 5.45508C21.9997 6.00714 21.5521 6.45508 21 6.45508H20.5V6.91016C20.4999 7.46237 20.0522 7.91016 19.5 7.91016C18.9478 7.91016 18.5001 7.46237 18.5 6.91016V6.45508H18C17.4479 6.45508 17.0003 6.00714 17 5.45508C17 4.90279 17.4477 4.45508 18 4.45508H18.5V4C18.5 3.44772 18.9477 3 19.5 3Z"),
|
||||
)
|
||||
}.build()
|
||||
return _ic_card_plus_24!!
|
||||
}
|
||||
|
||||
@Composable
|
||||
@Preview(showBackground = true)
|
||||
private fun IcCardPlus24Preview() {
|
||||
Icon(
|
||||
imageVector = Icons.ic_card_plus_24,
|
||||
contentDescription = null,
|
||||
)
|
||||
}
|
||||
|
|
@ -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_card_plus_32: ImageVector? = null
|
||||
|
||||
val Icons.ic_card_plus_32: ImageVector
|
||||
get() {
|
||||
if (_ic_card_plus_32 != null) return _ic_card_plus_32!!
|
||||
_ic_card_plus_32 = ImageVector.Builder(
|
||||
name = "ic_card_plus_32",
|
||||
defaultWidth = 32.dp,
|
||||
defaultHeight = 32.dp,
|
||||
viewportWidth = 32f,
|
||||
viewportHeight = 32f,
|
||||
).apply {
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M17.3086 6.5C17.9988 6.5002 18.5586 7.05977 18.5586 7.75C18.5586 8.44023 17.9988 8.9998 17.3086 9H8.16699C6.65816 9.00047 5.50011 10.1774 5.5 11.5498V22.9502C5.50011 24.3226 6.65816 25.4995 8.16699 25.5H23.8369C25.3462 25.5 26.5048 24.3228 26.5049 22.9502V15.3496C26.5051 14.6596 27.0649 14.0998 27.7549 14.0996C28.4451 14.0997 29.0047 14.6595 29.0049 15.3496V22.9502C29.0048 25.7747 26.6546 28 23.8369 28H8.16699C5.34969 27.9995 3.00011 25.7744 3 22.9502V11.5498C3.00011 8.72556 5.34969 6.50048 8.16699 6.5H17.3086Z"),
|
||||
)
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M12.3564 21C13.0465 21.0003 13.6062 21.56 13.6064 22.25C13.6063 22.94 13.0465 23.4997 12.3564 23.5H9C8.30975 23.5 7.75018 22.9402 7.75 22.25C7.7502 21.5598 8.30977 21 9 21H12.3564Z"),
|
||||
)
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M25.3066 4C25.9969 4.00007 26.5566 4.55969 26.5566 5.25V6.5H27.7549C28.4452 6.5 29.0049 7.05964 29.0049 7.75C29.0049 8.44036 28.4452 9 27.7549 9H26.5566V10.25C26.5566 10.9403 25.9969 11.4999 25.3066 11.5C24.6165 11.4998 24.0566 10.9402 24.0566 10.25V9H22.8584C22.1681 8.99995 21.6084 8.44033 21.6084 7.75C21.6084 7.05967 22.1681 6.50005 22.8584 6.5H24.0566V5.25C24.0566 4.55977 24.6165 4.0002 25.3066 4Z"),
|
||||
)
|
||||
}.build()
|
||||
return _ic_card_plus_32!!
|
||||
}
|
||||
|
||||
@Composable
|
||||
@Preview(showBackground = true)
|
||||
private fun IcCardPlus32Preview() {
|
||||
Icon(
|
||||
imageVector = Icons.ic_card_plus_32,
|
||||
contentDescription = null,
|
||||
)
|
||||
}
|
||||
|
|
@ -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_checkmark_16: ImageVector? = null
|
||||
|
||||
val Icons.ic_checkmark_16: ImageVector
|
||||
get() {
|
||||
if (_ic_checkmark_16 != null) return _ic_checkmark_16!!
|
||||
_ic_checkmark_16 = ImageVector.Builder(
|
||||
name = "ic_checkmark_16",
|
||||
defaultWidth = 16.dp,
|
||||
defaultHeight = 16.dp,
|
||||
viewportWidth = 16f,
|
||||
viewportHeight = 16f,
|
||||
).apply {
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M12.5537 4.06253C12.7953 3.8161 13.191 3.81222 13.4375 4.05374C13.6839 4.29533 13.6878 4.69104 13.4463 4.93753L6.58792 11.9375C6.47042 12.0573 6.30946 12.125 6.14164 12.125C5.97381 12.125 5.81284 12.0574 5.69535 11.9375L2.55375 8.73148C2.31219 8.48498 2.31612 8.08929 2.56253 7.84769C2.80906 7.60611 3.20473 7.60998 3.44632 7.85648L6.14066 10.6065L12.5537 4.06253Z"),
|
||||
)
|
||||
}.build()
|
||||
return _ic_checkmark_16!!
|
||||
}
|
||||
|
||||
@Composable
|
||||
@Preview(showBackground = true)
|
||||
private fun IcCheckmark16Preview() {
|
||||
Icon(
|
||||
imageVector = Icons.ic_checkmark_16,
|
||||
contentDescription = null,
|
||||
)
|
||||
}
|
||||
|
|
@ -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_checkmark_20: ImageVector? = null
|
||||
|
||||
val Icons.ic_checkmark_20: ImageVector
|
||||
get() {
|
||||
if (_ic_checkmark_20 != null) return _ic_checkmark_20!!
|
||||
_ic_checkmark_20 = ImageVector.Builder(
|
||||
name = "ic_checkmark_20",
|
||||
defaultWidth = 20.dp,
|
||||
defaultHeight = 20.dp,
|
||||
viewportWidth = 20f,
|
||||
viewportHeight = 20f,
|
||||
).apply {
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M16.459 4.48048C16.7459 4.18175 17.2208 4.17217 17.5195 4.459C17.8183 4.74588 17.8279 5.22077 17.541 5.51955L7.93947 15.5195C7.79806 15.6668 7.60259 15.75 7.39845 15.75C7.19434 15.75 6.99882 15.6668 6.85744 15.5195L2.459 10.9395C2.17214 10.6407 2.18178 10.1658 2.48048 9.87892C2.77923 9.59202 3.25412 9.60168 3.54103 9.90041L7.39748 13.917L16.459 4.48048Z"),
|
||||
)
|
||||
}.build()
|
||||
return _ic_checkmark_20!!
|
||||
}
|
||||
|
||||
@Composable
|
||||
@Preview(showBackground = true)
|
||||
private fun IcCheckmark20Preview() {
|
||||
Icon(
|
||||
imageVector = Icons.ic_checkmark_20,
|
||||
contentDescription = null,
|
||||
)
|
||||
}
|
||||
|
|
@ -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_checkmark_24: ImageVector? = null
|
||||
|
||||
val Icons.ic_checkmark_24: ImageVector
|
||||
get() {
|
||||
if (_ic_checkmark_24 != null) return _ic_checkmark_24!!
|
||||
_ic_checkmark_24 = ImageVector.Builder(
|
||||
name = "ic_checkmark_24",
|
||||
defaultWidth = 24.dp,
|
||||
defaultHeight = 24.dp,
|
||||
viewportWidth = 24f,
|
||||
viewportHeight = 24f,
|
||||
).apply {
|
||||
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"),
|
||||
)
|
||||
}.build()
|
||||
return _ic_checkmark_24!!
|
||||
}
|
||||
|
||||
@Composable
|
||||
@Preview(showBackground = true)
|
||||
private fun IcCheckmark24Preview() {
|
||||
Icon(
|
||||
imageVector = Icons.ic_checkmark_24,
|
||||
contentDescription = null,
|
||||
)
|
||||
}
|
||||
|
|
@ -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_chevron_down_12: ImageVector? = null
|
||||
|
||||
val Icons.ic_chevron_down_12: ImageVector
|
||||
get() {
|
||||
if (_ic_chevron_down_12 != null) return _ic_chevron_down_12!!
|
||||
_ic_chevron_down_12 = ImageVector.Builder(
|
||||
name = "ic_chevron_down_12",
|
||||
defaultWidth = 12.dp,
|
||||
defaultHeight = 12.dp,
|
||||
viewportWidth = 12f,
|
||||
viewportHeight = 12f,
|
||||
).apply {
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M9.14491 4.39394C9.34016 4.19882 9.65672 4.19878 9.85194 4.39394C10.0465 4.58921 10.0469 4.90591 9.85194 5.10097L6.35097 8.60195C6.25738 8.6954 6.1297 8.74825 5.99745 8.74843C5.86522 8.74837 5.73759 8.69527 5.64394 8.60195L2.14296 5.10097C1.94779 4.90579 1.94796 4.58922 2.14296 4.39394C2.33823 4.19881 2.65477 4.19872 2.84999 4.39394L5.99745 7.5414L9.14491 4.39394Z"),
|
||||
)
|
||||
}.build()
|
||||
return _ic_chevron_down_12!!
|
||||
}
|
||||
|
||||
@Composable
|
||||
@Preview(showBackground = true)
|
||||
private fun IcChevronDown12Preview() {
|
||||
Icon(
|
||||
imageVector = Icons.ic_chevron_down_12,
|
||||
contentDescription = null,
|
||||
)
|
||||
}
|
||||
|
|
@ -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_chevron_down_16: ImageVector? = null
|
||||
|
||||
val Icons.ic_chevron_down_16: ImageVector
|
||||
get() {
|
||||
if (_ic_chevron_down_16 != null) return _ic_chevron_down_16!!
|
||||
_ic_chevron_down_16 = ImageVector.Builder(
|
||||
name = "ic_chevron_down_16",
|
||||
defaultWidth = 16.dp,
|
||||
defaultHeight = 16.dp,
|
||||
viewportWidth = 16f,
|
||||
viewportHeight = 16f,
|
||||
).apply {
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M11.928 5.99343C12.1721 5.74959 12.5688 5.74958 12.8128 5.99343C13.0565 6.23747 13.0566 6.6342 12.8128 6.8782L8.43975 11.2503C8.32261 11.3674 8.16302 11.4338 7.99736 11.4339C7.83191 11.4337 7.67303 11.3672 7.55596 11.2503L3.18291 6.8782C2.939 6.63411 2.9389 6.23746 3.18291 5.99343C3.42695 5.74959 3.82365 5.74958 4.06768 5.99343L7.99736 9.9241L11.928 5.99343Z"),
|
||||
)
|
||||
}.build()
|
||||
return _ic_chevron_down_16!!
|
||||
}
|
||||
|
||||
@Composable
|
||||
@Preview(showBackground = true)
|
||||
private fun IcChevronDown16Preview() {
|
||||
Icon(
|
||||
imageVector = Icons.ic_chevron_down_16,
|
||||
contentDescription = null,
|
||||
)
|
||||
}
|
||||
|
|
@ -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_chevron_down_20: ImageVector? = null
|
||||
|
||||
val Icons.ic_chevron_down_20: ImageVector
|
||||
get() {
|
||||
if (_ic_chevron_down_20 != null) return _ic_chevron_down_20!!
|
||||
_ic_chevron_down_20 = ImageVector.Builder(
|
||||
name = "ic_chevron_down_20",
|
||||
defaultWidth = 20.dp,
|
||||
defaultHeight = 20.dp,
|
||||
viewportWidth = 20f,
|
||||
viewportHeight = 20f,
|
||||
).apply {
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M15.7227 7.2392C16.0156 6.94632 16.4903 6.94631 16.7832 7.2392C17.0754 7.53214 17.0759 8.00707 16.7832 8.29974L10.5322 14.5517C10.3917 14.6922 10.1997 14.7713 10.001 14.7714C9.80255 14.7713 9.61121 14.6918 9.47072 14.5517L3.21974 8.29974C2.92686 8.00686 2.92688 7.53209 3.21974 7.2392C3.51264 6.94631 3.9874 6.94631 4.28029 7.2392L10.001 12.9599L15.7227 7.2392Z"),
|
||||
)
|
||||
}.build()
|
||||
return _ic_chevron_down_20!!
|
||||
}
|
||||
|
||||
@Composable
|
||||
@Preview(showBackground = true)
|
||||
private fun IcChevronDown20Preview() {
|
||||
Icon(
|
||||
imageVector = Icons.ic_chevron_down_20,
|
||||
contentDescription = null,
|
||||
)
|
||||
}
|
||||
|
|
@ -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_chevron_down_24: ImageVector? = null
|
||||
|
||||
val Icons.ic_chevron_down_24: ImageVector
|
||||
get() {
|
||||
if (_ic_chevron_down_24 != null) return _ic_chevron_down_24!!
|
||||
_ic_chevron_down_24 = ImageVector.Builder(
|
||||
name = "ic_chevron_down_24",
|
||||
defaultWidth = 24.dp,
|
||||
defaultHeight = 24.dp,
|
||||
viewportWidth = 24f,
|
||||
viewportHeight = 24f,
|
||||
).apply {
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M18.291 8.79205C18.6815 8.40174 19.3146 8.40171 19.7051 8.79205C20.0949 9.18257 20.0952 9.8158 19.7051 10.2061L12.706 17.2051C12.5187 17.3924 12.2639 17.4979 11.999 17.4981C11.7342 17.498 11.4794 17.3922 11.292 17.2051L4.29296 10.2061C3.90253 9.81562 3.90257 9.18257 4.29296 8.79205C4.68349 8.40172 5.31656 8.40163 5.70703 8.79205L11.999 15.084L18.291 8.79205Z"),
|
||||
)
|
||||
}.build()
|
||||
return _ic_chevron_down_24!!
|
||||
}
|
||||
|
||||
@Composable
|
||||
@Preview(showBackground = true)
|
||||
private fun IcChevronDown24Preview() {
|
||||
Icon(
|
||||
imageVector = Icons.ic_chevron_down_24,
|
||||
contentDescription = null,
|
||||
)
|
||||
}
|
||||
|
|
@ -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_chevron_down_28: ImageVector? = null
|
||||
|
||||
val Icons.ic_chevron_down_28: ImageVector
|
||||
get() {
|
||||
if (_ic_chevron_down_28 != null) return _ic_chevron_down_28!!
|
||||
_ic_chevron_down_28 = ImageVector.Builder(
|
||||
name = "ic_chevron_down_28",
|
||||
defaultWidth = 28.dp,
|
||||
defaultHeight = 28.dp,
|
||||
viewportWidth = 28f,
|
||||
viewportHeight = 28f,
|
||||
).apply {
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M21.8688 9.9924C22.357 9.50442 23.1483 9.50432 23.6364 9.9924C24.1239 10.4805 24.1242 11.272 23.6364 11.76L14.8844 20.5119C14.6502 20.7458 14.3317 20.877 14.0006 20.8772C13.6695 20.877 13.3511 20.7459 13.1168 20.5119L4.36586 11.76C3.87779 11.2719 3.87789 10.4806 4.36586 9.9924C4.85402 9.50435 5.64532 9.5043 6.13344 9.9924L14.0006 17.8596L21.8688 9.9924Z"),
|
||||
)
|
||||
}.build()
|
||||
return _ic_chevron_down_28!!
|
||||
}
|
||||
|
||||
@Composable
|
||||
@Preview(showBackground = true)
|
||||
private fun IcChevronDown28Preview() {
|
||||
Icon(
|
||||
imageVector = Icons.ic_chevron_down_28,
|
||||
contentDescription = null,
|
||||
)
|
||||
}
|
||||
|
|
@ -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_chevron_down_32: ImageVector? = null
|
||||
|
||||
val Icons.ic_chevron_down_32: ImageVector
|
||||
get() {
|
||||
if (_ic_chevron_down_32 != null) return _ic_chevron_down_32!!
|
||||
_ic_chevron_down_32 = ImageVector.Builder(
|
||||
name = "ic_chevron_down_32",
|
||||
defaultWidth = 32.dp,
|
||||
defaultHeight = 32.dp,
|
||||
viewportWidth = 32f,
|
||||
viewportHeight = 32f,
|
||||
).apply {
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M23.4403 12.1087C24.0261 11.5231 24.9757 11.523 25.5614 12.1087C26.1467 12.6944 26.1468 13.6441 25.5614 14.2297L17.0624 22.7297C16.7812 23.0109 16.3985 23.1691 16.0009 23.1692C15.6034 23.1691 15.2215 23.0107 14.9403 22.7297L6.44129 14.2297C5.85558 13.644 5.85568 12.6944 6.44129 12.1087C7.0271 11.5231 7.97668 11.5229 8.56239 12.1087L16.0009 19.5471L23.4403 12.1087Z"),
|
||||
)
|
||||
}.build()
|
||||
return _ic_chevron_down_32!!
|
||||
}
|
||||
|
||||
@Composable
|
||||
@Preview(showBackground = true)
|
||||
private fun IcChevronDown32Preview() {
|
||||
Icon(
|
||||
imageVector = Icons.ic_chevron_down_32,
|
||||
contentDescription = null,
|
||||
)
|
||||
}
|
||||
|
|
@ -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_chevron_left_12: ImageVector? = null
|
||||
|
||||
val Icons.ic_chevron_left_12: ImageVector
|
||||
get() {
|
||||
if (_ic_chevron_left_12 != null) return _ic_chevron_left_12!!
|
||||
_ic_chevron_left_12 = ImageVector.Builder(
|
||||
name = "ic_chevron_left_12",
|
||||
defaultWidth = 12.dp,
|
||||
defaultHeight = 12.dp,
|
||||
viewportWidth = 12f,
|
||||
viewportHeight = 12f,
|
||||
).apply {
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M6.89468 2.14332C7.08983 1.94822 7.40643 1.94842 7.60171 2.14332C7.79632 2.33861 7.79671 2.65529 7.60171 2.85035L4.45425 5.99781L7.60171 9.14527C7.79645 9.34056 7.79676 9.65721 7.60171 9.8523C7.4066 10.0472 7.08993 10.047 6.89468 9.8523L3.3937 6.35133C3.19885 6.1561 3.19873 5.83945 3.3937 5.64429L6.89468 2.14332Z"),
|
||||
)
|
||||
}.build()
|
||||
return _ic_chevron_left_12!!
|
||||
}
|
||||
|
||||
@Composable
|
||||
@Preview(showBackground = true)
|
||||
private fun IcChevronLeft12Preview() {
|
||||
Icon(
|
||||
imageVector = Icons.ic_chevron_left_12,
|
||||
contentDescription = null,
|
||||
)
|
||||
}
|
||||
|
|
@ -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_chevron_left_16: ImageVector? = null
|
||||
|
||||
val Icons.ic_chevron_left_16: ImageVector
|
||||
get() {
|
||||
if (_ic_chevron_left_16 != null) return _ic_chevron_left_16!!
|
||||
_ic_chevron_left_16 = ImageVector.Builder(
|
||||
name = "ic_chevron_left_16",
|
||||
defaultWidth = 16.dp,
|
||||
defaultHeight = 16.dp,
|
||||
viewportWidth = 16f,
|
||||
viewportHeight = 16f,
|
||||
).apply {
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M9.1167 3.18182C9.36075 2.93815 9.75749 2.93803 10.0015 3.18182C10.2452 3.42566 10.2448 3.82152 10.0015 4.06561L6.0708 7.99725L10.0015 11.9269C10.2454 12.1709 10.2452 12.5676 10.0015 12.8117C9.7574 13.0557 9.36077 13.0557 9.1167 12.8117L4.74463 8.43866C4.50075 8.19459 4.50068 7.79889 4.74463 7.55487L9.1167 3.18182Z"),
|
||||
)
|
||||
}.build()
|
||||
return _ic_chevron_left_16!!
|
||||
}
|
||||
|
||||
@Composable
|
||||
@Preview(showBackground = true)
|
||||
private fun IcChevronLeft16Preview() {
|
||||
Icon(
|
||||
imageVector = Icons.ic_chevron_left_16,
|
||||
contentDescription = null,
|
||||
)
|
||||
}
|
||||
|
|
@ -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_chevron_left_20: ImageVector? = null
|
||||
|
||||
val Icons.ic_chevron_left_20: ImageVector
|
||||
get() {
|
||||
if (_ic_chevron_left_20 != null) return _ic_chevron_left_20!!
|
||||
_ic_chevron_left_20 = ImageVector.Builder(
|
||||
name = "ic_chevron_left_20",
|
||||
defaultWidth = 20.dp,
|
||||
defaultHeight = 20.dp,
|
||||
viewportWidth = 20f,
|
||||
viewportHeight = 20f,
|
||||
).apply {
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M11.7031 3.21976C11.9959 2.92697 12.4708 2.92718 12.7637 3.21976C13.0561 3.51268 13.0564 3.98756 12.7637 4.2803L7.04395 10.002L12.7637 15.7227C13.0561 16.0156 13.0564 16.4905 12.7637 16.7832C12.4709 17.0759 11.996 17.0757 11.7031 16.7832L5.45118 10.5323C5.15861 10.2393 5.15843 9.76353 5.45118 9.47073L11.7031 3.21976Z"),
|
||||
)
|
||||
}.build()
|
||||
return _ic_chevron_left_20!!
|
||||
}
|
||||
|
||||
@Composable
|
||||
@Preview(showBackground = true)
|
||||
private fun IcChevronLeft20Preview() {
|
||||
Icon(
|
||||
imageVector = Icons.ic_chevron_left_20,
|
||||
contentDescription = null,
|
||||
)
|
||||
}
|
||||
|
|
@ -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_chevron_left_24: ImageVector? = null
|
||||
|
||||
val Icons.ic_chevron_left_24: ImageVector
|
||||
get() {
|
||||
if (_ic_chevron_left_24 != null) return _ic_chevron_left_24!!
|
||||
_ic_chevron_left_24 = ImageVector.Builder(
|
||||
name = "ic_chevron_left_24",
|
||||
defaultWidth = 24.dp,
|
||||
defaultHeight = 24.dp,
|
||||
viewportWidth = 24f,
|
||||
viewportHeight = 24f,
|
||||
).apply {
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M13.791 4.29216C14.1813 3.90195 14.8145 3.9023 15.2051 4.29216C15.5954 4.68265 15.5954 5.31573 15.2051 5.70622L8.91309 11.9982L15.2051 18.2902C15.5955 18.6807 15.5955 19.3137 15.2051 19.7043C14.8146 20.0947 14.1815 20.0947 13.791 19.7043L6.79199 12.7052C6.6049 12.5178 6.49908 12.2631 6.49902 11.9982C6.49922 11.7333 6.6047 11.4785 6.79199 11.2912L13.791 4.29216Z"),
|
||||
)
|
||||
}.build()
|
||||
return _ic_chevron_left_24!!
|
||||
}
|
||||
|
||||
@Composable
|
||||
@Preview(showBackground = true)
|
||||
private fun IcChevronLeft24Preview() {
|
||||
Icon(
|
||||
imageVector = Icons.ic_chevron_left_24,
|
||||
contentDescription = null,
|
||||
)
|
||||
}
|
||||
|
|
@ -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_chevron_left_28: ImageVector? = null
|
||||
|
||||
val Icons.ic_chevron_left_28: ImageVector
|
||||
get() {
|
||||
if (_ic_chevron_left_28 != null) return _ic_chevron_left_28!!
|
||||
_ic_chevron_left_28 = ImageVector.Builder(
|
||||
name = "ic_chevron_left_28",
|
||||
defaultWidth = 28.dp,
|
||||
defaultHeight = 28.dp,
|
||||
viewportWidth = 28f,
|
||||
viewportHeight = 28f,
|
||||
).apply {
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M16.2422 4.36594C16.7301 3.87816 17.5216 3.87853 18.0098 4.36594C18.4979 4.85404 18.4978 5.64535 18.0098 6.13352L10.1426 14.0017L18.0098 21.8689C18.4979 22.357 18.4978 23.1483 18.0098 23.6364C17.5216 24.1244 16.7303 24.1245 16.2422 23.6364L7.49023 14.8855C7.25637 14.6512 7.12513 14.3327 7.125 14.0017C7.12515 13.6707 7.25638 13.3521 7.49023 13.1179L16.2422 4.36594Z"),
|
||||
)
|
||||
}.build()
|
||||
return _ic_chevron_left_28!!
|
||||
}
|
||||
|
||||
@Composable
|
||||
@Preview(showBackground = true)
|
||||
private fun IcChevronLeft28Preview() {
|
||||
Icon(
|
||||
imageVector = Icons.ic_chevron_left_28,
|
||||
contentDescription = null,
|
||||
)
|
||||
}
|
||||
|
|
@ -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_chevron_left_32: ImageVector? = null
|
||||
|
||||
val Icons.ic_chevron_left_32: ImageVector
|
||||
get() {
|
||||
if (_ic_chevron_left_32 != null) return _ic_chevron_left_32!!
|
||||
_ic_chevron_left_32 = ImageVector.Builder(
|
||||
name = "ic_chevron_left_32",
|
||||
defaultWidth = 32.dp,
|
||||
defaultHeight = 32.dp,
|
||||
viewportWidth = 32f,
|
||||
viewportHeight = 32f,
|
||||
).apply {
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M17.7741 6.44214C18.3599 5.85636 19.3094 5.85636 19.8952 6.44214C20.4803 7.02798 20.4808 7.97768 19.8952 8.56324L12.4568 16.0017L19.8952 23.4412C20.4803 24.027 20.4806 24.9767 19.8952 25.5623C19.3096 26.1475 18.3599 26.1473 17.7741 25.5623L9.27414 17.0632C8.68867 16.4777 8.68916 15.528 9.27414 14.9421L17.7741 6.44214Z"),
|
||||
)
|
||||
}.build()
|
||||
return _ic_chevron_left_32!!
|
||||
}
|
||||
|
||||
@Composable
|
||||
@Preview(showBackground = true)
|
||||
private fun IcChevronLeft32Preview() {
|
||||
Icon(
|
||||
imageVector = Icons.ic_chevron_left_32,
|
||||
contentDescription = null,
|
||||
)
|
||||
}
|
||||
|
|
@ -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_chevron_right_12: ImageVector? = null
|
||||
|
||||
val Icons.ic_chevron_right_12: ImageVector
|
||||
get() {
|
||||
if (_ic_chevron_right_12 != null) return _ic_chevron_right_12!!
|
||||
_ic_chevron_right_12 = ImageVector.Builder(
|
||||
name = "ic_chevron_right_12",
|
||||
defaultWidth = 12.dp,
|
||||
defaultHeight = 12.dp,
|
||||
viewportWidth = 12f,
|
||||
viewportHeight = 12f,
|
||||
).apply {
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M4.3938 2.14306C4.58908 1.94819 4.9057 1.94797 5.10084 2.14306L8.60181 5.64404C8.79675 5.83919 8.79663 6.15585 8.60181 6.35107L5.10084 9.85205C4.90563 10.0472 4.58905 10.0471 4.3938 9.85205C4.19862 9.65681 4.19865 9.34027 4.3938 9.14502L7.54127 5.99756L4.3938 2.85009C4.19867 2.6549 4.19878 2.33833 4.3938 2.14306Z"),
|
||||
)
|
||||
}.build()
|
||||
return _ic_chevron_right_12!!
|
||||
}
|
||||
|
||||
@Composable
|
||||
@Preview(showBackground = true)
|
||||
private fun IcChevronRight12Preview() {
|
||||
Icon(
|
||||
imageVector = Icons.ic_chevron_right_12,
|
||||
contentDescription = null,
|
||||
)
|
||||
}
|
||||
|
|
@ -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_chevron_right_16: ImageVector? = null
|
||||
|
||||
val Icons.ic_chevron_right_16: ImageVector
|
||||
get() {
|
||||
if (_ic_chevron_right_16 != null) return _ic_chevron_right_16!!
|
||||
_ic_chevron_right_16 = ImageVector.Builder(
|
||||
name = "ic_chevron_right_16",
|
||||
defaultWidth = 16.dp,
|
||||
defaultHeight = 16.dp,
|
||||
viewportWidth = 16f,
|
||||
viewportHeight = 16f,
|
||||
).apply {
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M5.9971 3.18454C6.24115 2.94125 6.638 2.94094 6.88186 3.18454L11.2539 7.55759C11.4977 7.80143 11.4973 8.19727 11.2539 8.44137L6.88186 12.8144C6.63781 13.0585 6.24118 13.0584 5.9971 12.8144C5.75327 12.5703 5.7531 12.1737 5.9971 11.9297L9.92776 7.99997L5.9971 4.06833C5.75369 3.82423 5.75333 3.42841 5.9971 3.18454Z"),
|
||||
)
|
||||
}.build()
|
||||
return _ic_chevron_right_16!!
|
||||
}
|
||||
|
||||
@Composable
|
||||
@Preview(showBackground = true)
|
||||
private fun IcChevronRight16Preview() {
|
||||
Icon(
|
||||
imageVector = Icons.ic_chevron_right_16,
|
||||
contentDescription = null,
|
||||
)
|
||||
}
|
||||
|
|
@ -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_chevron_right_20: ImageVector? = null
|
||||
|
||||
val Icons.ic_chevron_right_20: ImageVector
|
||||
get() {
|
||||
if (_ic_chevron_right_20 != null) return _ic_chevron_right_20!!
|
||||
_ic_chevron_right_20 = ImageVector.Builder(
|
||||
name = "ic_chevron_right_20",
|
||||
defaultWidth = 20.dp,
|
||||
defaultHeight = 20.dp,
|
||||
viewportWidth = 20f,
|
||||
viewportHeight = 20f,
|
||||
).apply {
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M7.23735 3.2178C7.53027 2.92522 8.00511 2.92502 8.2979 3.2178L14.5499 9.46878C14.8423 9.7616 14.8423 10.2375 14.5499 10.5303L8.2979 16.7813C8.00512 17.074 7.53026 17.0738 7.23735 16.7813C6.94448 16.4884 6.9445 16.0136 7.23735 15.7207L12.9571 10L7.23735 4.27835C6.94449 3.98548 6.94454 3.5107 7.23735 3.2178Z"),
|
||||
)
|
||||
}.build()
|
||||
return _ic_chevron_right_20!!
|
||||
}
|
||||
|
||||
@Composable
|
||||
@Preview(showBackground = true)
|
||||
private fun IcChevronRight20Preview() {
|
||||
Icon(
|
||||
imageVector = Icons.ic_chevron_right_20,
|
||||
contentDescription = null,
|
||||
)
|
||||
}
|
||||
|
|
@ -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_chevron_right_24: ImageVector? = null
|
||||
|
||||
val Icons.ic_chevron_right_24: ImageVector
|
||||
get() {
|
||||
if (_ic_chevron_right_24 != null) return _ic_chevron_right_24!!
|
||||
_ic_chevron_right_24 = ImageVector.Builder(
|
||||
name = "ic_chevron_right_24",
|
||||
defaultWidth = 24.dp,
|
||||
defaultHeight = 24.dp,
|
||||
viewportWidth = 24f,
|
||||
viewportHeight = 24f,
|
||||
).apply {
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M8.7929 4.29313C9.18345 3.90307 9.81659 3.90281 10.207 4.29313L17.206 11.2922C17.3933 11.4796 17.4988 11.7342 17.499 11.9992C17.4989 12.2641 17.3932 12.5188 17.206 12.7062L10.207 19.7052C9.81652 20.0956 9.18343 20.0955 8.7929 19.7052C8.40245 19.3147 8.40244 18.6817 8.7929 18.2912L15.0849 11.9992L8.7929 5.70719C8.40247 5.31671 8.40252 4.68365 8.7929 4.29313Z"),
|
||||
)
|
||||
}.build()
|
||||
return _ic_chevron_right_24!!
|
||||
}
|
||||
|
||||
@Composable
|
||||
@Preview(showBackground = true)
|
||||
private fun IcChevronRight24Preview() {
|
||||
Icon(
|
||||
imageVector = Icons.ic_chevron_right_24,
|
||||
contentDescription = null,
|
||||
)
|
||||
}
|
||||
|
|
@ -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_chevron_right_28: ImageVector? = null
|
||||
|
||||
val Icons.ic_chevron_right_28: ImageVector
|
||||
get() {
|
||||
if (_ic_chevron_right_28 != null) return _ic_chevron_right_28!!
|
||||
_ic_chevron_right_28 = ImageVector.Builder(
|
||||
name = "ic_chevron_right_28",
|
||||
defaultWidth = 28.dp,
|
||||
defaultHeight = 28.dp,
|
||||
viewportWidth = 28f,
|
||||
viewportHeight = 28f,
|
||||
).apply {
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M9.99008 4.36269C10.4783 3.87543 11.2698 3.87497 11.7577 4.36269L20.5096 13.1146C20.7434 13.3488 20.8746 13.6675 20.8748 13.9984C20.8747 14.3294 20.7434 14.648 20.5096 14.8822L11.7577 23.6332C11.2696 24.1213 10.4782 24.1212 9.99008 23.6332C9.502 23.145 9.50195 22.3538 9.99008 21.8656L17.8573 13.9984L9.99008 6.13027C9.50207 5.6421 9.50197 4.8508 9.99008 4.36269Z"),
|
||||
)
|
||||
}.build()
|
||||
return _ic_chevron_right_28!!
|
||||
}
|
||||
|
||||
@Composable
|
||||
@Preview(showBackground = true)
|
||||
private fun IcChevronRight28Preview() {
|
||||
Icon(
|
||||
imageVector = Icons.ic_chevron_right_28,
|
||||
contentDescription = null,
|
||||
)
|
||||
}
|
||||
|
|
@ -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_chevron_right_32: ImageVector? = null
|
||||
|
||||
val Icons.ic_chevron_right_32: ImageVector
|
||||
get() {
|
||||
if (_ic_chevron_right_32 != null) return _ic_chevron_right_32!!
|
||||
_ic_chevron_right_32 = ImageVector.Builder(
|
||||
name = "ic_chevron_right_32",
|
||||
defaultWidth = 32.dp,
|
||||
defaultHeight = 32.dp,
|
||||
viewportWidth = 32f,
|
||||
viewportHeight = 32f,
|
||||
).apply {
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M12.1076 6.44153C12.6934 5.85575 13.6429 5.85575 14.2287 6.44153L22.7287 14.9415C23.3137 15.5274 23.3141 16.4771 22.7287 17.0626L14.2287 25.5616C13.643 26.1471 12.6933 26.147 12.1076 25.5616C11.5221 24.9759 11.5221 24.0263 12.1076 23.4406L19.5461 16.0011L12.1076 8.56262C11.5219 7.97692 11.5221 7.02733 12.1076 6.44153Z"),
|
||||
)
|
||||
}.build()
|
||||
return _ic_chevron_right_32!!
|
||||
}
|
||||
|
||||
@Composable
|
||||
@Preview(showBackground = true)
|
||||
private fun IcChevronRight32Preview() {
|
||||
Icon(
|
||||
imageVector = Icons.ic_chevron_right_32,
|
||||
contentDescription = null,
|
||||
)
|
||||
}
|
||||
|
|
@ -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_chevron_up_12: ImageVector? = null
|
||||
|
||||
val Icons.ic_chevron_up_12: ImageVector
|
||||
get() {
|
||||
if (_ic_chevron_up_12 != null) return _ic_chevron_up_12!!
|
||||
_ic_chevron_up_12 = ImageVector.Builder(
|
||||
name = "ic_chevron_up_12",
|
||||
defaultWidth = 12.dp,
|
||||
defaultHeight = 12.dp,
|
||||
viewportWidth = 12f,
|
||||
viewportHeight = 12f,
|
||||
).apply {
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M2.14292 7.60641C1.94805 7.41115 1.94788 7.09453 2.14292 6.89938L5.6439 3.3984C5.83905 3.20339 6.15568 3.20354 6.35093 3.3984L9.85191 6.89938C10.047 7.09461 10.047 7.41119 9.85191 7.60641C9.65669 7.80151 9.34011 7.80148 9.14487 7.60641L5.99741 4.45895L2.84995 7.60641C2.65478 7.80147 2.33817 7.80135 2.14292 7.60641Z"),
|
||||
)
|
||||
}.build()
|
||||
return _ic_chevron_up_12!!
|
||||
}
|
||||
|
||||
@Composable
|
||||
@Preview(showBackground = true)
|
||||
private fun IcChevronUp12Preview() {
|
||||
Icon(
|
||||
imageVector = Icons.ic_chevron_up_12,
|
||||
contentDescription = null,
|
||||
)
|
||||
}
|
||||
|
|
@ -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_chevron_up_16: ImageVector? = null
|
||||
|
||||
val Icons.ic_chevron_up_16: ImageVector
|
||||
get() {
|
||||
if (_ic_chevron_up_16 != null) return _ic_chevron_up_16!!
|
||||
_ic_chevron_up_16 = ImageVector.Builder(
|
||||
name = "ic_chevron_up_16",
|
||||
defaultWidth = 16.dp,
|
||||
defaultHeight = 16.dp,
|
||||
viewportWidth = 16f,
|
||||
viewportHeight = 16f,
|
||||
).apply {
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M7.99736 4.56152C8.16301 4.56161 8.3226 4.62798 8.43974 4.74512L12.8128 9.11719C13.0563 9.36127 13.0566 9.75803 12.8128 10.002C12.5688 10.2456 12.172 10.2454 11.928 10.002L7.99736 6.07129L4.06767 10.002C3.82374 10.2456 3.42692 10.2454 3.1829 10.002C2.93893 9.75798 2.93913 9.36129 3.1829 9.11719L7.55595 4.74512C7.67304 4.62809 7.83182 4.56165 7.99736 4.56152Z"),
|
||||
)
|
||||
}.build()
|
||||
return _ic_chevron_up_16!!
|
||||
}
|
||||
|
||||
@Composable
|
||||
@Preview(showBackground = true)
|
||||
private fun IcChevronUp16Preview() {
|
||||
Icon(
|
||||
imageVector = Icons.ic_chevron_up_16,
|
||||
contentDescription = null,
|
||||
)
|
||||
}
|
||||
|
|
@ -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_chevron_up_20: ImageVector? = null
|
||||
|
||||
val Icons.ic_chevron_up_20: ImageVector
|
||||
get() {
|
||||
if (_ic_chevron_up_20 != null) return _ic_chevron_up_20!!
|
||||
_ic_chevron_up_20 = ImageVector.Builder(
|
||||
name = "ic_chevron_up_20",
|
||||
defaultWidth = 20.dp,
|
||||
defaultHeight = 20.dp,
|
||||
viewportWidth = 20f,
|
||||
viewportHeight = 20f,
|
||||
).apply {
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M10.001 5.23242C10.1997 5.23259 10.3917 5.31165 10.5322 5.45215L16.7832 11.7041C17.0756 11.9969 17.0757 12.4719 16.7832 12.7646C16.4904 13.0574 16.0156 13.0572 15.7227 12.7646L10.001 7.04395L4.28027 12.7646C3.9875 13.0574 3.51264 13.0572 3.21972 12.7646C2.92684 12.4718 2.92684 11.997 3.21972 11.7041L9.4707 5.45215C9.61122 5.31178 9.80236 5.23254 10.001 5.23242Z"),
|
||||
)
|
||||
}.build()
|
||||
return _ic_chevron_up_20!!
|
||||
}
|
||||
|
||||
@Composable
|
||||
@Preview(showBackground = true)
|
||||
private fun IcChevronUp20Preview() {
|
||||
Icon(
|
||||
imageVector = Icons.ic_chevron_up_20,
|
||||
contentDescription = null,
|
||||
)
|
||||
}
|
||||
|
|
@ -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_chevron_up_24: ImageVector? = null
|
||||
|
||||
val Icons.ic_chevron_up_24: ImageVector
|
||||
get() {
|
||||
if (_ic_chevron_up_24 != null) return _ic_chevron_up_24!!
|
||||
_ic_chevron_up_24 = ImageVector.Builder(
|
||||
name = "ic_chevron_up_24",
|
||||
defaultWidth = 24.dp,
|
||||
defaultHeight = 24.dp,
|
||||
viewportWidth = 24f,
|
||||
viewportHeight = 24f,
|
||||
).apply {
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M11.999 6.49902C12.2639 6.49925 12.5188 6.60473 12.7061 6.79199L19.7051 13.791C20.0952 14.1814 20.0949 14.8146 19.7051 15.2051C19.3146 15.5954 18.6815 15.5953 18.291 15.2051L11.999 8.91309L5.70706 15.2051C5.31661 15.5955 4.68352 15.5953 4.29299 15.2051C3.9026 14.8146 3.90256 14.1815 4.29299 13.791L11.292 6.79199C11.4794 6.60489 11.7342 6.49908 11.999 6.49902Z"),
|
||||
)
|
||||
}.build()
|
||||
return _ic_chevron_up_24!!
|
||||
}
|
||||
|
||||
@Composable
|
||||
@Preview(showBackground = true)
|
||||
private fun IcChevronUp24Preview() {
|
||||
Icon(
|
||||
imageVector = Icons.ic_chevron_up_24,
|
||||
contentDescription = null,
|
||||
)
|
||||
}
|
||||
|
|
@ -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_chevron_up_28: ImageVector? = null
|
||||
|
||||
val Icons.ic_chevron_up_28: ImageVector
|
||||
get() {
|
||||
if (_ic_chevron_up_28 != null) return _ic_chevron_up_28!!
|
||||
_ic_chevron_up_28 = ImageVector.Builder(
|
||||
name = "ic_chevron_up_28",
|
||||
defaultWidth = 28.dp,
|
||||
defaultHeight = 28.dp,
|
||||
viewportWidth = 28f,
|
||||
viewportHeight = 28f,
|
||||
).apply {
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M14.0009 7.12622C14.3318 7.12643 14.6505 7.25761 14.8847 7.49146L23.6366 16.2434C24.1241 16.7314 24.1241 17.523 23.6366 18.011C23.1486 18.4989 22.3572 18.4986 21.869 18.011L14.0009 10.1438L6.13369 18.011C5.64568 18.4989 4.85427 18.4986 4.36611 18.011C3.87816 17.5228 3.8781 16.7315 4.36611 16.2434L13.1171 7.49146C13.3513 7.25748 13.6698 7.12635 14.0009 7.12622Z"),
|
||||
)
|
||||
}.build()
|
||||
return _ic_chevron_up_28!!
|
||||
}
|
||||
|
||||
@Composable
|
||||
@Preview(showBackground = true)
|
||||
private fun IcChevronUp28Preview() {
|
||||
Icon(
|
||||
imageVector = Icons.ic_chevron_up_28,
|
||||
contentDescription = null,
|
||||
)
|
||||
}
|
||||
|
|
@ -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_chevron_up_32: ImageVector? = null
|
||||
|
||||
val Icons.ic_chevron_up_32: ImageVector
|
||||
get() {
|
||||
if (_ic_chevron_up_32 != null) return _ic_chevron_up_32!!
|
||||
_ic_chevron_up_32 = ImageVector.Builder(
|
||||
name = "ic_chevron_up_32",
|
||||
defaultWidth = 32.dp,
|
||||
defaultHeight = 32.dp,
|
||||
viewportWidth = 32f,
|
||||
viewportHeight = 32f,
|
||||
).apply {
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M16.0006 8.83521C16.3983 8.83524 16.7809 8.99347 17.0622 9.27466L25.5612 17.7747C26.1468 18.3604 26.1467 19.31 25.5612 19.8958C24.9754 20.4815 24.0259 20.4815 23.4401 19.8958L16.0006 12.4573L8.56215 19.8958C7.97637 20.4815 7.02685 20.4815 6.44106 19.8958C5.85543 19.31 5.85533 18.3604 6.44106 17.7747L14.9401 9.27466C15.2213 8.99361 15.6031 8.83532 16.0006 8.83521Z"),
|
||||
)
|
||||
}.build()
|
||||
return _ic_chevron_up_32!!
|
||||
}
|
||||
|
||||
@Composable
|
||||
@Preview(showBackground = true)
|
||||
private fun IcChevronUp32Preview() {
|
||||
Icon(
|
||||
imageVector = Icons.ic_chevron_up_32,
|
||||
contentDescription = null,
|
||||
)
|
||||
}
|
||||
|
|
@ -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_12: ImageVector? = null
|
||||
|
||||
val Icons.ic_clock_12: ImageVector
|
||||
get() {
|
||||
if (_ic_clock_12 != null) return _ic_clock_12!!
|
||||
_ic_clock_12 = ImageVector.Builder(
|
||||
name = "ic_clock_12",
|
||||
defaultWidth = 12.dp,
|
||||
defaultHeight = 12.dp,
|
||||
viewportWidth = 12f,
|
||||
viewportHeight = 12f,
|
||||
).apply {
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M6.24857 3.21543C6.52471 3.21543 6.74857 3.43929 6.74857 3.71543V6.21543C6.74857 6.49157 6.52471 6.71543 6.24857 6.71543H4.24857C3.97243 6.71543 3.74857 6.49157 3.74857 6.21543C3.74857 5.93929 3.97243 5.71543 4.24857 5.71543H5.74857V3.71543C5.74857 3.43929 5.97243 3.21543 6.24857 3.21543Z"),
|
||||
)
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.EvenOdd,
|
||||
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()
|
||||
return _ic_clock_12!!
|
||||
}
|
||||
|
||||
@Composable
|
||||
@Preview(showBackground = true)
|
||||
private fun IcClock12Preview() {
|
||||
Icon(
|
||||
imageVector = Icons.ic_clock_12,
|
||||
contentDescription = null,
|
||||
)
|
||||
}
|
||||
|
|
@ -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_16: ImageVector? = null
|
||||
|
||||
val Icons.ic_clock_16: ImageVector
|
||||
get() {
|
||||
if (_ic_clock_16 != null) return _ic_clock_16!!
|
||||
_ic_clock_16 = ImageVector.Builder(
|
||||
name = "ic_clock_16",
|
||||
defaultWidth = 16.dp,
|
||||
defaultHeight = 16.dp,
|
||||
viewportWidth = 16f,
|
||||
viewportHeight = 16f,
|
||||
).apply {
|
||||
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"),
|
||||
)
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.EvenOdd,
|
||||
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()
|
||||
return _ic_clock_16!!
|
||||
}
|
||||
|
||||
@Composable
|
||||
@Preview(showBackground = true)
|
||||
private fun IcClock16Preview() {
|
||||
Icon(
|
||||
imageVector = Icons.ic_clock_16,
|
||||
contentDescription = null,
|
||||
)
|
||||
}
|
||||
|
|
@ -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_20: ImageVector? = null
|
||||
|
||||
val Icons.ic_clock_20: ImageVector
|
||||
get() {
|
||||
if (_ic_clock_20 != null) return _ic_clock_20!!
|
||||
_ic_clock_20 = ImageVector.Builder(
|
||||
name = "ic_clock_20",
|
||||
defaultWidth = 20.dp,
|
||||
defaultHeight = 20.dp,
|
||||
viewportWidth = 20f,
|
||||
viewportHeight = 20f,
|
||||
).apply {
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M10.3564 5.3584C10.7706 5.3585 11.1064 5.69425 11.1064 6.1084V10.25C11.1064 10.6641 10.7705 10.9999 10.3564 11H7.25C6.83594 10.9998 6.50004 10.6641 6.5 10.25C6.50004 9.83591 6.83594 9.50015 7.25 9.5H9.60645V6.1084C9.60645 5.69428 9.94236 5.35855 10.3564 5.3584Z"),
|
||||
)
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.EvenOdd,
|
||||
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()
|
||||
return _ic_clock_20!!
|
||||
}
|
||||
|
||||
@Composable
|
||||
@Preview(showBackground = true)
|
||||
private fun IcClock20Preview() {
|
||||
Icon(
|
||||
imageVector = Icons.ic_clock_20,
|
||||
contentDescription = null,
|
||||
)
|
||||
}
|
||||
|
|
@ -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_24: ImageVector? = null
|
||||
|
||||
val Icons.ic_clock_24: ImageVector
|
||||
get() {
|
||||
if (_ic_clock_24 != null) return _ic_clock_24!!
|
||||
_ic_clock_24 = ImageVector.Builder(
|
||||
name = "ic_clock_24",
|
||||
defaultWidth = 24.dp,
|
||||
defaultHeight = 24.dp,
|
||||
viewportWidth = 24f,
|
||||
viewportHeight = 24f,
|
||||
).apply {
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M12.5 6C13.0523 6 13.5 6.44772 13.5 7V12.5C13.5 13.0523 13.0523 13.5 12.5 13.5H8.5C7.94772 13.5 7.5 13.0523 7.5 12.5C7.5 11.9477 7.94772 11.5 8.5 11.5H11.5V7C11.5 6.44772 11.9477 6 12.5 6Z"),
|
||||
)
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.EvenOdd,
|
||||
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()
|
||||
return _ic_clock_24!!
|
||||
}
|
||||
|
||||
@Composable
|
||||
@Preview(showBackground = true)
|
||||
private fun IcClock24Preview() {
|
||||
Icon(
|
||||
imageVector = Icons.ic_clock_24,
|
||||
contentDescription = null,
|
||||
)
|
||||
}
|
||||
|
|
@ -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_32: ImageVector? = null
|
||||
|
||||
val Icons.ic_clock_32: ImageVector
|
||||
get() {
|
||||
if (_ic_clock_32 != null) return _ic_clock_32!!
|
||||
_ic_clock_32 = ImageVector.Builder(
|
||||
name = "ic_clock_32",
|
||||
defaultWidth = 32.dp,
|
||||
defaultHeight = 32.dp,
|
||||
viewportWidth = 32f,
|
||||
viewportHeight = 32f,
|
||||
).apply {
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M16.75 8.77832C17.4404 8.77832 18 9.33796 18 10.0283V16.5986C17.9998 17.2888 17.4402 17.8486 16.75 17.8486H11.9717C11.2815 17.8486 10.7219 17.2888 10.7217 16.5986C10.7217 15.9083 11.2813 15.3486 11.9717 15.3486H15.5V10.0283C15.5 9.33801 16.0597 8.77839 16.75 8.77832Z"),
|
||||
)
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.EvenOdd,
|
||||
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()
|
||||
return _ic_clock_32!!
|
||||
}
|
||||
|
||||
@Composable
|
||||
@Preview(showBackground = true)
|
||||
private fun IcClock32Preview() {
|
||||
Icon(
|
||||
imageVector = Icons.ic_clock_32,
|
||||
contentDescription = null,
|
||||
)
|
||||
}
|
||||
|
|
@ -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_cloud_12: ImageVector? = null
|
||||
|
||||
val Icons.ic_cloud_12: ImageVector
|
||||
get() {
|
||||
if (_ic_cloud_12 != null) return _ic_cloud_12!!
|
||||
_ic_cloud_12 = ImageVector.Builder(
|
||||
name = "ic_cloud_12",
|
||||
defaultWidth = 12.dp,
|
||||
defaultHeight = 12.dp,
|
||||
viewportWidth = 12f,
|
||||
viewportHeight = 12f,
|
||||
).apply {
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M6 2.5C7.58676 2.5 8.93378 3.61968 9.16406 5.11621C10.1976 5.32125 11 6.19869 11 7.28613C10.9998 8.53149 9.94696 9.4999 8.7002 9.5H3.75C2.25458 9.5 1.00016 8.33961 1 6.85742L1.0127 6.6084C1.12395 5.48086 1.97219 4.56517 3.08887 4.30176C3.60666 3.20468 4.74729 2.50058 6 2.5ZM6 3.5C5.0434 3.50054 4.21375 4.08011 3.91699 4.91113C3.8537 5.08852 3.69562 5.21546 3.50879 5.23926C2.62693 5.35165 2.0015 6.05933 2 6.8584C2.00072 7.74248 2.7607 8.5 3.75 8.5H8.7002C9.44118 8.4999 9.99976 7.93382 10 7.28613C10 6.63827 9.44134 6.07139 8.7002 6.07129C8.42405 6.07129 8.2002 5.84743 8.2002 5.57129C8.20012 4.45004 7.23824 3.5 6 3.5Z"),
|
||||
)
|
||||
}.build()
|
||||
return _ic_cloud_12!!
|
||||
}
|
||||
|
||||
@Composable
|
||||
@Preview(showBackground = true)
|
||||
private fun IcCloud12Preview() {
|
||||
Icon(
|
||||
imageVector = Icons.ic_cloud_12,
|
||||
contentDescription = null,
|
||||
)
|
||||
}
|
||||
|
|
@ -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_cloud_12_filled: ImageVector? = null
|
||||
|
||||
val Icons.ic_cloud_12_filled: ImageVector
|
||||
get() {
|
||||
if (_ic_cloud_12_filled != null) return _ic_cloud_12_filled!!
|
||||
_ic_cloud_12_filled = ImageVector.Builder(
|
||||
name = "ic_cloud_12_filled",
|
||||
defaultWidth = 12.dp,
|
||||
defaultHeight = 12.dp,
|
||||
viewportWidth = 12f,
|
||||
viewportHeight = 12f,
|
||||
).apply {
|
||||
addPath(
|
||||
fill = SolidColor(Color.Black),
|
||||
pathFillType = PathFillType.NonZero,
|
||||
pathData = addPathNodes("M6 3C7.49112 3 8.70012 4.15119 8.7002 5.57129C9.69422 5.57139 10.5 6.33942 10.5 7.28613C10.4998 8.23265 9.69407 8.9999 8.7002 9H3.75C2.50746 9 1.50016 8.04076 1.5 6.85742C1.50201 5.78861 2.33303 4.88504 3.44531 4.74316C3.81716 3.70129 4.84455 3.00054 6 3Z"),
|
||||
)
|
||||
}.build()
|
||||
return _ic_cloud_12_filled!!
|
||||
}
|
||||
|
||||
@Composable
|
||||
@Preview(showBackground = true)
|
||||
private fun IcCloud12FilledPreview() {
|
||||
Icon(
|
||||
imageVector = Icons.ic_cloud_12_filled,
|
||||
contentDescription = null,
|
||||
)
|
||||
}
|
||||
|
|
@ -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_cloud_16: ImageVector? = null
|
||||
|
||||
val Icons.ic_cloud_16: ImageVector
|
||||
get() {
|
||||
if (_ic_cloud_16 != null) return _ic_cloud_16!!
|
||||
_ic_cloud_16 = ImageVector.Builder(
|
||||
name = "ic_cloud_16",
|
||||
defaultWidth = 16.dp,
|
||||
defaultHeight = 16.dp,
|
||||
viewportWidth = 16f,
|
||||
viewportHeight = 16f,
|
||||
).apply {
|
||||
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"),
|
||||
)
|
||||
}.build()
|
||||
return _ic_cloud_16!!
|
||||
}
|
||||
|
||||
@Composable
|
||||
@Preview(showBackground = true)
|
||||
private fun IcCloud16Preview() {
|
||||
Icon(
|
||||
imageVector = Icons.ic_cloud_16,
|
||||
contentDescription = null,
|
||||
)
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue