decathlon-ui 0.3.39 → 0.3.41
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +16 -0
- package/dist/components/cashback-card/cashback-card.component.d.ts +1 -1
- package/dist/components/cashback-card/cashback-card.component.d.ts.map +1 -1
- package/dist/components/cashback-card/cashback-card.component.js +9 -10
- package/dist/components/product-card/product-card.component.d.ts.map +1 -1
- package/dist/components/product-card/product-card.component.js +19 -3
- package/dist/components/product-card/product-card.types.d.ts +2 -0
- package/dist/components/product-card/product-card.types.d.ts.map +1 -1
- package/dist/icons/components/Alipay.d.ts +4 -0
- package/dist/icons/components/Alipay.d.ts.map +1 -0
- package/dist/icons/components/Alipay.js +4 -0
- package/dist/icons/components/Amex.d.ts +4 -0
- package/dist/icons/components/Amex.d.ts.map +1 -0
- package/dist/icons/components/Amex.js +4 -0
- package/dist/icons/components/Bag.d.ts +4 -0
- package/dist/icons/components/Bag.d.ts.map +1 -0
- package/dist/icons/components/Bag.js +4 -0
- package/dist/icons/components/ClubeDecathlon.d.ts +1 -1
- package/dist/icons/components/ClubeDecathlon.d.ts.map +1 -1
- package/dist/icons/components/ClubeDecathlon.js +2 -2
- package/dist/icons/components/CodeFront.d.ts +4 -0
- package/dist/icons/components/CodeFront.d.ts.map +1 -0
- package/dist/icons/components/CodeFront.js +16 -0
- package/dist/icons/components/Diners.d.ts +4 -0
- package/dist/icons/components/Diners.d.ts.map +1 -0
- package/dist/icons/components/Diners.js +4 -0
- package/dist/icons/components/Discover.d.ts +4 -0
- package/dist/icons/components/Discover.d.ts.map +1 -0
- package/dist/icons/components/Discover.js +4 -0
- package/dist/icons/components/Elo.d.ts +4 -0
- package/dist/icons/components/Elo.d.ts.map +1 -0
- package/dist/icons/components/Elo.js +4 -0
- package/dist/icons/components/Frame.d.ts +4 -0
- package/dist/icons/components/Frame.d.ts.map +1 -0
- package/dist/icons/components/Frame.js +4 -0
- package/dist/icons/components/Generic.d.ts +4 -0
- package/dist/icons/components/Generic.d.ts.map +1 -0
- package/dist/icons/components/Generic.js +4 -0
- package/dist/icons/components/Hiper.d.ts +4 -0
- package/dist/icons/components/Hiper.d.ts.map +1 -0
- package/dist/icons/components/Hiper.js +6 -0
- package/dist/icons/components/Hipercard.d.ts +4 -0
- package/dist/icons/components/Hipercard.d.ts.map +1 -0
- package/dist/icons/components/Hipercard.js +4 -0
- package/dist/icons/components/House.d.ts +4 -0
- package/dist/icons/components/House.d.ts.map +1 -0
- package/dist/icons/components/House.js +4 -0
- package/dist/icons/components/Jcb.d.ts +4 -0
- package/dist/icons/components/Jcb.d.ts.map +1 -0
- package/dist/icons/components/Jcb.js +4 -0
- package/dist/icons/components/Maestro.d.ts +4 -0
- package/dist/icons/components/Maestro.d.ts.map +1 -0
- package/dist/icons/components/Maestro.js +4 -0
- package/dist/icons/components/Mastercard.d.ts +4 -0
- package/dist/icons/components/Mastercard.d.ts.map +1 -0
- package/dist/icons/components/Mastercard.js +4 -0
- package/dist/icons/components/Mir.d.ts +4 -0
- package/dist/icons/components/Mir.d.ts.map +1 -0
- package/dist/icons/components/Mir.js +10 -0
- package/dist/icons/components/Ray.d.ts +4 -0
- package/dist/icons/components/Ray.d.ts.map +1 -0
- package/dist/icons/components/Ray.js +4 -0
- package/dist/icons/components/Star.d.ts.map +1 -1
- package/dist/icons/components/Star.js +2 -2
- package/dist/icons/components/Unionpay.d.ts +4 -0
- package/dist/icons/components/Unionpay.d.ts.map +1 -0
- package/dist/icons/components/Unionpay.js +4 -0
- package/dist/icons/components/Visa.d.ts +4 -0
- package/dist/icons/components/Visa.d.ts.map +1 -0
- package/dist/icons/components/Visa.js +4 -0
- package/dist/icons/components/Walk.d.ts +4 -0
- package/dist/icons/components/Walk.d.ts.map +1 -0
- package/dist/icons/components/Walk.js +4 -0
- package/dist/icons/index.d.ts +16 -10
- package/dist/icons/index.d.ts.map +1 -1
- package/dist/icons/index.js +16 -10
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -9,6 +9,22 @@ Biblioteca de componentes React Native com Storybook para documentação hospeda
|
|
|
9
9
|
| `npm run storybook` | Inicia o Storybook em modo desenvolvimento (porta 6006). |
|
|
10
10
|
| `npm run build-storybook` | Gera a versão estática em `docs/` para publicar no GitHub Pages. |
|
|
11
11
|
| `npm run build` | Compila os componentes TypeScript para `dist/`. Utilizado antes de publicar no npm. |
|
|
12
|
+
| `npm run generate-icons` | Gera componentes React Native a partir dos arquivos SVG em `src/icons/foundations/` e atualiza automaticamente o `index.ts` com os exports. |
|
|
13
|
+
| `npm run generate-icon-exports` | Atualiza apenas o arquivo `src/icons/index.ts` com os exports dos ícones (adiciona sufixo "Icon" automaticamente). |
|
|
14
|
+
|
|
15
|
+
## Gerando Ícones
|
|
16
|
+
|
|
17
|
+
Para adicionar novos ícones à biblioteca:
|
|
18
|
+
|
|
19
|
+
1. Coloque os arquivos `.svg` na pasta `src/icons/foundations/`
|
|
20
|
+
2. Execute `npm run generate-icons`
|
|
21
|
+
|
|
22
|
+
O script irá:
|
|
23
|
+
- Converter os arquivos SVG em componentes React Native
|
|
24
|
+
- Gerar automaticamente os exports no `src/icons/index.ts` com o sufixo "Icon"
|
|
25
|
+
- Configurar as props `size` e `color` automaticamente
|
|
26
|
+
|
|
27
|
+
**Exemplo:** O arquivo `star.svg` será convertido em um componente e exportado como `StarIcon`.
|
|
12
28
|
|
|
13
29
|
## Publicação
|
|
14
30
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { CashbackCardProps } from
|
|
1
|
+
import { CashbackCardProps } from "./cashback-card.types";
|
|
2
2
|
declare function CashbackCardComponent({ isLoggedIn, userName, cashbackAmount, onRefreshCashback, onLastOrderPress, lastOrder, showLastOrder, toggleModal, }: CashbackCardProps): import("react/jsx-runtime").JSX.Element;
|
|
3
3
|
export declare const CashbackCard: import("react").MemoExoticComponent<typeof CashbackCardComponent>;
|
|
4
4
|
export {};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"cashback-card.component.d.ts","sourceRoot":"","sources":["../../../src/components/cashback-card/cashback-card.component.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"cashback-card.component.d.ts","sourceRoot":"","sources":["../../../src/components/cashback-card/cashback-card.component.tsx"],"names":[],"mappings":"AAQA,OAAO,EAAE,iBAAiB,EAAE,MAAM,uBAAuB,CAAC;AAE1D,iBAAS,qBAAqB,CAAC,EAC7B,UAAU,EACV,QAAQ,EACR,cAAkB,EAClB,iBAAiB,EACjB,gBAAgB,EAChB,SAAS,EACT,aAAqB,EACrB,WAAW,GACZ,EAAE,iBAAiB,2CA0EnB;AAED,eAAO,MAAM,YAAY,mEAA8B,CAAC"}
|
|
@@ -1,18 +1,17 @@
|
|
|
1
1
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
-
import { memo } from
|
|
3
|
-
import { Image, Text, TouchableOpacity, View } from
|
|
4
|
-
import { ChevronRightIcon } from
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
import { createCashbackCardStyles } from './cashback-card.styles';
|
|
2
|
+
import { memo } from "react";
|
|
3
|
+
import { Image, Text, TouchableOpacity, View } from "react-native";
|
|
4
|
+
import { ChevronRightIcon, MoneyCircleIcon } from "../../icons";
|
|
5
|
+
import { useTheme } from "../../themes";
|
|
6
|
+
import { formatCurrency } from "../../utils";
|
|
7
|
+
import { Button } from "../button";
|
|
8
|
+
import { createCashbackCardStyles } from "./cashback-card.styles";
|
|
10
9
|
function CashbackCardComponent({ isLoggedIn, userName, cashbackAmount = 0, onRefreshCashback, onLastOrderPress, lastOrder, showLastOrder = false, toggleModal, }) {
|
|
11
10
|
const styles = createCashbackCardStyles();
|
|
12
11
|
const { colors } = useTheme();
|
|
13
12
|
if (!isLoggedIn) {
|
|
14
|
-
return (_jsxs(View, { style: styles.container, children: [_jsxs(View, { style: styles.cashbackContainer, children: [_jsx(Text, { style: styles.cashbackLabel, children: "Cashback dispon\u00EDvel" }), _jsxs(View, { style: styles.cashbackRow, children: [_jsxs(Text, { style: styles.cashbackPlaceholder, children: ["R$",
|
|
13
|
+
return (_jsxs(View, { style: styles.container, children: [_jsxs(View, { style: styles.cashbackContainer, children: [_jsx(Text, { style: styles.cashbackLabel, children: "Cashback dispon\u00EDvel" }), _jsxs(View, { style: styles.cashbackRow, children: [_jsxs(Text, { style: styles.cashbackPlaceholder, children: ["R$", " ", _jsx(Text, { style: { color: colors.textDisabled, fontSize: 24 }, children: "\u2022 \u2022 \u2022 \u2022" })] }), _jsx(MoneyCircleIcon, { size: 40, viewBox: "0 0 40 40" })] })] }), _jsx(Text, { style: styles.loginMessage, children: "Fa\u00E7a login no app para ver o Cashback dispon\u00EDvel em sua conta :)" }), _jsx(Button, { label: "Fazer login", onPress: toggleModal, size: "small" })] }));
|
|
15
14
|
}
|
|
16
|
-
return (_jsxs(View, { style: styles.container, children: [_jsxs(View, { style: styles.cashbackContainer, children: [_jsx(Text, { style: styles.cashbackLabel, children: "Cashback dispon\u00EDvel" }), _jsxs(View, { style: styles.cashbackRow, children: [_jsx(Text, { style: styles.cashbackValue, children: formatCurrency(cashbackAmount) }), _jsx(TouchableOpacity, { onPress: onRefreshCashback, children: _jsx(
|
|
15
|
+
return (_jsxs(View, { style: styles.container, children: [_jsxs(View, { style: styles.cashbackContainer, children: [_jsx(Text, { style: styles.cashbackLabel, children: "Cashback dispon\u00EDvel" }), _jsxs(View, { style: styles.cashbackRow, children: [_jsx(Text, { style: styles.cashbackValue, children: formatCurrency(cashbackAmount) }), _jsx(TouchableOpacity, { onPress: onRefreshCashback, children: _jsx(MoneyCircleIcon, { size: 40, viewBox: "0 0 40 40" }) })] })] }), lastOrder ? (_jsxs(TouchableOpacity, { style: styles.lastOrderContainer, onPress: onLastOrderPress, children: [_jsxs(View, { children: [_jsx(Image, { source: { uri: lastOrder.productImage }, style: styles.lastOrderProductImage }), _jsxs(Text, { style: styles.lastOrderProductQuantity, children: ["+", lastOrder.quantity] })] }), _jsxs(View, { style: { flex: 1 }, children: [_jsx(Text, { style: styles.lastOrderLabel, children: "\u00DAltima compra" }), _jsx(Text, { style: styles.lastOrderDescription, numberOfLines: 2, children: lastOrder.description })] }), _jsx(TouchableOpacity, { style: styles.lastOrderChevron, children: _jsx(ChevronRightIcon, { size: 24, color: colors.textAction }) })] })) : showLastOrder ? (_jsx(Text, { style: styles.noOrdersMessage, children: "Voc\u00EA ainda n\u00E3o realizou nenhuma compra." })) : null] }));
|
|
17
16
|
}
|
|
18
17
|
export const CashbackCard = memo(CashbackCardComponent);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"product-card.component.d.ts","sourceRoot":"","sources":["../../../src/components/product-card/product-card.component.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAS/B,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,sBAAsB,CAAC;
|
|
1
|
+
{"version":3,"file":"product-card.component.d.ts","sourceRoot":"","sources":["../../../src/components/product-card/product-card.component.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAS/B,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,sBAAsB,CAAC;AAoO7D,eAAO,MAAM,WAAW,8CAAmC,CAAC"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "react/jsx-runtime";
|
|
2
2
|
import * as React from "react";
|
|
3
3
|
import { Image, Text, TouchableOpacity, View } from "react-native";
|
|
4
4
|
import { HeartFillIcon, HeartIcon, StarIcon } from "../../icons";
|
|
@@ -6,9 +6,22 @@ import { useTheme } from "../../themes";
|
|
|
6
6
|
import { Badge } from "../badge";
|
|
7
7
|
import { Loading } from "../loading";
|
|
8
8
|
import { useProductCardStyles } from "./product-card.styles";
|
|
9
|
-
const ProductCardComponent = ({ variant = "grid", imageUrl, brand, productName, rating, reviewCount, price, discountPrice, colorsVariants, isFavorite = false, onFavoritePress, onPress, testID, width, flags = [], showRating = true, isLoadingFavorite = false, customStyles, showFavoriteButton = true, }) => {
|
|
9
|
+
const ProductCardComponent = ({ variant = "grid", imageUrl, brand, productName, rating, reviewCount, price, discountPrice, cashPrice, offerPrice, colorsVariants, isFavorite = false, onFavoritePress, onPress, testID, width, flags = [], showRating = true, isLoadingFavorite = false, customStyles, showFavoriteButton = true, }) => {
|
|
10
10
|
const styles = useProductCardStyles(variant, width);
|
|
11
11
|
const theme = useTheme();
|
|
12
|
+
const parsePriceToNumber = React.useCallback((price) => {
|
|
13
|
+
if (!price)
|
|
14
|
+
return 0;
|
|
15
|
+
if (typeof price === 'number')
|
|
16
|
+
return price;
|
|
17
|
+
// Remove currency symbols and convert Brazilian format to number
|
|
18
|
+
const cleanPrice = price
|
|
19
|
+
.replace(/R\$\s?/, '') // Remove "R$ " prefix
|
|
20
|
+
.replace(/\./g, '') // Remove thousands separators (dots)
|
|
21
|
+
.replace(',', '.'); // Replace decimal comma with dot
|
|
22
|
+
const parsed = parseFloat(cleanPrice);
|
|
23
|
+
return isNaN(parsed) ? 0 : parsed;
|
|
24
|
+
}, []);
|
|
12
25
|
const handleFavoritePress = React.useCallback((e) => {
|
|
13
26
|
e.stopPropagation();
|
|
14
27
|
onFavoritePress === null || onFavoritePress === void 0 ? void 0 : onFavoritePress();
|
|
@@ -38,11 +51,14 @@ const ProductCardComponent = ({ variant = "grid", imageUrl, brand, productName,
|
|
|
38
51
|
}, icon: flag.icon }, flag.name + index + productName));
|
|
39
52
|
})), showFavoriteButton && (_jsx(TouchableOpacity, { style: [
|
|
40
53
|
isFavorite ? styles.favoriteButton : styles.unfavoriteButton,
|
|
41
|
-
], onPress: handleFavoritePress, accessibilityLabel: isFavorite ? "Remover dos favoritos" : "Adicionar aos favoritos", accessibilityRole: "button", children: isLoadingFavorite ? (_jsx(Loading, { size: 16 })) : isFavorite ? (_jsx(HeartFillIcon, { size: 16, color: "#101010" })) : (_jsx(HeartIcon, { size: 16, color: "#101010" })) }))] }), variant !== "lastViewed" && (_jsxs(View, { style: styles.detailsContainer, children: [_jsxs(View, { style: styles.productInfo, children: [_jsx(Text, { style: styles.brandText, children: brand }), _jsx(View, { style: styles.nameContainer, children: _jsx(Text, { numberOfLines: 3, style: styles.nameText, accessibilityLabel: `Nome do produto: ${productName}`, children: productName }) })] }), variant === "grid" && showRating && (_jsxs(View, { style: styles.ratingContainer, accessibilityLabel: `Avaliação: ${rating} estrelas, ${reviewCount} avaliações`, children: [_jsx(StarIcon, { size: 11, color: "#15181B", filled: true }), _jsxs(View, { style: styles.reviewCountWrapper, children: [_jsx(Text, { style: styles.ratingText, children: rating === null || rating === void 0 ? void 0 : rating.toString().replace(/\./g, ",") }), _jsx(Text, { style: styles.reviewCountText, children: reviewCount })] })] })),
|
|
54
|
+
], onPress: handleFavoritePress, accessibilityLabel: isFavorite ? "Remover dos favoritos" : "Adicionar aos favoritos", accessibilityRole: "button", children: isLoadingFavorite ? (_jsx(Loading, { size: 16 })) : isFavorite ? (_jsx(HeartFillIcon, { size: 16, color: "#101010" })) : (_jsx(HeartIcon, { size: 16, color: "#101010" })) }))] }), variant !== "lastViewed" && (_jsxs(View, { style: styles.detailsContainer, children: [_jsxs(View, { style: styles.productInfo, children: [_jsx(Text, { style: styles.brandText, children: brand }), _jsx(View, { style: styles.nameContainer, children: _jsx(Text, { numberOfLines: 3, style: styles.nameText, accessibilityLabel: `Nome do produto: ${productName}`, children: productName }) })] }), variant === "grid" && showRating && (_jsxs(View, { style: styles.ratingContainer, accessibilityLabel: `Avaliação: ${rating} estrelas, ${reviewCount} avaliações`, children: [_jsx(StarIcon, { size: 11, color: "#15181B", filled: true }), _jsxs(View, { style: styles.reviewCountWrapper, children: [_jsx(Text, { style: styles.ratingText, children: rating === null || rating === void 0 ? void 0 : rating.toString().replace(/\./g, ",") }), _jsx(Text, { style: styles.reviewCountText, children: reviewCount })] })] })), _jsx(View, { style: styles.priceContainer, children: cashPrice && parsePriceToNumber(cashPrice) < parsePriceToNumber(offerPrice || price) ? (_jsxs(_Fragment, { children: [_jsx(Text, { style: styles.priceText, accessibilityLabel: `Preço à vista: ${cashPrice}`, children: `${cashPrice} à vista` }), _jsx(Text, { style: styles.priceDiscountText, accessibilityLabel: `Preço original: ${offerPrice || price}`, children: offerPrice || price })] })) : (_jsx(Text, { style: styles.priceText, accessibilityLabel: `Preço: ${offerPrice || price}`, children: offerPrice || price })) }), colorsVariants && (_jsx(Text, { style: styles.colorsText, children: colorsVariants }))] }))] })), [
|
|
42
55
|
brand,
|
|
56
|
+
cashPrice,
|
|
43
57
|
handleFavoritePress,
|
|
44
58
|
imageUrl,
|
|
45
59
|
isFavorite,
|
|
60
|
+
offerPrice,
|
|
61
|
+
parsePriceToNumber,
|
|
46
62
|
price,
|
|
47
63
|
productName,
|
|
48
64
|
rating,
|
|
@@ -9,6 +9,8 @@ export interface ProductCardProps {
|
|
|
9
9
|
reviewCount?: number;
|
|
10
10
|
price: string | number;
|
|
11
11
|
discountPrice?: string | number;
|
|
12
|
+
cashPrice?: string | number;
|
|
13
|
+
offerPrice?: string | number;
|
|
12
14
|
isFavorite?: boolean;
|
|
13
15
|
onFavoritePress?: () => void;
|
|
14
16
|
onPress?: () => void;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"product-card.types.d.ts","sourceRoot":"","sources":["../../../src/components/product-card/product-card.types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAEpD,MAAM,MAAM,kBAAkB,GAAG,MAAM,GAAG,OAAO,GAAG,YAAY,CAAC;AAEjE,MAAM,WAAW,gBAAgB;IAC/B,OAAO,CAAC,EAAE,kBAAkB,CAAC;IAC7B,QAAQ,EAAE,MAAM,CAAC;IACjB,KAAK,EAAE,MAAM,CAAC;IACd,WAAW,EAAE,MAAM,CAAC;IACpB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;IACvB,aAAa,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IAChC,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,eAAe,CAAC,EAAE,MAAM,IAAI,CAAC;IAC7B,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;IACrB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,KAAK,CAAC,EAAE;QACN,IAAI,EAAE,MAAM,CAAC;QACb,IAAI,CAAC,EAAE,MAAM,CAAC;QACd,IAAI,EAAE,MAAM,CAAC;QACb,KAAK,CAAC,EAAE,MAAM,CAAC;QACf,SAAS,CAAC,EAAE,MAAM,CAAC;KACpB,EAAE,CAAC;IACJ,kBAAkB,CAAC,EAAE,OAAO,CAAC;IAC7B,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,iBAAiB,CAAC,EAAE,OAAO,CAAC;IAC5B,YAAY,CAAC,EAAE,SAAS,CAAC,SAAS,CAAC,CAAC;IACpC,cAAc,CAAC,EAAE,MAAM,CAAC;CACzB"}
|
|
1
|
+
{"version":3,"file":"product-card.types.d.ts","sourceRoot":"","sources":["../../../src/components/product-card/product-card.types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAEpD,MAAM,MAAM,kBAAkB,GAAG,MAAM,GAAG,OAAO,GAAG,YAAY,CAAC;AAEjE,MAAM,WAAW,gBAAgB;IAC/B,OAAO,CAAC,EAAE,kBAAkB,CAAC;IAC7B,QAAQ,EAAE,MAAM,CAAC;IACjB,KAAK,EAAE,MAAM,CAAC;IACd,WAAW,EAAE,MAAM,CAAC;IACpB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;IACvB,aAAa,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IAChC,SAAS,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IAC5B,UAAU,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IAC7B,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,eAAe,CAAC,EAAE,MAAM,IAAI,CAAC;IAC7B,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;IACrB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,KAAK,CAAC,EAAE;QACN,IAAI,EAAE,MAAM,CAAC;QACb,IAAI,CAAC,EAAE,MAAM,CAAC;QACd,IAAI,EAAE,MAAM,CAAC;QACb,KAAK,CAAC,EAAE,MAAM,CAAC;QACf,SAAS,CAAC,EAAE,MAAM,CAAC;KACpB,EAAE,CAAC;IACJ,kBAAkB,CAAC,EAAE,OAAO,CAAC;IAC7B,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,iBAAiB,CAAC,EAAE,OAAO,CAAC;IAC5B,YAAY,CAAC,EAAE,SAAS,CAAC,SAAS,CAAC,CAAC;IACpC,cAAc,CAAC,EAAE,MAAM,CAAC;CACzB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Alipay.d.ts","sourceRoot":"","sources":["../../../src/icons/components/Alipay.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,SAAS,EAAE,MAAM,UAAU,CAAC;AACrC,QAAA,MAAM,SAAS,GAAI,2BAIhB,SAAS,4CAAwlH,CAAC;AACrmH,eAAe,SAAS,CAAC"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import Svg, { Path } from 'react-native-svg';
|
|
3
|
+
const SvgAlipay = ({ size = 24, color = "#101010", ...props }) => _jsxs(Svg, { width: size, height: size, enableBackground: "new 0 0 780 500", xmlSpace: "preserve", viewBox: "0 0 24 24", fill: "none", preserveAspectRatio: "xMidYMid meet", ...props, children: [_jsx(Path, { d: "m114.26 257.95c-4.8 0.6-13.203 2.399-18.004 6.6-14.403 12.599-6.001 34.798 23.406 34.798 16.803 0 33.607-10.8 46.81-27.6-19.204-8.999-34.808-15.6-52.212-13.8v2e-3z", fill: "#2BA6DF" }), _jsx(Path, { d: "m221.83 273.4c27.006 9 33.007 9.6 33.007 9.6v-95.998c0-16.2-13.203-29.399-30.006-29.399h-126.03c-16.204 0-30.007 13.2-30.007 29.4v126c0 16.199 13.203 29.398 30.007 29.398h126.03c16.203 0 30.006-13.2 30.006-29.4v-1.199s-48.01-19.799-72.616-31.799c-16.203 19.799-37.208 32.399-59.413 32.399-37.208 0-49.811-32.399-31.807-53.398 3.6-4.801 10.202-9 20.404-11.4 15.604-3.6 40.81 2.4 64.215 10.199 4.2-7.799 7.801-16.199 10.202-25.199h-72.616v-7.2h37.208v-14.4h-45.61v-7.2h45.61v-18.598s0-3 3-3h18.005v22.2h45.01v6.6h-45.01v13.2h36.608c-3.6 14.399-9.002 27.598-15.604 38.999 12.003 4.199 22.205 7.8 29.407 10.198z", fill: "#2BA6DF" }), _jsx(Path, { d: "m340.49 201.22l39.608 85.797h-21.005l-10.802-22.8h-32.408l-10.802 22.8h-13.803l40.209-83.398s1.199-2.4 3.6-2.4h5.402v1e-3zm-21.006 55.198h25.206l-12.603-27-12.603 27zm87.448 31.281h-19.204v-81.598c0-2.4 1.2-3.6 4.2-3.6h15.004v85.198zm36.007-0.558h-19.203v-61.798c0-2.4 1.199-3.6 4.199-3.6h15.004v65.398zm23.483-64.116h12.604v6c2.4-1.8 4.801-3.6 7.801-4.2 3.002-1.2 6.002-1.8 10.203-1.8 4.199 0 7.801 0.6 10.803 2.4 3.6 1.8 6 3.6 8.4 6.6s4.201 6 5.402 9.6c1.199 3.6 1.799 7.2 1.799 11.399 0 5.399-0.6 10.2-2.398 14.4-1.801 4.199-3.602 8.399-6.602 11.399-3.002 3-6.002 5.999-10.203 7.8-4.201 1.799-8.402 2.399-13.203 2.399h-6.602c-1.799 0-3.6-0.601-5.4-1.2v21.6h-19.206v-78.597c-0.599-7.8 2.401-7.8 6.602-7.8zm12.603 46.798c0 1.801 0 3 0.6 4.2s1.201 2.399 2.4 3.601c1.199 1.199 2.4 1.799 3.602 2.399 1.199 0.601 3 0.601 4.801 0.601 1.799 0 3-0.601 4.801-1.801 1.199-1.199 3-2.4 3.602-4.8 0.6-2.399 1.799-4.2 2.398-7.2 0.602-2.999 1.201-5.399 1.201-8.999 0-4.201 0-7.8-0.6-10.8-0.602-3-1.201-5.4-2.4-7.8-1.201-1.8-2.4-3.6-3.6-4.8-1.201-1.2-3.002-1.8-4.803-1.8-1.199 0-2.4 0-3.6 0.6-1.201 0.6-2.4 1.2-3.002 1.8-1.199 0.6-1.799 1.8-3 2.4-1.201 1.2-1.801 1.8-2.4 3v29.4-1e-3zm81.028-46.798c4.801 0 8.402 0.6 12.002 1.2 3 0.6 6.002 1.8 8.402 3.6s3.6 3.6 4.801 5.4c1.199 2.4 1.801 4.8 1.801 7.2v47.398h-19.205v-4.8c-1.199 1.2-2.398 1.8-3 2.399l-3.602 1.801c-1.199 0.6-2.4 1.199-4.199 1.199-1.801 0.601-3.602 0.601-5.402 0.601-3 0-5.4-0.601-7.803-1.2-2.398-0.6-4.199-1.8-6-3.6-1.801-1.2-3.002-3-3.602-5.4-0.6-1.8-1.199-4.199-1.199-6.6s0.6-4.801 1.199-6.6c0.6-1.801 2.4-3.601 3.602-5.4 1.199-1.8 3.6-3 5.4-4.2 2.4-1.2 4.201-2.4 7.203-3.6 2.398-1.199 4.799-1.799 7.801-3 2.4-0.6 5.4-1.8 7.801-2.4l2.4-0.6v-6.6c0-1.8 0-3.6-0.6-5.4l-1.801-3.6c-0.6-0.6-1.799-1.8-2.398-1.8-1.201-0.6-2.4-0.6-3.602-0.6 0 0-10.203 0-19.205 7.8l-4.201-6.6c-1.798 1.201 9.004-6.598 23.407-6.598zm6.599 31.799c-1.799 0.6-3.6 1.801-5.398 3l-5.402 3.6c-1.801 1.201-3 2.4-3.6 4.2-1.201 1.2-1.201 3-1.201 4.2s0 2.4 0.6 3.601c0.6 1.199 0.6 1.8 1.199 3 0.602 1.199 1.201 1.199 1.801 1.8 0.6 0.6 1.201 0.6 2.4 0.6 1.801 0 3.002-0.6 4.801-1.2l5.402-3.6v-19.2h-0.602zm46.555 53.998h-12.604l-0.6-11.399s15.604 0.6 20.404-5.4c1.801-2.4 3-8.999 3-8.999l-31.205-59.998h21.004l19.805 38.999 17.404-39h13.803l-31.807 70.799c-1.2 2.4-6.001 14.999-19.204 14.998z", fill: "#3F3A39" }), _jsx(Ellipse, { cx: 433.4, cy: 204.1, rx: 9.602, ry: 8.5, fill: "#2BA6DF" }), _jsx(Path, { d: "m683.68 172.91h-6.602v-1.2h14.402v1.2h-6.6v18.599h-1.801v-18.599h0.601zm10.716-1.201h2.4l4.201 11.4 1.801 4.2c0.6-1.2 1.199-3 1.799-4.2l4.201-11.4h2.4v20.4h-2.398v-18l-1.801 4.8-4.201 12h-1.198l-4.201-12-1.801-4.8v18h-1.801v-20.4h0.599z", fill: "#3F3A39" })] });
|
|
4
|
+
export default SvgAlipay;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Amex.d.ts","sourceRoot":"","sources":["../../../src/icons/components/Amex.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,SAAS,EAAE,MAAM,UAAU,CAAC;AACrC,QAAA,MAAM,OAAO,GAAI,2BAId,SAAS,4CAA2xJ,CAAC;AACxyJ,eAAe,OAAO,CAAC"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import Svg, { Path } from 'react-native-svg';
|
|
3
|
+
const SvgAmex = ({ size = 24, color = "#101010", ...props }) => _jsx(Svg, { width: size, height: size, enableBackground: "new 0 0 780 500", xmlSpace: "preserve", viewBox: "0 0 24 24", fill: "none", preserveAspectRatio: "xMidYMid meet", ...props, children: _jsx(Path, { d: "m575.61 145.11l-15.092 35.039h30.266l-15.174-35.039zm-174.15 21.713c2.845-1.422 4.52-4.515 4.52-8.356 0-3.764-1.76-6.49-4.604-7.771-2.591-1.42-6.577-1.584-10.399-1.584h-27v19.523h26.638c4.266 1e-3 7.831-0.059 10.845-1.812zm-345.97-21.713l-14.921 35.039h29.932l-15.011-35.039zm694.7 224.47h-42.344v-18.852h42.173c4.181 0 7.109-0.525 8.872-2.178 1.667-1.473 2.609-3.555 2.592-5.732 0-2.562-1.062-4.596-2.68-5.813-1.588-1.342-3.907-1.953-7.726-1.953-20.588-0.67-46.273 0.609-46.273-27.211 0-12.75 8.451-26.172 31.461-26.172h43.677v-17.492h-40.58c-12.246 0-21.144 2.81-27.443 7.181v-7.181h-60.022c-9.597 0-20.863 2.279-26.191 7.181v-7.181h-107.19v7.181c-8.529-5.897-22.925-7.181-29.565-7.181h-70.702v7.181c-6.747-6.262-21.758-7.181-30.902-7.181h-79.127l-18.104 18.775-16.959-18.775h-118.2v122.68h115.97l18.655-19.076 17.575 19.076 71.484 0.06v-28.859h7.03c9.484 0.146 20.67-0.223 30.542-4.311v33.106h58.962v-31.976h2.844c3.628 0 3.988 0.146 3.988 3.621v28.348h179.12c11.372 0 23.26-2.786 29.841-7.853v7.853h56.817c11.822 0 23.369-1.588 32.154-5.653v-22.853c-5.324 7.462-15.707 11.245-29.751 11.245zm-363.58-28.967h-27.36v29.488h-42.618l-27-29.102-28.058 29.102h-86.854v-87.914h88.19l26.976 28.818 27.89-28.818h70.064c17.401 0 36.952 4.617 36.952 28.963 0 24.422-19.016 29.463-38.182 29.463zm131.56-3.986c3.097 4.291 3.544 8.297 3.634 16.047v17.428h-22.016v-10.998c0-5.289 0.533-13.121-3.544-17.209-3.2-3.148-8.086-3.9-16.088-3.9h-23.432v32.107h-22.031v-87.914h50.62c11.105 0 19.188 0.473 26.384 4.148 6.92 4.006 11.275 9.494 11.275 19.523-2e-3 14.031-9.769 21.189-15.541 23.389 4.878 1.725 8.866 4.818 10.739 7.379zm90.575-36.258h-51.346v15.982h50.091v17.938h-50.091v17.492l51.346 0.078v18.242h-73.182v-87.914h73.182v18.182zm56.344 69.731h-42.705v-18.852h42.535c4.16 0 7.109-0.527 8.957-2.178 1.507-1.359 2.591-3.336 2.591-5.73 0-2.564-1.174-4.598-2.676-5.818-1.678-1.34-3.993-1.947-7.809-1.947-20.506-0.674-46.186 0.605-46.186-27.213 0-12.752 8.363-26.174 31.35-26.174h43.96v18.709h-40.225c-3.987 0-6.579 0.146-8.783 1.592-2.405 1.424-3.295 3.535-3.295 6.322 0 3.316 2.04 5.574 4.797 6.549 2.314 0.771 4.797 0.996 8.533 0.996l11.805 0.309c11.899 0.273 20.073 2.25 25.04 7.068 4.266 4.232 6.559 9.578 6.559 18.625-2e-3 18.913-12.335 27.742-34.448 27.742zm-170.06-68.313c-2.649-1.508-6.559-1.588-10.461-1.588h-27.001v19.744h26.64c4.265 0 7.892-0.145 10.822-1.812 2.842-1.646 4.543-4.678 4.543-8.438s-1.701-6.482-4.543-7.906zm244.99-1.59c-3.988 0-6.641 0.145-8.873 1.588-2.314 1.426-3.202 3.537-3.202 6.326 0 3.314 1.953 5.572 4.794 6.549 2.315 0.771 4.796 0.996 8.448 0.996l11.887 0.303c11.99 0.285 19.998 2.262 24.879 7.08 0.889 0.668 1.423 1.42 2.034 2.174v-25.014h-39.965l-2e-3 -2e-3zm-352.65 0h-28.59v22.391h28.336c8.424 0 13.663-4.006 13.667-11.611-4e-3 -7.688-5.497-10.78-13.413-10.78zm-190.81 0v15.984h48.136v17.938h-48.136v17.49h53.909l25.047-25.791-23.983-25.621h-54.973zm140.77 61.479v-70.482l-33.664 34.674 33.664 35.808zm-138.93-141.15v15.148h183.19l-0.085-32.046h3.545c2.483 0.083 3.205 0.302 3.205 4.229v27.818h94.748v-7.461c7.642 3.924 19.527 7.461 35.168 7.461h39.86l8.531-19.522h18.913l8.342 19.522h76.811v-18.544l11.629 18.543h61.555v-122.58h-60.915v14.477l-8.53-14.477h-62.507v14.477l-7.833-14.477h-84.434c-14.135 0-26.555 1.89-36.591 7.158v-7.158h-58.268v7.158c-6.387-5.43-15.089-7.158-24.762-7.158h-212.87l-14.282 31.662-14.668-31.662h-67.047v14.477l-7.367-14.477h-57.18l-26.553 58.284v46.621l39.264-87.894h32.579l37.29 83.217v-83.217h35.789l28.695 59.625 26.362-59.625h36.507v87.894h-22.475l-0.082-68.837-31.796 68.837h-19.252l-31.877-68.898v68.898h-44.6l-8.425-19.605h-45.654l-8.512 19.605h-23.814v17.682h37.466l8.447-19.523h18.914l8.425 19.523h73.713v-14.927l6.579 14.989h38.266l6.58-15.214zm288.67-80.176c7.085-7.015 18.188-10.25 33.298-10.25h21.227v18.833h-20.782c-7.998 0-12.521 1.14-16.871 5.208-3.74 3.7-6.304 10.696-6.304 19.908 0 9.417 1.955 16.206 6.028 20.641 3.376 3.478 9.513 4.533 15.283 4.533h9.851l30.902-69.12h32.853l37.124 83.134v-83.133h33.386l38.543 61.213v-61.213h22.46v87.891h-31.072l-41.562-65.968v65.968h-44.656l-8.532-19.605h-45.55l-8.278 19.605h-25.66c-10.657 0-24.151-2.258-31.793-9.722-7.707-7.462-11.713-17.571-11.713-33.553-4e-3 -13.037 2.389-24.953 11.818-34.37zm-45.101-10.249h22.372v87.894h-22.372v-87.894zm-100.87 0h50.432c11.203 0 19.464 0.285 26.553 4.21 6.936 3.926 11.095 9.658 11.095 19.46 0 14.015-9.763 21.254-15.448 23.429 4.796 1.75 8.896 4.841 10.849 7.401 3.096 4.372 3.629 8.277 3.629 16.126v17.267h-22.115l-0.083-11.084c0-5.29 0.528-12.896-3.461-17.122-3.203-3.09-8.088-3.763-15.983-3.763h-23.538v31.97h-21.927l-3e-3 -87.894zm-88.393 0h73.249v18.303h-51.32v15.843h50.088v18.017h-50.088v17.553h51.32v18.177h-73.249v-87.893z", fill: "#2557D6" }) });
|
|
4
|
+
export default SvgAmex;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Bag.d.ts","sourceRoot":"","sources":["../../../src/icons/components/Bag.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,SAAS,EAAE,MAAM,UAAU,CAAC;AACrC,QAAA,MAAM,MAAM,GAAI,2BAIb,SAAS,4CAAyiC,CAAC;AACtjC,eAAe,MAAM,CAAC"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import Svg, { Path } from 'react-native-svg';
|
|
3
|
+
const SvgBag = ({ size = 24, color = "#101010", ...props }) => _jsx(Svg, { width: size, height: size, fill: "none", viewBox: "0 0 24 24", preserveAspectRatio: "xMidYMid meet", ...props, children: _jsx(Path, { fillRule: "evenodd", clipRule: "evenodd", d: "M8.14331 2.86593C7.56345 3.69883 7.16529 4.96375 7.16529 6.5999H5.66529C5.66529 4.73605 6.11714 3.15098 6.91227 2.00888C7.71345 0.858095 8.87682 0.149902 10.2153 0.149902C11.5656 0.149902 12.7266 0.894799 13.5208 2.05001C14.3117 3.20036 14.7653 4.78214 14.7653 6.5999H13.2653C13.2653 5.01767 12.8689 3.74945 12.2848 2.8998C11.704 2.05501 10.965 1.6499 10.2153 1.6499C9.45376 1.6499 8.71714 2.04171 8.14331 2.86593ZM0.185547 8.1499H20.245L17.9494 18.7535C17.7718 19.6261 17.0436 20.1499 16.2153 20.1499H4.21529C3.38699 20.1499 2.65878 19.6261 2.48117 18.7535L0.185547 8.1499ZM2.04504 9.6499L3.95082 18.4528C3.96754 18.5364 4.00112 18.576 4.02866 18.5977C4.05889 18.6214 4.11654 18.6499 4.21529 18.6499H16.2153C16.314 18.6499 16.3717 18.6214 16.4019 18.5977C16.4295 18.576 16.4631 18.5364 16.4799 18.4528L16.4822 18.4412L18.3855 9.6499H2.04504Z", fill: "#101010", stroke: "#101010", strokeWidth: 0.3 }) });
|
|
4
|
+
export default SvgBag;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { IconProps } from
|
|
1
|
+
import { IconProps } from "../types";
|
|
2
2
|
declare const SvgClubeDecathlon: ({ size, color, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
3
3
|
export default SvgClubeDecathlon;
|
|
4
4
|
//# sourceMappingURL=ClubeDecathlon.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ClubeDecathlon.d.ts","sourceRoot":"","sources":["../../../src/icons/components/ClubeDecathlon.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"ClubeDecathlon.d.ts","sourceRoot":"","sources":["../../../src/icons/components/ClubeDecathlon.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,SAAS,EAAE,MAAM,UAAU,CAAC;AACrC,QAAA,MAAM,iBAAiB,GAAI,2BAIxB,SAAS,4CAcX,CAAC;AACF,eAAe,iBAAiB,CAAC"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
-
import Svg, { Path } from
|
|
3
|
-
const SvgClubeDecathlon = ({ size = 24, color = "#101010", ...props }) => _jsx(Svg, { width: size, height: size, fill: "none", viewBox: "0 0 24 24", preserveAspectRatio: "xMidYMid meet", ...props, children: _jsx(Path, { d: "M15.051 0.5C8.45491 0.5 0.25 7.37506 0.25 13.073C0.25 16.0158 2.49386 17.5 5.45745 17.5C7.63357 17.5 10.2669 16.6982 12.8072 15.1543V3.78399C12.1298 4.95258 8.94602 9.66106 6.38886 12.1688C5.08489 13.4483 4.05187 14.0028 3.16279 14.0028C2.16363 14.0028 1.68946 13.3204 1.68946 12.3053C1.68946 7.6992 9.38632 1.71124 14.4837 1.71124C16.5836 1.71124 17.9384 2.64952 17.9384 4.47491C17.9384 6.14676 16.8122 8.24511 14.8901 10.1814V13.7042C18.2432 11.0344 20.25 7.63096 20.25 4.88434C20.25 1.99272 18.0146 0.5 15.051 0.5Z", fill:
|
|
2
|
+
import Svg, { Path } from "react-native-svg";
|
|
3
|
+
const SvgClubeDecathlon = ({ size = 24, color = "#101010", ...props }) => (_jsx(Svg, { width: size, height: size, fill: "none", viewBox: "0 0 24 24", preserveAspectRatio: "xMidYMid meet", ...props, children: _jsx(Path, { d: "M15.051 0.5C8.45491 0.5 0.25 7.37506 0.25 13.073C0.25 16.0158 2.49386 17.5 5.45745 17.5C7.63357 17.5 10.2669 16.6982 12.8072 15.1543V3.78399C12.1298 4.95258 8.94602 9.66106 6.38886 12.1688C5.08489 13.4483 4.05187 14.0028 3.16279 14.0028C2.16363 14.0028 1.68946 13.3204 1.68946 12.3053C1.68946 7.6992 9.38632 1.71124 14.4837 1.71124C16.5836 1.71124 17.9384 2.64952 17.9384 4.47491C17.9384 6.14676 16.8122 8.24511 14.8901 10.1814V13.7042C18.2432 11.0344 20.25 7.63096 20.25 4.88434C20.25 1.99272 18.0146 0.5 15.051 0.5Z", fill: color }) }));
|
|
4
4
|
export default SvgClubeDecathlon;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CodeFront.d.ts","sourceRoot":"","sources":["../../../src/icons/components/CodeFront.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,SAAS,EAAE,MAAM,UAAU,CAAC;AACrC,QAAA,MAAM,YAAY,GAAI,2BAInB,SAAS,4CAYC,CAAC;AACd,eAAe,YAAY,CAAC"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import Svg, { Path, G } from 'react-native-svg';
|
|
3
|
+
const SvgCodeFront = ({ size = 24, color = "#101010", ...props }) => _jsxs(Svg, { id: "a", width: size, height: size, viewBox: "0 0 24 24", fill: "none", preserveAspectRatio: "xMidYMid meet", ...props, children: [_jsx(Path, { d: "M0,0H780V500H0V0Z", style: {
|
|
4
|
+
fill: "#000c9d"
|
|
5
|
+
} }), _jsx(Path, { d: "M66.9,106.9h110.3v99.7H66.9V106.9Z", style: {
|
|
6
|
+
fill: "#9d9400"
|
|
7
|
+
} }), _jsxs(G, { children: [_jsx(Path, { d: "M94.7,284.1v-3.8h-5.1v-11.3h-4.2l-.4,11.4h-11.4l10.6-25.1-4-1.7-11.7,27.1v3.4h16.4v9.7h4.7v-9.7h5.1Zm19.6-30.5c-4,0-7.9,1.4-11.2,4.6l2.6,2.9c2.6-2.5,5-3.7,8.4-3.7,4.2,0,7.5,2.4,7.5,6.7,0,4.8-3.7,7-7.5,7h-2.4l-.6,3.8h3.3c4.7,0,8.2,1.8,8.2,7.5,0,4.9-3.3,8.1-8.9,8.1-3.2,0-6.6-1.3-8.8-4l-3.2,2.6c3,3.7,7.7,5.2,12.1,5.2,8.2,0,13.7-5.2,13.7-12,0-6.2-4.4-9.4-9-9.7,4.2-.8,7.8-4.4,7.8-9.2,.1-5.3-4.6-9.8-12-9.8h0Zm34.5,0c-5.3,0-8.9,1.9-12.1,5.7l3.3,2.5c2.5-2.9,4.7-4.2,8.6-4.2,4.4,0,7.1,2.8,7.1,7.2,0,6.5-3.2,10.8-18.2,25.1v3.9h23.5l.6-4.1h-18.6c13.1-11.9,17.7-17.8,17.7-25.1,0-6.3-4.4-11-11.9-11h0Zm48.7,36.3h-8.3v-35.6h-4.2l-11.7,7.2,2.1,3.4,9.1-5.5v30.5h-9.8v3.9h22.8v-3.9Zm69.6-5.8v-3.8h-5.1v-11.3h-4.2l-.4,11.3h-11.4l10.6-25.1-4-1.7-11.7,27.1v3.4h16.4v9.7h4.7v-9.7l5.1,.1Zm19.6-30.5c-4,0-7.9,1.4-11.2,4.6l2.6,2.9c2.6-2.5,5-3.7,8.4-3.7,4.2,0,7.5,2.4,7.5,6.7,0,4.8-3.7,7-7.5,7h-2.4l-.6,3.8h3.3c4.7,0,8.2,1.8,8.2,7.5,0,4.9-3.3,8.1-8.9,8.1-3.2,0-6.6-1.3-8.8-4l-3.2,2.6c3,3.7,7.7,5.2,12.1,5.2,8.2,0,13.7-5.2,13.7-12,0-6.2-4.4-9.4-9-9.7,4.2-.8,7.8-4.4,7.8-9.2,.1-5.3-4.6-9.8-12-9.8h0Zm34.5,0c-5.3,0-8.9,1.9-12.1,5.7l3.3,2.5c2.5-2.9,4.7-4.2,8.6-4.2,4.4,0,7.1,2.8,7.1,7.2,0,6.5-3.2,10.8-18.2,25.1v3.9h23.5l.6-4.1h-18.6c13.1-11.9,17.7-17.8,17.7-25.1,0-6.3-4.5-11-11.9-11h0Zm48.7,36.3h-8.3v-35.6h-4.2l-11.7,7.2,2.1,3.4,9.1-5.5v30.5h-9.8v3.9h22.8v-3.9Zm69.6-5.8v-3.8h-5.1v-11.3h-4.2l-.4,11.3h-11.4l10.6-25.1-4-1.7-11.7,27.1v3.4h16.4v9.7h4.7v-9.7l5.1,.1Zm19.6-30.5c-4,0-7.9,1.4-11.2,4.6l2.6,2.9c2.6-2.5,5-3.7,8.4-3.7,4.2,0,7.5,2.4,7.5,6.7,0,4.8-3.7,7-7.5,7h-2.4l-.6,3.8h3.3c4.7,0,8.2,1.8,8.2,7.5,0,4.9-3.3,8.1-8.9,8.1-3.2,0-6.6-1.3-8.8-4l-3.2,2.6c3,3.7,7.7,5.2,12.1,5.2,8.2,0,13.7-5.2,13.7-12,0-6.2-4.4-9.4-9-9.7,4.2-.8,7.8-4.4,7.8-9.2,.1-5.3-4.6-9.8-12-9.8h0Zm34.5,0c-5.3,0-8.9,1.9-12.1,5.7l3.3,2.5c2.5-2.9,4.7-4.2,8.6-4.2,4.4,0,7.1,2.8,7.1,7.2,0,6.5-3.2,10.8-18.2,25.1v3.9h23.5l.6-4.1h-18.6c13.1-11.9,17.7-17.8,17.7-25.1,0-6.3-4.5-11-11.9-11h0Zm48.7,36.3h-8.3v-35.6h-4.2l-11.7,7.2,2.1,3.4,9.1-5.5v30.5h-9.8v3.9h22.8v-3.9Zm69.6-5.8v-3.8h-5.1v-11.3h-4.2l-.4,11.3h-11.4l10.6-25.1-4-1.7-11.7,27.1v3.4h16.4v9.7h4.7v-9.7l5.1,.1Zm19.6-30.5c-4,0-7.9,1.4-11.2,4.6l2.6,2.9c2.6-2.5,5-3.7,8.4-3.7,4.2,0,7.5,2.4,7.5,6.7,0,4.8-3.7,7-7.5,7h-2.4l-.6,3.8h3.3c4.7,0,8.2,1.8,8.2,7.5,0,4.9-3.3,8.1-8.9,8.1-3.2,0-6.6-1.3-8.8-4l-3.2,2.6c3,3.7,7.7,5.2,12.1,5.2,8.2,0,13.7-5.2,13.7-12,0-6.2-4.4-9.4-9-9.7,4.2-.8,7.8-4.4,7.8-9.2,.1-5.3-4.6-9.8-12-9.8h0Zm34.4,0c-5.3,0-8.9,1.9-12.1,5.7l3.3,2.5c2.5-2.9,4.7-4.2,8.6-4.2,4.4,0,7.1,2.8,7.1,7.2,0,6.5-3.2,10.8-18.2,25.1v3.9h23.5l.6-4.1h-18.6c13.1-11.9,17.7-17.8,17.7-25.1,0-6.3-4.4-11-11.9-11h0Zm48.8,36.3h-8.3v-35.6h-4.2l-11.7,7.2,2.1,3.4,9.1-5.5v30.5h-9.8v3.9h22.8v-3.9Z", style: {
|
|
8
|
+
fill: "#fff"
|
|
9
|
+
} }), _jsx(Path, { d: "M72.2,389.2h6.4v-22.2l-7,1.4v-3.6l7-1.4h3.9v25.8h6.5v3.3h-16.8v-3.3Zm25.5,0h6.4v-22.2l-7,1.4v-3.6l7-1.4h3.9v25.8h6.4v3.3h-16.7v-3.3Zm40.9,0h13.8v3.3h-18.5v-3.3c1.5-1.5,3.5-3.6,6.1-6.2s4.2-4.3,4.9-5.1c1.3-1.4,2.1-2.6,2.6-3.6s.8-2,.8-2.9c0-1.5-.5-2.8-1.6-3.8s-2.5-1.5-4.2-1.5c-1.2,0-2.5,.2-3.9,.6s-2.8,1.1-4.4,2v-4c1.6-.6,3.1-1.1,4.5-1.4s2.6-.5,3.8-.5c3,0,5.4,.8,7.2,2.3s2.7,3.5,2.7,6.1c0,1.2-.2,2.3-.7,3.4-.4,1.1-1.3,2.3-2.4,3.8-.3,.4-1.4,1.5-3.1,3.3-2,1.7-4.4,4.3-7.6,7.5h0Zm34-12.4c1.9,.4,3.4,1.2,4.4,2.5,1.1,1.3,1.6,2.9,1.6,4.7,0,2.9-1,5.1-3,6.7s-4.8,2.4-8.4,2.4c-1.2,0-2.5-.1-3.8-.4-1.3-.2-2.6-.6-4-1.1v-3.8c1.1,.6,2.3,1.1,3.6,1.4s2.7,.5,4.1,.5c2.5,0,4.4-.5,5.6-1.5,1.3-1,2-2.4,2-4.3,0-1.7-.6-3.1-1.8-4-1.2-1-2.9-1.5-5-1.5h-3.4v-3.2h3.6c1.9,0,3.4-.4,4.5-1.2,1-.8,1.5-1.9,1.5-3.4s-.5-2.6-1.6-3.4-2.6-1.2-4.6-1.2c-1.1,0-2.2,.1-3.5,.4-1.2,.2-2.6,.6-4.1,1.1v-3.5c1.5-.4,2.9-.7,4.2-.9,1.3-.2,2.6-.3,3.7-.3,3,0,5.4,.7,7.1,2,1.7,1.4,2.6,3.2,2.6,5.5,0,1.6-.5,3-1.4,4.1-.9,1.2-2.2,2-3.9,2.4Zm26.3-13.4h15.5v3.3h-11.9v7.1c.6-.2,1.1-.3,1.7-.4,.6-.1,1.1-.2,1.7-.2,3.3,0,5.8,.9,7.7,2.7s2.9,4.2,2.9,7.2-1,5.6-2.9,7.3c-2,1.7-4.7,2.6-8.3,2.6-1.2,0-2.5-.1-3.8-.3-1.3-.2-2.6-.5-3.9-.9v-4c1.2,.6,2.4,1.1,3.6,1.4s2.6,.5,4,.5c2.3,0,4-.6,5.4-1.8s2-2.8,2-4.8-.7-3.6-2-4.8-3.1-1.8-5.4-1.8c-1.1,0-2.1,.1-3.2,.4-1,.2-2.1,.6-3.2,1.1l.1-14.6Zm33.9,15.3c-1.9,0-3.4,.5-4.4,1.5-1.1,1-1.6,2.4-1.6,4.1s.5,3.1,1.6,4.1,2.6,1.5,4.4,1.5c1.9,0,3.4-.5,4.4-1.5,1.1-1,1.6-2.4,1.6-4.1,0-1.8-.5-3.1-1.6-4.1-1-1-2.5-1.5-4.4-1.5h0Zm-4-1.7c-1.7-.4-3-1.2-4-2.4-.9-1.2-1.4-2.6-1.4-4.2,0-2.3,.8-4.2,2.5-5.5,1.7-1.4,3.9-2,6.8-2s5.2,.7,6.8,2c1.7,1.4,2.5,3.2,2.5,5.5,0,1.7-.5,3.1-1.4,4.2-.9,1.2-2.2,1.9-3.9,2.4,1.9,.4,3.4,1.3,4.4,2.6,1.1,1.3,1.6,2.9,1.6,4.7,0,2.8-.9,5-2.6,6.5-1.7,1.5-4.2,2.3-7.4,2.3s-5.7-.8-7.4-2.3-2.6-3.7-2.6-6.5c0-1.9,.5-3.4,1.6-4.7,1.2-1.3,2.6-2.2,4.5-2.6Zm-1.4-6.2c0,1.5,.5,2.7,1.4,3.5s2.3,1.3,4,1.3,3-.4,4-1.3c1-.8,1.4-2,1.4-3.5s-.5-2.7-1.4-3.5c-1-.8-2.3-1.3-4-1.3s-3,.4-4,1.3c-.9,.8-1.4,2-1.4,3.5h0Z", style: {
|
|
10
|
+
fill: "rgba(255,255,255,.78)"
|
|
11
|
+
} }), _jsx(Path, { d: "M325.5,388.2h6.4v-22.2l-7,1.4v-3.6l7-1.4h3.9v25.8h6.4v3.3h-16.8l.1-3.3Zm36.7-12.4c1.9,.4,3.4,1.2,4.4,2.5,1.1,1.3,1.6,2.9,1.6,4.7,0,2.9-1,5.1-3,6.7s-4.8,2.4-8.4,2.4c-1.2,0-2.5-.1-3.8-.4-1.3-.2-2.6-.6-4-1.1v-3.8c1.1,.6,2.3,1.1,3.6,1.4,1.3,.3,2.7,.5,4.1,.5,2.5,0,4.4-.5,5.6-1.5,1.3-1,2-2.4,2-4.3,0-1.7-.6-3.1-1.8-4-1.2-1-2.9-1.5-5-1.5h-3.5v-3.2h3.6c1.9,0,3.4-.4,4.5-1.2,1-.8,1.5-1.9,1.5-3.4s-.5-2.6-1.6-3.4-2.6-1.2-4.5-1.2c-1.1,0-2.2,.1-3.5,.4-1.2,.2-2.6,.6-4.1,1.1v-3.5c1.5-.4,2.9-.7,4.2-.9,1.3-.2,2.6-.3,3.7-.3,3,0,5.4,.7,7.1,2.1s2.6,3.2,2.6,5.5c0,1.6-.5,3-1.4,4.1-.9,1.1-2.2,1.9-3.9,2.3h0Zm16.9,12.4h13.8v3.3h-18.5v-3.3c1.5-1.6,3.5-3.6,6.1-6.2s4.2-4.3,4.9-5.1c1.3-1.4,2.1-2.6,2.6-3.6s.8-2,.8-2.9c0-1.5-.5-2.8-1.6-3.8s-2.5-1.5-4.2-1.5c-1.2,0-2.5,.2-3.9,.6s-2.8,1.1-4.4,2v-4c1.6-.6,3.1-1.1,4.5-1.4s2.6-.5,3.8-.5c3,0,5.4,.8,7.2,2.3,1.8,1.5,2.7,3.5,2.7,6.1,0,1.2-.2,2.3-.7,3.4-.4,1.1-1.3,2.3-2.4,3.8-.3,.4-1.4,1.5-3.1,3.3-2,1.8-4.4,4.3-7.6,7.5h0Zm22.8,0h6.4v-22.2l-7,1.4v-3.6l7-1.4h3.9v25.8h6.4v3.3h-16.8l.1-3.3Zm49.4-12.4c1.9,.4,3.4,1.2,4.4,2.5,1.1,1.3,1.6,2.9,1.6,4.7,0,2.9-1,5.1-3,6.7s-4.8,2.4-8.4,2.4c-1.2,0-2.5-.1-3.8-.4-1.3-.2-2.6-.6-4-1.1v-3.8c1.1,.6,2.3,1.1,3.6,1.4,1.3,.3,2.7,.5,4.1,.5,2.5,0,4.4-.5,5.6-1.5,1.3-1,2-2.4,2-4.3,0-1.7-.6-3.1-1.8-4-1.2-1-2.9-1.5-5-1.5h-3.4v-3.2h3.6c1.9,0,3.4-.4,4.5-1.2,1-.8,1.5-1.9,1.5-3.4s-.5-2.6-1.6-3.4-2.6-1.2-4.6-1.2c-1.1,0-2.2,.1-3.5,.4-1.2,.2-2.6,.6-4.1,1.1v-3.5c1.5-.4,2.9-.7,4.2-.9,1.3-.2,2.6-.3,3.7-.3,3,0,5.4,.7,7.1,2.1s2.6,3.2,2.6,5.5c0,1.6-.5,3-1.4,4.1-.8,1.1-2.2,1.9-3.9,2.3h0Zm24.4-10l-10,15.6h10v-15.6Zm-1.1-3.4h5v19h4.2v3.3h-4.2v6.9h-3.9v-6.9h-13.2v-3.8l12.1-18.5h0Zm15.8,0h15.5v3.3h-11.9v7.1c.6-.2,1.1-.3,1.7-.4s1.1-.2,1.7-.2c3.3,0,5.8,.9,7.7,2.7,1.9,1.8,2.9,4.2,2.9,7.2s-1,5.6-2.9,7.3c-2,1.7-4.7,2.6-8.3,2.6-1.2,0-2.5-.1-3.8-.3-1.3-.2-2.6-.5-3.9-.9v-4c1.2,.6,2.4,1.1,3.6,1.4s2.6,.5,4,.5c2.3,0,4-.6,5.4-1.8,1.3-1.2,2-2.8,2-4.8s-.7-3.6-2-4.8c-1.3-1.2-3.1-1.8-5.4-1.8-1.1,0-2.1,.1-3.2,.4-1,.2-2.1,.6-3.2,1.1v-14.6h.1Zm25.4,0h15.5v3.3h-11.9v7.1c.6-.2,1.1-.3,1.7-.4,.6-.1,1.1-.2,1.7-.2,3.3,0,5.8,.9,7.7,2.7,1.9,1.8,2.9,4.2,2.9,7.2s-1,5.6-2.9,7.3c-2,1.7-4.7,2.6-8.3,2.6-1.2,0-2.5-.1-3.8-.3-1.3-.2-2.6-.5-3.9-.9v-4c1.2,.6,2.4,1.1,3.6,1.4,1.2,.3,2.6,.5,4,.5,2.3,0,4-.6,5.4-1.8,1.3-1.2,2-2.8,2-4.8s-.7-3.6-2-4.8c-1.3-1.2-3.1-1.8-5.4-1.8-1.1,0-2.1,.1-3.2,.4-1,.2-2.1,.6-3.2,1.1l.1-14.6Z", style: {
|
|
12
|
+
fill: "rgba(255,255,255,.78)"
|
|
13
|
+
} })] }), _jsx(Path, { d: "M761.9,226.7v-2.5h-3.4v-7.4h-2.8l-.3,7.4h-7.4l7-16.5-2.6-1.1-7.7,17.8v2.3h10.8v6.4h3.1v-6.4h3.3Zm-30.8-20.1c-2.6,0-5.2,.9-7.4,3l1.7,1.9c1.7-1.6,3.3-2.4,5.5-2.4,2.8,0,5,1.6,5,4.4,0,3.1-2.5,4.6-5,4.6h-1.6l-.4,2.5h2.2c3.1,0,5.4,1.2,5.4,5,0,3.3-2.2,5.3-5.8,5.3-2.1,0-4.3-.9-5.8-2.6l-2.1,1.7c2,2.4,5.1,3.4,8,3.4,5.4,0,9-3.4,9-7.9,0-4-2.9-6.2-5.9-6.4,2.8-.5,5.1-2.9,5.1-6,.1-3.5-3-6.5-7.9-6.5h0Zm-22.6,0c-3.5,0-5.9,1.2-7.9,3.7l2.2,1.7c1.7-1.9,3.1-2.8,5.6-2.8,2.9,0,4.7,1.8,4.7,4.7,0,4.3-2.1,7.1-11.9,16.5v2.6h15.5l.4-2.7h-12.3c8.6-7.8,11.6-11.7,11.6-16.5,0-4.1-2.9-7.2-7.9-7.2h0Zm-13.8,23.9h-5.4v-23.5h-2.8l-7.7,4.8,1.4,2.2,6-3.6v20h-6.4v2.6h15v-2.5h-.1Z", style: {
|
|
14
|
+
fill: "#fff"
|
|
15
|
+
} })] });
|
|
16
|
+
export default SvgCodeFront;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Diners.d.ts","sourceRoot":"","sources":["../../../src/icons/components/Diners.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,SAAS,EAAE,MAAM,UAAU,CAAC;AACrC,QAAA,MAAM,SAAS,GAAI,2BAIhB,SAAS,4CAAkzB,CAAC;AAC/zB,eAAe,SAAS,CAAC"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import Svg, { Path } from 'react-native-svg';
|
|
3
|
+
const SvgDiners = ({ size = 24, color = "#101010", ...props }) => _jsxs(Svg, { width: size, height: size, enableBackground: "new 0 0 780 500", xmlSpace: "preserve", viewBox: "0 0 24 24", fill: "none", preserveAspectRatio: "xMidYMid meet", ...props, children: [_jsx(Path, { d: "m599.93 251.45c0-99.416-82.979-168.13-173.9-168.1h-78.241c-92.003-0.033-167.73 68.705-167.73 168.1 0 90.931 75.729 165.64 167.73 165.2h78.241c90.913 0.437 173.9-74.293 173.9-165.2z", fill: "#0079BE" }), _jsx(Path, { d: "m348.28 97.432c-84.069 0.026-152.19 68.308-152.22 152.58 0.021 84.258 68.145 152.53 152.22 152.56 84.088-0.025 152.23-68.301 152.24-152.56-0.011-84.274-68.15-152.55-152.24-152.58z", fill: "#fff" }), _jsx(Path, { d: "m252.07 249.6c0.08-41.18 25.747-76.296 61.94-90.25v180.48c-36.193-13.946-61.861-49.044-61.94-90.229zm131 90.275v-180.52c36.208 13.921 61.915 49.057 61.98 90.256-0.066 41.212-25.772 76.322-61.98 90.269z", fill: "#0079BE" })] });
|
|
4
|
+
export default SvgDiners;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Discover.d.ts","sourceRoot":"","sources":["../../../src/icons/components/Discover.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,SAAS,EAAE,MAAM,UAAU,CAAC;AACrC,QAAA,MAAM,WAAW,GAAI,2BAIlB,SAAS,4CAA2iE,CAAC;AACxjE,eAAe,WAAW,CAAC"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import Svg, { Path } from 'react-native-svg';
|
|
3
|
+
const SvgDiscover = ({ size = 24, color = "#101010", ...props }) => _jsxs(Svg, { width: size, height: size, enableBackground: "new 0 0 780 500", xmlSpace: "preserve", viewBox: "0 0 24 24", fill: "none", preserveAspectRatio: "xMidYMid meet", ...props, children: [_jsx(Path, { d: "m409.41 197.26c30.938 0 56.02 23.58 56.02 52.709v0.033c0 29.129-25.082 52.742-56.02 52.742-30.941 0-56.022-23.613-56.022-52.742v-0.033c0-29.129 25.081-52.709 56.022-52.709z", fill: "#F47216" }), _jsx(Path, { d: "m321.43 197.94c8.836 0 16.247 1.785 25.27 6.09v22.753c-8.544-7.863-15.955-11.154-25.757-11.154-19.265 0-34.413 15.015-34.413 34.051 0 20.074 14.681 34.195 35.368 34.195 9.312 0 16.586-3.12 24.802-10.856v22.764c-9.343 4.142-16.912 5.775-25.757 5.775-31.277 0-55.581-22.597-55.581-51.736-2e-3 -28.83 24.949-51.882 56.068-51.882zm-97.113 0.626c11.546 0 22.109 3.721 30.942 10.994l-10.748 13.248c-5.351-5.646-10.411-8.027-16.563-8.027-8.854 0-15.301 4.744-15.301 10.988 0 5.354 3.618 8.188 15.944 12.481 23.364 8.043 30.289 15.176 30.289 30.926 0 19.193-14.976 32.554-36.319 32.554-15.631 0-26.993-5.795-36.457-18.871l13.268-12.03c4.73 8.608 12.622 13.223 22.42 13.223 9.163 0 15.947-5.95 15.947-13.983 0-4.164-2.056-7.733-6.158-10.258-2.066-1.195-6.158-2.978-14.199-5.646-19.292-6.538-25.91-13.527-25.91-27.186-1e-3 -16.227 14.213-28.413 32.845-28.413zm234.72 1.729h22.436l28.084 66.592 28.447-66.592h22.267l-45.493 101.69h-11.054l-44.687-101.69zm-301.21 0.152h20.541v99.143h-20.541v-99.143zm411.73 0h58.253v16.799h-37.726v22.006h36.336v16.791h-36.336v26.762h37.726v16.785h-58.253v-99.143zm115.59 57.377c15.471-2.965 23.983-12.926 23.983-28.105 0-18.562-13.575-29.271-37.266-29.271h-30.454v99.144h20.516v-39.83h2.681l28.43 39.828h25.26l-33.15-41.766zm-17.218-11.736h-6.002v-30.025h6.326c12.791 0 19.744 5.049 19.744 14.697 2e-3 9.967-6.951 15.328-20.068 15.328zm-576.09-45.641h-30.149v99.143h29.992c15.946 0 27.465-3.543 37.573-11.445 12.014-9.359 19.117-23.467 19.117-38.057 1e-3 -29.259-23.221-49.641-56.533-49.641zm23.997 74.479c-6.454 5.484-14.837 7.879-28.108 7.879h-5.514v-65.559h5.513c13.271 0 21.323 2.238 28.108 8.018 7.104 5.956 11.377 15.184 11.377 24.682 1e-3 9.513-4.273 19.024-11.376 24.98z" })] });
|
|
4
|
+
export default SvgDiscover;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Elo.d.ts","sourceRoot":"","sources":["../../../src/icons/components/Elo.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,SAAS,EAAE,MAAM,UAAU,CAAC;AACrC,QAAA,MAAM,MAAM,GAAI,2BAIb,SAAS,4CAA2nD,CAAC;AACxoD,eAAe,MAAM,CAAC"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import Svg, { Path } from 'react-native-svg';
|
|
3
|
+
const SvgElo = ({ size = 24, color = "#101010", ...props }) => _jsxs(Svg, { width: size, height: size, enableBackground: "new 0 0 780 500", xmlSpace: "preserve", viewBox: "0 0 24 24", fill: "none", preserveAspectRatio: "xMidYMid meet", ...props, children: [_jsx(Path, { d: "m166.5 184.95c6.8-2.3 14.1-3.5 21.7-3.5 33.2 0 60.9 23.6 67.2 54.9l47-9.6c-10.8-53.2-57.8-93.3-114.2-93.3-12.9 0-25.3 2.1-36.9 6l15.2 45.5z", fill: "#FFF100" }), _jsx(Path, { d: "m111 337.35l31.8-36c-14.2-12.6-23.1-30.9-23.1-51.4 0-20.4 8.9-38.8 23.1-51.3l-31.8-35.9c-24.1 21.4-39.3 52.5-39.3 87.3 0 34.7 15.2 65.899 39.3 87.3z", fill: "#00A3DF" }), _jsx(Path, { d: "m255.4 263.75c-6.4 31.3-34 54.8-67.2 54.8-7.6 0-14.9-1.2-21.8-3.5l-15.2 45.5c11.6 3.899 24.1 6 37 6 56.4 0 103.4-40 114.2-93.2l-47-9.6z", fill: "#EE4023" }), _jsx(Path, { d: "m459 295.95c-7.799 7.601-18.299 12.2-29.9 12-8-0.1-15.398-2.5-21.6-6.5l-15.6 24.801c10.699 6.699 23.199 10.699 36.801 10.899 19.699 0.3 37.698-7.5 50.8-20.2l-20.501-21zm-28.199-101.1c-39.201-0.6-71.6 30.8-72.201 70-0.2 14.7 4 28.5 11.5 39.9l128.8-55.101c-7.199-30.899-34.798-54.199-68.098-54.799m-42.701 75.599c-0.2-1.6-0.3-3.3-0.3-5 0.4-23.1 19.401-41.6 42.5-41.2 12.6 0.2 23.799 5.9 31.299 14.9l-73.499 31.3zm151.3-107.6v137.3l23.801 9.9-11.301 27.1-23.6-9.8c-5.299-2.3-8.9-5.8-11.6-9.8-2.6-4-4.6-9.601-4.6-17v-137.7h27.3zm85.901 63.5c4.201-1.4 8.6-2.1 13.301-2.1 20.299 0 37.1 14.4 41 33.5l28.699-5.9c-6.6-32.5-35.299-56.9-69.699-56.9-7.9 0-15.5 1.3-22.5 3.6l9.199 27.8zm-33.901 92.9l19.4-21.9c-8.699-7.7-14.1-18.9-14.1-31.4s5.5-23.7 14.1-31.3l-19.4-21.9c-14.699 13-24 32.1-24 53.3s9.301 40.2 24 53.2zm88.202-44.801c-3.9 19.101-20.801 33.5-41 33.5-4.6 0-9.1-0.8-13.301-2.199l-9.299 27.8c7.1 2.399 14.699 3.7 22.6 3.7 34.4 0 63.1-24.4 69.699-56.9l-28.699-5.901z" })] });
|
|
4
|
+
export default SvgElo;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Frame.d.ts","sourceRoot":"","sources":["../../../src/icons/components/Frame.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,SAAS,EAAE,MAAM,UAAU,CAAC;AACrC,QAAA,MAAM,QAAQ,GAAI,2BAIf,SAAS,4CAAynD,CAAC;AACtoD,eAAe,QAAQ,CAAC"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import Svg, { Path, G, Defs, ClipPath, Rect } from 'react-native-svg';
|
|
3
|
+
const SvgFrame = ({ size = 24, color = "#101010", ...props }) => _jsxs(Svg, { width: size, height: size, fill: "none", viewBox: "0 0 24 24", preserveAspectRatio: "xMidYMid meet", ...props, children: [_jsx(G, { clipPath: "url(#clip0_2306_907)", children: _jsx(Path, { d: "M1.34026 9.58399C0.965258 9.58399 0.648259 9.45399 0.389259 9.19499C0.262919 9.07144 0.163225 8.92332 0.0963222 8.75976C0.0294197 8.5962 -0.00327341 8.42067 0.000258503 8.24399V1.75699C0.000258503 1.38199 0.130259 1.06499 0.389259 0.805992C0.648259 0.545992 0.965258 0.416992 1.33926 0.416992H13.8273C14.2023 0.416992 14.5193 0.546992 14.7783 0.805992C15.0383 1.06499 15.1673 1.38199 15.1673 1.75599V8.24399C15.1673 8.61899 15.0373 8.93599 14.7783 9.19499C14.6547 9.32133 14.5066 9.42103 14.343 9.48793C14.1795 9.55483 14.0039 9.58752 13.8273 9.58399H1.34026ZM1.34026 8.49999H13.8273C13.8605 8.49929 13.8932 8.49184 13.9235 8.47809C13.9537 8.46433 13.9809 8.44457 14.0033 8.41999C14.0278 8.39762 14.0476 8.37047 14.0614 8.34022C14.0751 8.30996 14.0826 8.27722 14.0833 8.24399V1.75699C14.0827 1.72359 14.0753 1.69066 14.0615 1.66023C14.0478 1.62979 14.028 1.60248 14.0033 1.57999C13.9809 1.55542 13.9537 1.53565 13.9235 1.5219C13.8932 1.50814 13.8605 1.50069 13.8273 1.49999H11.3753V4.67999H10.2923V1.49999H8.12526V4.67999H7.04226V1.49999H4.87526V4.67999H3.79226V1.49999H1.34026C1.30686 1.50056 1.27393 1.50794 1.24349 1.5217C1.21305 1.53546 1.18575 1.5553 1.16326 1.57999C1.13856 1.60248 1.11873 1.62979 1.10497 1.66023C1.09121 1.69066 1.08382 1.72359 1.08326 1.75699V8.24399C1.08326 8.30799 1.11026 8.36699 1.16326 8.41999C1.21726 8.47399 1.27626 8.49999 1.34026 8.49999Z", fill: "white" }) }), _jsx(Defs, { children: _jsx(ClipPath, { id: "clip0_2306_907", children: _jsx(Rect, { width: 16, height: 10, fill: "white" }) }) })] });
|
|
4
|
+
export default SvgFrame;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Generic.d.ts","sourceRoot":"","sources":["../../../src/icons/components/Generic.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,SAAS,EAAE,MAAM,UAAU,CAAC;AACrC,QAAA,MAAM,UAAU,GAAI,2BAIjB,SAAS,4CAA+qW,CAAC;AAC5rW,eAAe,UAAU,CAAC"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import Svg, { Path, Rect } from 'react-native-svg';
|
|
3
|
+
const SvgGeneric = ({ size = 24, color = "#101010", ...props }) => _jsxs(Svg, { width: size, height: size, enableBackground: "new 0 0 780 500", xmlSpace: "preserve", viewBox: "0 0 24 24", fill: "none", preserveAspectRatio: "xMidYMid meet", ...props, children: [_jsx(Rect, { width: 780, height: 500, fill: "#000C9D" }), _jsx(Rect, { x: 66.908, y: 106.91, width: 110.32, height: 99.679, fill: "#9D9400" }), _jsx(Path, { d: "m94.714 284.15v-3.795h-5.117v-11.27h-4.198l-0.402 11.27h-11.443l10.58-25.07-3.967-1.725-11.673 27.141v3.449h16.445v9.66h4.658v-9.66h5.117zm19.586-30.589c-4.025 0-7.878 1.381-11.213 4.6l2.588 2.934c2.645-2.473 5.002-3.68 8.395-3.68 4.197 0 7.532 2.357 7.532 6.727 0 4.773-3.737 6.959-7.532 6.959h-2.358l-0.575 3.795h3.335c4.658 0 8.223 1.84 8.223 7.531 0 4.945-3.278 8.107-8.855 8.107-3.22 0-6.555-1.322-8.798-3.967l-3.22 2.645c2.99 3.68 7.705 5.232 12.133 5.232 8.165 0 13.742-5.174 13.742-12.018 0-6.152-4.37-9.371-9.027-9.717 4.197-0.807 7.762-4.43 7.762-9.199 0-5.406-4.715-9.949-12.132-9.949zm34.477 0c-5.347 0-8.912 1.896-12.075 5.693l3.335 2.529c2.53-2.934 4.658-4.197 8.568-4.197 4.427 0 7.072 2.76 7.072 7.188 0 6.496-3.22 10.809-18.17 25.127v3.908h23.518l0.575-4.08h-18.63c13.052-11.904 17.71-17.826 17.71-25.07 0-6.325-4.428-11.098-11.903-11.098zm48.738 36.339h-8.28v-35.648h-4.198l-11.73 7.244 2.07 3.393 9.085-5.463v30.476h-9.775v3.908h22.828v-3.91zm69.587-5.75v-3.795h-5.117v-11.27h-4.198l-0.402 11.27h-11.443l10.58-25.07-3.967-1.725-11.673 27.141v3.449h16.445v9.66h4.658v-9.66h5.117zm19.585-30.589c-4.025 0-7.877 1.381-11.212 4.6l2.587 2.934c2.645-2.473 5.003-3.68 8.395-3.68 4.198 0 7.533 2.357 7.533 6.727 0 4.773-3.738 6.959-7.533 6.959h-2.357l-0.575 3.795h3.335c4.657 0 8.222 1.84 8.222 7.531 0 4.945-3.277 8.107-8.855 8.107-3.22 0-6.555-1.322-8.797-3.967l-3.22 2.645c2.99 3.68 7.705 5.232 12.132 5.232 8.165 0 13.743-5.174 13.743-12.018 0-6.152-4.37-9.371-9.028-9.717 4.198-0.807 7.763-4.43 7.763-9.199 0-5.406-4.715-9.949-12.133-9.949zm34.478 0c-5.348 0-8.913 1.896-12.075 5.693l3.335 2.529c2.53-2.934 4.657-4.197 8.567-4.197 4.428 0 7.073 2.76 7.073 7.188 0 6.496-3.221 10.809-18.171 25.127v3.908h23.518l0.575-4.08h-18.63c13.053-11.904 17.71-17.826 17.71-25.07 0-6.325-4.427-11.098-11.902-11.098zm48.737 36.339h-8.28v-35.648h-4.196l-11.729 7.244 2.069 3.393 9.085-5.463v30.476h-9.774v3.908h22.827l-2e-3 -3.91zm69.588-5.75v-3.795h-5.119v-11.27h-4.197l-0.401 11.27h-11.443l10.58-25.07-3.969-1.725-11.672 27.141v3.449h16.445v9.66h4.656v-9.66h5.12zm19.584-30.589c-4.023 0-7.877 1.381-11.213 4.6l2.588 2.934c2.646-2.473 5.002-3.68 8.396-3.68 4.195 0 7.531 2.357 7.531 6.727 0 4.773-3.736 6.959-7.531 6.959h-2.358l-0.574 3.795h3.334c4.658 0 8.225 1.84 8.225 7.531 0 4.945-3.278 8.107-8.854 8.107-3.222 0-6.556-1.322-8.799-3.967l-3.22 2.645c2.988 3.68 7.703 5.232 12.134 5.232 8.163 0 13.741-5.174 13.741-12.018 0-6.152-4.371-9.371-9.026-9.717 4.196-0.807 7.762-4.43 7.762-9.199-3e-3 -5.406-4.718-9.949-12.136-9.949zm34.479 0c-5.348 0-8.912 1.896-12.076 5.693l3.337 2.529c2.528-2.934 4.657-4.197 8.565-4.197 4.428 0 7.072 2.76 7.072 7.188 0 6.496-3.219 10.809-18.17 25.127v3.908h23.518l0.576-4.08h-18.631c13.053-11.904 17.711-17.826 17.711-25.07 0-6.326-4.428-11.098-11.904-11.098h2e-3zm48.736 36.339h-8.279v-35.648h-4.197l-11.729 7.244 2.07 3.393 9.084-5.463v30.476h-9.775v3.908h22.828l-2e-3 -3.91zm69.588-5.75v-3.795h-5.117v-11.27h-4.197l-0.401 11.27h-11.443l10.58-25.07-3.967-1.725-11.672 27.141v3.449h16.445v9.66h4.655v-9.66h5.117zm19.584-30.589c-4.023 0-7.877 1.381-11.211 4.6l2.588 2.934c2.646-2.473 5.002-3.68 8.396-3.68 4.196 0 7.532 2.357 7.532 6.727 0 4.773-3.737 6.959-7.532 6.959h-2.357l-0.574 3.795h3.334c4.658 0 8.224 1.84 8.224 7.531 0 4.945-3.277 8.107-8.855 8.107-3.219 0-6.555-1.322-8.797-3.967l-3.221 2.645c2.99 3.68 7.705 5.232 12.133 5.232 8.166 0 13.742-5.174 13.742-12.018 0-6.152-4.369-9.371-9.027-9.717 4.197-0.807 7.764-4.43 7.764-9.199 0-5.406-4.715-9.949-12.133-9.949h-6e-3zm34.478 0c-5.347 0-8.912 1.896-12.074 5.693l3.334 2.529c2.531-2.934 4.658-4.197 8.567-4.197 4.429 0 7.072 2.76 7.072 7.188 0 6.496-3.221 10.809-18.17 25.127v3.908h23.519l0.575-4.08h-18.631c13.054-11.904 17.711-17.826 17.711-25.07 2e-3 -6.325-4.428-11.098-11.903-11.098zm48.739 36.339h-8.278v-35.648h-4.2l-11.729 7.244 2.068 3.393 9.086-5.463v30.476h-9.775v3.908h22.828v-3.91z", fill: "#fff" }), _jsx(Path, { d: "m72.219 389.2h6.445v-22.246l-7.012 1.406v-3.594l6.973-1.406h3.945v25.84h6.446v3.32h-16.797v-3.32zm25.468 0h6.446v-22.246l-7.012 1.406v-3.594l6.973-1.406h3.945v25.84h6.445v3.32h-16.797v-3.32zm40.918 0h13.77v3.32h-18.516v-3.32c1.497-1.549 3.535-3.625 6.114-6.229 2.591-2.617 4.218-4.305 4.882-5.061 1.263-1.42 2.142-2.617 2.637-3.594 0.508-0.988 0.762-1.959 0.762-2.91 0-1.549-0.547-2.811-1.64-3.789-1.081-0.977-2.495-1.465-4.24-1.465-1.237 0-2.545 0.215-3.925 0.646-1.367 0.43-2.831 1.08-4.394 1.953v-3.986c1.588-0.637 3.072-1.119 4.453-1.443 1.38-0.326 2.643-0.486 3.789-0.486 3.021 0 5.429 0.754 7.226 2.264 1.797 1.512 2.696 3.529 2.696 6.055 0 1.199-0.228 2.338-0.684 3.418-0.442 1.068-1.256 2.332-2.441 3.789-0.326 0.377-1.361 1.471-3.106 3.281-1.745 1.796-4.206 4.315-7.383 7.557zm34.024-12.402c1.888 0.404 3.359 1.244 4.414 2.521 1.067 1.275 1.601 2.852 1.601 4.727 0 2.877-0.99 5.104-2.968 6.682-1.979 1.574-4.792 2.361-8.438 2.361-1.224 0-2.487-0.125-3.789-0.371-1.289-0.234-2.623-0.594-4.004-1.074v-3.809c1.093 0.639 2.292 1.119 3.594 1.445 1.302 0.324 2.663 0.488 4.082 0.488 2.474 0 4.356-0.488 5.645-1.465 1.302-0.979 1.953-2.396 1.953-4.26 0-1.719-0.605-3.061-1.817-4.021-1.198-0.979-2.872-1.465-5.02-1.465h-3.398v-3.242h3.555c1.94 0 3.425-0.385 4.453-1.152 1.029-0.781 1.543-1.9 1.543-3.359 0-1.496-0.534-2.645-1.601-3.438-1.055-0.809-2.572-1.211-4.551-1.211-1.081 0-2.24 0.117-3.477 0.354-1.237 0.232-2.597 0.598-4.082 1.092v-3.514c1.498-0.418 2.897-0.73 4.2-0.939 1.314-0.207 2.551-0.311 3.71-0.311 2.995 0 5.365 0.682 7.11 2.049 1.745 1.354 2.617 3.189 2.617 5.508 0 1.615-0.462 2.98-1.387 4.102-0.925 1.105-2.24 1.872-3.945 2.302zm26.289-13.438h15.488v3.32h-11.874v7.148c0.573-0.195 1.146-0.34 1.719-0.43 0.573-0.105 1.146-0.156 1.719-0.156 3.255 0 5.833 0.893 7.734 2.676s2.852 4.199 2.852 7.246c0 3.139-0.977 5.578-2.93 7.324-1.954 1.732-4.708 2.598-8.262 2.598-1.224 0-2.474-0.104-3.75-0.312-1.263-0.207-2.571-0.521-3.926-0.938v-3.965c1.172 0.639 2.383 1.113 3.633 1.426s2.572 0.469 3.965 0.469c2.253 0 4.037-0.594 5.352-1.777s1.972-2.793 1.972-4.824-0.657-3.639-1.972-4.824-3.099-1.775-5.352-1.775c-1.055 0-2.109 0.117-3.164 0.352-1.041 0.234-2.109 0.6-3.203 1.092l-1e-3 -14.65zm33.867 15.313c-1.875 0-3.353 0.502-4.434 1.506-1.067 1.002-1.601 2.383-1.601 4.141s0.534 3.137 1.601 4.139c1.082 1.004 2.56 1.506 4.434 1.506 1.875 0 3.354-0.502 4.434-1.504 1.08-1.016 1.62-2.396 1.62-4.141 0-1.758-0.54-3.139-1.62-4.141-1.068-1.004-2.546-1.506-4.434-1.506zm-3.945-1.68c-1.693-0.416-3.015-1.203-3.965-2.363-0.938-1.158-1.406-2.57-1.406-4.236 0-2.332 0.827-4.174 2.48-5.527 1.667-1.354 3.945-2.029 6.836-2.029 2.904 0 5.183 0.676 6.836 2.027 1.653 1.355 2.48 3.197 2.48 5.529 0 1.666-0.475 3.078-1.425 4.236-0.938 1.16-2.247 1.947-3.926 2.363 1.9 0.443 3.378 1.311 4.434 2.598 1.067 1.289 1.601 2.865 1.601 4.729 0 2.824-0.866 4.992-2.598 6.504-1.719 1.51-4.186 2.266-7.402 2.266s-5.69-0.756-7.422-2.266c-1.719-1.512-2.578-3.68-2.578-6.504 0-1.863 0.534-3.439 1.602-4.729 1.067-1.289 2.551-2.154 4.453-2.598zm-1.446-6.228c0 1.51 0.469 2.688 1.407 3.533 0.95 0.848 2.278 1.271 3.984 1.271 1.693 0 3.015-0.424 3.965-1.271 0.963-0.848 1.445-2.023 1.445-3.535 0-1.51-0.481-2.688-1.445-3.535-0.951-0.846-2.272-1.271-3.965-1.271-1.706 0-3.034 0.426-3.984 1.271-0.938 0.847-1.407 2.025-1.407 3.537z", fill: "#fff", fillOpacity: 0.784 }), _jsx(Path, { d: "m325.45 388.23h6.444v-22.246l-7.012 1.406v-3.594l6.973-1.406h3.946v25.84h6.444v3.32h-16.797l2e-3 -3.32zm36.738-12.404c1.889 0.404 3.359 1.244 4.415 2.521 1.067 1.275 1.602 2.852 1.602 4.727 0 2.877-0.989 5.105-2.969 6.68-1.979 1.576-4.791 2.363-8.438 2.363-1.224 0-2.487-0.123-3.79-0.371-1.288-0.232-2.622-0.592-4.003-1.074v-3.809c1.094 0.639 2.292 1.121 3.595 1.445 1.303 0.326 2.662 0.488 4.082 0.488 2.474 0 4.354-0.488 5.645-1.465 1.302-0.977 1.953-2.396 1.953-4.258 0-1.719-0.605-3.061-1.816-4.023-1.197-0.977-2.871-1.465-5.02-1.465h-3.398v-3.242h3.556c1.939 0 3.425-0.385 4.453-1.152 1.028-0.781 1.543-1.9 1.543-3.359 0-1.496-0.533-2.643-1.603-3.438-1.055-0.807-2.571-1.209-4.55-1.209-1.081 0-2.24 0.115-3.479 0.35-1.236 0.234-2.598 0.6-4.081 1.096v-3.518c1.497-0.416 2.896-0.729 4.198-0.938 1.315-0.209 2.553-0.312 3.71-0.312 2.996 0 5.365 0.686 7.11 2.053 1.744 1.354 2.616 3.189 2.616 5.508 0 1.613-0.462 2.98-1.386 4.102-0.923 1.103-2.239 1.872-3.945 2.3zm16.915 12.404h13.771v3.32h-18.518v-3.32c1.498-1.551 3.536-3.627 6.114-6.23 2.59-2.617 4.218-4.305 4.883-5.059 1.264-1.42 2.143-2.617 2.637-3.594 0.508-0.99 0.762-1.961 0.762-2.91 0-1.549-0.547-2.812-1.64-3.789-1.081-0.977-2.494-1.465-4.239-1.465-1.236 0-2.545 0.215-3.926 0.645-1.367 0.43-2.831 1.08-4.396 1.953v-3.984c1.589-0.639 3.073-1.119 4.453-1.445s2.645-0.488 3.789-0.488c3.021 0 5.43 0.756 7.227 2.268 1.797 1.51 2.695 3.527 2.695 6.055 0 1.195-0.227 2.336-0.684 3.418-0.441 1.066-1.256 2.33-2.441 3.789-0.325 0.377-1.36 1.471-3.104 3.279-1.746 1.796-4.206 4.315-7.383 7.557zm22.753 0h6.447v-22.246l-7.014 1.406v-3.594l6.975-1.406h3.943v25.84h6.445v3.32h-16.798l2e-3 -3.32zm49.472-12.404c1.889 0.404 3.358 1.244 4.414 2.521 1.067 1.275 1.604 2.852 1.604 4.727 0 2.877-0.99 5.105-2.971 6.68-1.979 1.576-4.791 2.363-8.438 2.363-1.223 0-2.485-0.123-3.788-0.371-1.289-0.232-2.623-0.592-4.005-1.074v-3.809c1.095 0.639 2.293 1.121 3.595 1.445 1.303 0.326 2.664 0.488 4.082 0.488 2.475 0 4.354-0.488 5.645-1.465 1.303-0.977 1.953-2.396 1.953-4.258 0-1.719-0.605-3.061-1.814-4.023-1.198-0.977-2.873-1.465-5.021-1.465h-3.396v-3.242h3.554c1.94 0 3.424-0.385 4.453-1.152 1.028-0.781 1.543-1.9 1.543-3.359 0-1.496-0.533-2.643-1.603-3.438-1.055-0.807-2.569-1.209-4.551-1.209-1.08 0-2.238 0.115-3.477 0.35-1.236 0.234-2.599 0.6-4.082 1.096v-3.518c1.497-0.416 2.897-0.729 4.2-0.938 1.314-0.209 2.552-0.312 3.709-0.312 2.996 0 5.365 0.686 7.109 2.053 1.746 1.354 2.617 3.189 2.617 5.508 0 1.613-0.461 2.98-1.387 4.102-0.923 1.103-2.238 1.872-3.945 2.3zm24.356-10l-9.959 15.568h9.959v-15.568zm-1.036-3.435h4.961v19.004h4.159v3.281h-4.159v6.875h-3.925v-6.875h-13.166v-3.811l12.132-18.477h-2e-3v3e-3zm15.706 0h15.486v3.32h-11.875v7.146c0.574-0.195 1.146-0.338 1.721-0.43 0.572-0.104 1.146-0.156 1.718-0.156 3.256 0 5.834 0.893 7.735 2.676 1.9 1.785 2.851 4.199 2.851 7.246 0 3.139-0.978 5.58-2.931 7.324-1.953 1.73-4.707 2.598-8.262 2.598-1.223 0-2.473-0.104-3.75-0.311-1.262-0.209-2.57-0.521-3.926-0.939v-3.965c1.172 0.639 2.383 1.113 3.633 1.426 1.25 0.314 2.572 0.469 3.967 0.469 2.252 0 4.035-0.592 5.351-1.775 1.315-1.186 1.973-2.793 1.973-4.824s-0.656-3.641-1.973-4.824c-1.314-1.186-3.099-1.777-5.351-1.777-1.055 0-2.108 0.117-3.164 0.352-1.043 0.234-2.11 0.6-3.203 1.094v-14.65zm25.466 0h15.489v3.32h-11.877v7.146c0.572-0.195 1.146-0.338 1.72-0.43 0.571-0.104 1.146-0.156 1.719-0.156 3.256 0 5.832 0.893 7.733 2.676 1.9 1.785 2.853 4.199 2.853 7.246 0 3.139-0.978 5.58-2.93 7.324-1.953 1.73-4.707 2.598-8.263 2.598-1.225 0-2.475-0.104-3.75-0.311-1.264-0.209-2.571-0.521-3.926-0.939v-3.965c1.172 0.639 2.383 1.113 3.633 1.426 1.25 0.314 2.572 0.469 3.965 0.469 2.252 0 4.037-0.592 5.353-1.775 1.313-1.186 1.973-2.793 1.973-4.824s-0.658-3.641-1.973-4.824c-1.316-1.186-3.101-1.777-5.353-1.777-1.055 0-2.108 0.117-3.164 0.352-1.043 0.234-2.108 0.6-3.202 1.094v-14.65z", fill: "#fff", fillOpacity: 0.784 })] });
|
|
4
|
+
export default SvgGeneric;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Hiper.d.ts","sourceRoot":"","sources":["../../../src/icons/components/Hiper.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,SAAS,EAAE,MAAM,UAAU,CAAC;AACrC,QAAA,MAAM,QAAQ,GAAI,2BAIf,SAAS,4CAE07C,CAAC;AACv8C,eAAe,QAAQ,CAAC"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import Svg, { Path, G } from 'react-native-svg';
|
|
3
|
+
const SvgHiper = ({ size = 24, color = "#101010", ...props }) => _jsx(Svg, { id: "Layer_1", xmlnsXlink: "http://www.w3.org/1999/xlink", x: "0px", y: "0px", viewBox: "0 0 24 24", style: {
|
|
4
|
+
enableBackground: "new 0 0 780 500"
|
|
5
|
+
}, xmlSpace: "preserve", width: size, height: size, fill: "none", preserveAspectRatio: "xMidYMid meet", ...props, children: _jsxs(G, { children: [_jsx(Polygon, { className: "st0", points: "99,138.9 99,313.9 138.7,313.9 138.7,240.7 203.9,240.7 203.9,313.9 243.4,313.9 243.4,138.9 203.9,138.9 203.9,206.2 138.7,206.2 138.7,138.9 99,138.9 " }), _jsx(Path, { className: "st0", d: "M585.2,263c0.5-2.9,1.3-8.8,1.3-15.6c0-31.4-15.6-63.4-56.6-63.4c-44.1,0-64.1,35.6-64.1,67.8 c0,39.7,24.7,64.7,67.8,64.7c17.1,0,33-2.6,46-7.8l-5.2-26.7c-10.6,3.4-21.6,5.2-35.1,5.2c-18.4,0-34.5-7.8-35.8-24.1H585.2 L585.2,263z M503.1,236c1-10.6,7.8-25.7,24.4-25.7c18.2,0,22.3,16.1,22.3,25.7H503.1L503.1,236z" }), _jsx(Path, { className: "st0", d: "M599.1,313.9h39.5v-64.4c0-3.1,0.3-6.2,0.8-8.8c2.6-12.2,12.5-20,27-20c4.4,0,7.8,0.5,10.6,1v-37.1 c-2.9-0.5-4.7-0.5-8.3-0.5c-12.2,0-27.8,7.8-34.3,26.2h-1l-1.3-23.4h-34c0.5,10.9,1,23.1,1,41.8V313.9L599.1,313.9z" }), _jsx(Path, { className: "st1", d: "M283.5,131.9c11.2,0,20.3,9.1,20.3,20.3c0,11.2-9.1,20.3-20.3,20.3c-11.2,0-20.3-9.1-20.3-20.3 C263.2,141,272.3,131.9,283.5,131.9L283.5,131.9z" }), _jsx(Path, { className: "st2", d: "M366.9,284.3h19.8c19.9,0,28.9-12.7,28.9-26c0-13.3-1-43.3-25.5-43.3c-28.2,0-23.7,37.3-23.5,56.8 C366.5,276,366.8,280.2,366.9,284.3L366.9,284.3z M263.2,186.8h40.6v71.6c0,13.3,7.4,26,23.7,26c0.1-32.2,0-65.4-1.1-97.6h33.9 c0.7,6.2,1.4,12.4,2,18.6c16-32,66.5-25,83.5,2.1c17.5,27.9,23.5,107.9-59.1,107.9h-19.2c0.2,16.2,0.2,32.5,0.2,48.8h-40.6 c0-15.6,0.1-32,0.2-48.8c-43.9-0.2-64.1-28-64.1-57V186.8L263.2,186.8z" })] }) });
|
|
6
|
+
export default SvgHiper;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Hipercard.d.ts","sourceRoot":"","sources":["../../../src/icons/components/Hipercard.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,SAAS,EAAE,MAAM,UAAU,CAAC;AACrC,QAAA,MAAM,YAAY,GAAI,2BAInB,SAAS,4CAAoqd,CAAC;AACjrd,eAAe,YAAY,CAAC"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import Svg, { Path } from 'react-native-svg';
|
|
3
|
+
const SvgHipercard = ({ size = 24, color = "#101010", ...props }) => _jsxs(Svg, { width: size, height: size, enableBackground: "new 0 0 780 500", xmlSpace: "preserve", viewBox: "0 0 24 24", fill: "none", preserveAspectRatio: "xMidYMid meet", ...props, children: [_jsx(Path, { d: "M725,0H55C24.673,0,0,24.673,0,55v391c0,30.327,24.673,55,55,55h670c30.325,0,55-24.673,55-55V55 C780,24.673,755.325,0,725,0z", fill: "none" }), _jsx(Path, { d: "m223.05 201.42l2.104 7e-3 1.674-0.57 1.675-0.57 1.481-1.503 1.482-1.502 0.779-2.003 0.781-2.002 0.027-2.948 0.028-2.946-0.693-1.152-0.694-1.151-1.207-0.747-1.208-0.748h-5.214l-1.775 0.795-1.775 0.794-1.03 1.104-1.03 1.105-0.81 1.907-0.809 1.907-0.153 2.971-0.152 2.971 0.752 1.477 0.754 1.476 1.454 0.66 1.453 0.659 2.106 9e-3zm335.55 84.622h7.57v-4.633l0.871-5.746c0.481-3.16 1.272-8.166 1.761-11.121 0.487-2.957 1.095-6.701 1.35-8.324 0.256-1.621 0.932-5.131 1.503-7.801 0.573-2.671 1.286-5.557 1.587-6.416 0.301-0.858 0.549-1.759 0.552-2.001 5e-3 -0.242 0.649-1.8 1.435-3.462l1.429-3.023 1.886-2.505 1.886-2.504 2.062-1.551c1.134-0.854 2.959-1.985 4.055-2.516l1.992-0.965 4.334 0.03 4.335 0.031 1.707 0.547 1.706 0.548 0.288-0.178 0.287-0.178 0.016-1.106c8e-3 -0.609 0.378-2.873 0.824-5.033l0.812-3.926-0.912-0.357c-0.874-0.324-1.756-0.625-2.646-0.902l-1.733-0.547-3.121 9e-3 -3.121 7e-3 -2.544 0.896-2.544 0.894-1.91 1.152-1.909 1.152-2.483 2.601-2.483 2.6-1.334 2.018c-0.733 1.11-1.379 1.968-1.435 1.907-0.057-0.06 0.343-2.373 0.886-5.138 0.543-2.766 0.995-5.38 1.003-5.809l0.015-0.781h-12.831v0.222c0 0.121-0.319 2.345-0.711 4.941-0.391 2.597-1.177 7.608-1.744 11.137-0.682 4.221-1.373 8.44-2.072 12.658-0.608 3.646-1.247 7.288-1.915 10.923-0.481 2.574-1.336 7.102-1.9 10.057-0.564 2.957-1.49 7.717-2.058 10.578l-1.674 8.408-0.64 3.207h7.568zm-175.76 0h7.403l0.223-3.133c0.123-1.721 0.541-5.195 0.931-7.715 0.39-2.521 1.188-7.549 1.773-11.172 0.741-4.48 1.547-8.949 2.419-13.406 0.745-3.748 1.587-7.473 1.87-8.278 0.285-0.806 0.518-1.678 0.518-1.939 0-0.262 0.557-1.686 1.237-3.165s1.947-3.743 2.817-5.032l1.581-2.344 2.115-1.96 2.116-1.958 2.608-1.246 2.609-1.247 3.989 0.022 3.986 0.021 1.961 0.585c1.078 0.322 2.054 0.586 2.167 0.586 0.114 0 0.207-0.368 0.207-0.819 0-0.45 0.391-2.734 0.867-5.076 0.477-2.341 0.867-4.355 0.867-4.476s-1.131-0.564-2.514-0.984c-1.384-0.42-3.295-0.86-4.248-0.979l-1.734-0.214-2.254 0.399c-1.24 0.219-3.083 0.703-4.096 1.076-1.015 0.372-2.688 1.216-3.72 1.876-1.03 0.661-2.636 1.947-3.564 2.858-0.932 0.912-2.495 2.751-3.477 4.086-0.764 1.038-1.524 2.078-2.28 3.121l-0.496 0.693 0.301-1.386c0.166-0.764 0.628-3.261 1.026-5.549 0.397-2.289 0.809-4.436 0.908-4.768l0.186-0.608h-13.226v0.836c0 0.46-0.391 3.229-0.866 6.155-0.478 2.927-1.265 7.817-1.748 10.869-0.484 3.052-1.345 8.358-1.91 11.791-0.604 3.646-1.24 7.289-1.911 10.923-1.305 6.941-2.64 13.877-4.005 20.807-0.584 2.957-1.283 6.447-1.552 7.76-0.271 1.311-0.491 2.52-0.491 2.686v0.305h7.407v-1e-3zm-174.46 0h7.459l0.21-0.547c0.117-0.303 0.211-1.094 0.211-1.758 0-0.666 0.47-4.127 1.042-7.689 1.309-8.117 2.65-16.23 4.024-24.337 0.589-3.416 1.209-6.827 1.859-10.231 0.552-2.86 1.4-7.308 1.884-9.882 0.483-2.575 1.435-7.474 2.114-10.887s1.319-6.341 1.422-6.508l0.189-0.305-7.543 0.093-7.543 0.093-0.63 4.509c-0.344 2.48-1.1 7.396-1.678 10.923-0.577 3.529-1.451 8.914-1.942 11.964-0.594 3.648-1.228 7.29-1.9 10.925-0.555 2.955-1.405 7.48-1.89 10.055-0.484 2.576-1.353 7.102-1.931 10.059s-1.353 6.857-1.723 8.67c-0.371 1.812-0.768 3.645-0.884 4.074l-0.209 0.779h7.459zm-93.277 0h8.425l0.605-3.727c0.332-2.051 0.982-5.992 1.443-8.756l1.907-11.445c0.588-3.529 1.47-8.756 1.959-11.616 0.489-2.861 1.267-7.299 1.727-9.862 0.461-2.565 0.926-4.749 1.032-4.856l0.195-0.194h45.313l0.252 0.251 0.252 0.252-0.394 2.002c-0.215 1.102-0.854 4.499-1.419 7.551s-1.515 8.201-2.112 11.445c-0.627 3.412-1.265 6.822-1.914 10.23-0.458 2.383-1.384 7.377-2.058 11.096-0.673 3.719-1.223 6.957-1.221 7.197l4e-3 0.432h16.921l0.374-2.166c0.207-1.191 0.537-3.338 0.737-4.768 0.198-1.432 0.679-4.477 1.066-6.764s1.16-6.814 1.719-10.057c0.558-3.242 1.494-8.783 2.078-12.311 0.584-3.529 1.45-8.678 1.926-11.443 0.602-3.472 1.229-6.94 1.88-10.404 0.559-2.957 1.491-7.95 2.071-11.098 0.58-3.146 1.447-7.906 1.929-10.577 0.482-2.67 1.36-7.508 1.952-10.75s1.339-7.026 1.66-8.41l0.584-2.514h-17.133l-0.233 1.648c-0.127 0.905-0.541 3.442-0.919 5.635-0.379 2.194-1.065 6.094-1.527 8.669-0.462 2.576-1.306 7.491-1.876 10.925-0.559 3.363-1.097 6.729-1.614 10.099l-0.578 3.857-12.575 0.255-12.576 0.254-10.532-0.25c-5.793-0.137-10.565-0.278-10.605-0.31-0.039-0.034 0.158-1.381 0.438-2.995 0.369-2.081 0.762-4.157 1.179-6.229 0.532-2.656 1.049-5.315 1.55-7.977 0.485-2.574 1.033-5.773 1.22-7.108 0.186-1.335 0.577-3.559 0.868-4.943 0.291-1.382 0.843-4.295 1.227-6.472 0.383-2.177 0.792-4.206 0.909-4.508l0.21-0.55h-16.995l-0.543 3.035c-0.3 1.669-0.699 4.048-0.887 5.288-0.189 1.24-0.822 5.219-1.407 8.843s-1.449 9.008-1.92 11.964l-1.903 11.964c-0.669 4.167-1.375 8.329-2.116 12.484-0.617 3.413-1.246 6.823-1.887 10.231-0.451 2.384-1.31 6.909-1.91 10.058-0.629 3.297-1.278 6.592-1.945 9.883-0.47 2.289-0.989 4.941-1.153 5.895-0.166 0.953-0.702 3.705-1.194 6.113-0.491 2.408-0.893 4.631-0.893 4.941v0.562h8.427v1e-3zm504.47 1.687l3.294 0.043 3.122-0.508c1.717-0.277 3.901-0.727 4.855-0.996 0.953-0.271 2.671-0.971 3.813-1.557l2.082-1.066 1.79-1.576 1.789-1.576 1.886-2.512c1.037-1.385 1.976-2.748 2.086-3.035l0.201-0.521-0.175 1.734c-0.124 1.16-0.284 2.318-0.48 3.469-0.168 0.953-0.406 2.787-0.532 4.074l-0.23 2.34h13.606v-4.68l1.036-8.844c0.569-4.865 1.413-11.34 1.873-14.393s1.171-7.42 1.579-9.709c0.407-2.289 1.131-6.425 1.604-9.19 0.476-2.765 1.334-7.604 1.908-10.75 0.573-3.148 1.492-8.141 2.041-11.097 0.548-2.957 1.401-7.561 1.895-10.231s1.377-7.352 1.964-10.403c0.615-3.183 1.25-6.363 1.906-9.538 0.462-2.192 0.839-4.105 0.838-4.247v-0.261h-14.844l-0.219 2.168c-0.12 1.192-0.689 5.132-1.262 8.757-0.681 4.279-1.374 8.555-2.08 12.83-0.411 2.466-0.817 4.932-1.22 7.399l-0.186 1.156-0.585-0.249c-0.322-0.137-2.069-0.622-3.88-1.077l-3.294-0.827-4.509-0.351-4.509-0.351-3.814 0.355-3.814 0.356-3.468 0.877-3.468 0.876-3.294 1.607-3.297 1.607-2.427 1.796-2.427 1.797-2.097 2.249c-1.153 1.236-2.818 3.281-3.702 4.544l-1.604 2.296-1.886 3.922c-1.036 2.158-2.298 5.015-2.803 6.35-0.506 1.336-1.396 4.295-1.981 6.577l-1.061 4.15-0.523 5.388-0.522 5.387 0.392 4.334 0.395 4.336 0.463 1.561c0.257 0.857 0.794 2.387 1.196 3.396l0.732 1.84 1.335 1.807 1.336 1.807 1.524 1.248 1.523 1.25 2.081 1.033c1.146 0.566 3.064 1.303 4.266 1.631 1.201 0.33 3.152 0.725 4.336 0.879 1.185 0.153 3.634 0.298 5.446 0.319zm5.913-9.836l-2.619 0.137-1.766-0.318c-0.972-0.174-2.527-0.645-3.457-1.043l-1.689-0.723-1.422-1.166-1.421-1.164-2.112-4.045-0.482-2.254-0.48-2.256 0.041-4.508 0.04-4.508 0.56-3.988 0.559-3.988 0.869-2.774c0.479-1.526 0.872-2.966 0.874-3.2 4e-3 -0.233 0.474-1.481 1.049-2.773 0.672-1.495 1.382-2.973 2.13-4.431 0.599-1.145 1.717-2.928 2.483-3.964 0.769-1.036 2.138-2.597 3.042-3.469 0.904-0.87 2.341-2.014 3.196-2.539l1.552-0.955 2.727-0.944 2.727-0.944 5.722-3e-3h5.722l3.294 0.915c1.813 0.502 3.737 1.085 4.276 1.295l0.981 0.381-0.191 0.952c-0.104 0.524-0.518 2.825-0.916 5.113-0.398 2.289-1.184 6.659-1.745 9.711s-1.423 7.656-1.916 10.23c-0.492 2.574-1.205 5.852-1.585 7.281-0.39 1.471-0.786 2.938-1.189 4.404-0.275 0.99-0.93 2.709-1.454 3.814-0.525 1.107-1.444 2.715-2.042 3.572-0.599 0.859-1.608 2.049-2.246 2.643-0.639 0.596-2.02 1.652-3.068 2.35l-1.907 1.268-5.514 1.75-2.623 0.141zm-123.13 9.713l4.681-0.135 2.948-0.754 2.948-0.756 1.908-0.9c1.049-0.494 2.765-1.475 3.813-2.176 1.05-0.699 2.675-2.031 3.609-2.959s2.322-2.51 3.082-3.516c0.76-1.008 1.428-1.785 1.483-1.729 0.058 0.057-0.118 1.658-0.389 3.562-0.269 1.906-0.493 4.439-0.497 5.631l-6e-3 2.166h12.729l0.194-4.939 0.194-4.943 0.908-6.416c0.5-3.529 1.307-8.756 1.794-11.617 0.485-2.859 1.331-7.697 1.879-10.75 0.547-3.052 1.414-7.811 1.925-10.577l0.932-5.028 0.032-4.343 0.03-4.344-0.981-2.007-0.982-2.008-1.331-1.278-1.333-1.279-2.185-1.107-2.188-1.109-6.518-1.45-4.486-0.341-4.487-0.341-5.778 0.358c-3.181 0.196-7.652 0.584-9.941 0.863l-4.162 0.504-5.672 0.022-0.413 1.995c-0.227 1.096-0.858 3.701-1.401 5.79-0.545 2.088-0.938 3.846-0.877 3.908s1.578-0.283 3.37-0.765c1.792-0.483 5.601-1.275 8.462-1.763l5.201-0.886 4.682-0.192 4.682-0.194 6.032 1.058 2.012 0.993 2.013 0.994 1.127 1.68 1.128 1.679-0.016 2.648-0.017 2.649-0.598 2.906-0.598 2.907-12.479 0.045-12.478 0.044-4.083 1.12c-2.246 0.616-4.733 1.434-5.527 1.817-0.794 0.384-1.588 0.698-1.765 0.698-0.176 0-1.512 0.74-2.969 1.647l-2.648 1.645-2.085 2.082c-1.148 1.145-2.613 2.862-3.257 3.815-0.645 0.953-1.691 2.945-2.325 4.428l-1.154 2.693-0.529 3.027-0.53 3.029v6.355l0.505 2.645 0.507 2.645 0.938 1.727c0.517 0.947 1.466 2.338 2.106 3.088l1.168 1.365 2.073 1.26 2.074 1.26 2.375 0.67c1.306 0.369 3.293 0.818 4.417 0.996l2.042 0.322 4.682-0.135zm4.335-9.697l-2.774 0.145-1.838-0.469c-1.01-0.256-2.544-0.83-3.407-1.273l-1.569-0.809-0.858-1.018c-0.471-0.562-1.19-1.662-1.6-2.447l-0.743-1.428-0.145-3.332-0.147-3.334 0.588-2.023c0.323-1.111 1.082-3.043 1.687-4.289l1.098-2.266 2.104-2.088 2.102-2.088 2.232-1.075 2.231-1.074 2.774-0.66 2.774-0.659h17.34l0.549 0.227 0.548 0.226-0.461 2.722c-0.254 1.496-0.859 4.203-1.347 6.016-0.485 1.812-1.344 4.475-1.906 5.918-0.563 1.445-1.024 2.721-1.024 2.836 0 0.117-0.57 1.168-1.267 2.338l-1.267 2.127-2.079 2.061c-1.143 1.133-2.206 2.059-2.359 2.059s-0.854 0.393-1.558 0.869l-1.277 0.865-2.813 0.891-2.812 0.889-2.776 0.143zm-61.379 9.826l3.817 0.041 4.332-0.514c2.383-0.281 5.555-0.75 7.05-1.041 1.806-0.363 3.599-0.789 5.375-1.275 1.462-0.414 2.785-0.861 2.939-0.992 0.155-0.133 0.567-1.707 0.918-3.498s0.792-4.193 0.981-5.336c0.188-1.145 0.286-2.143 0.217-2.217-0.07-0.076-0.325 0.021-0.568 0.213-0.243 0.195-1.944 0.91-3.781 1.592l-3.339 1.24-4.756 0.922-4.756 0.92-4.042-0.137-4.043-0.139-2.297-0.797-2.297-0.797-1.774-1.551-1.773-1.553-1.178-2.145-1.177-2.143-0.562-2.869-0.561-2.867 5e-3 -3.721 3e-3 -3.721 0.681-4.508 0.682-4.509 0.721-2.428c0.396-1.335 0.846-2.895 0.997-3.467 0.152-0.573 0.787-2.211 1.413-3.642 0.625-1.43 1.741-3.641 2.479-4.913l1.342-2.311 1.649-1.709 1.648-1.709 1.745-1.082 1.747-1.083 2.242-0.691c1.233-0.38 3.413-0.873 4.843-1.095l2.602-0.406 3.813 0.192 3.815 0.191 4.508 0.903 4.509 0.901 1.833 0.684c1.008 0.376 1.877 0.685 1.932 0.685 0.054 0 0.296-1.288 0.537-2.862 0.242-1.573 0.672-4.162 0.956-5.752 0.285-1.592 0.449-2.962 0.364-3.045-0.083-0.084-1.438-0.299-3.01-0.478-1.573-0.179-5.848-0.497-9.498-0.708l-6.639-0.381-4.683 0.359-4.681 0.36-3.469 0.728-3.468 0.729-2.233 0.893c-1.229 0.491-3.027 1.378-3.998 1.97-0.931 0.566-1.846 1.156-2.745 1.77-0.54 0.382-2.176 1.87-3.638 3.308l-2.655 2.614-1.484 2.172c-0.814 1.195-2.225 3.685-3.134 5.536l-1.652 3.364-1.267 3.64c-0.696 2.003-1.669 5.28-2.16 7.283l-0.895 3.641-0.325 3.295-0.324 3.295 3e-3 4.334 4e-3 4.334 0.327 2.523 0.327 2.521 1.039 2.594 1.038 2.594 1.201 1.875 1.198 1.875 1.907 1.879 1.909 1.877 2.017 1.068 2.02 1.064 2.65 0.738c1.457 0.404 3.564 0.869 4.682 1.031 1.117 0.164 3.748 0.316 5.848 0.34h-3e-3zm-110.28-2e-3l3.815 0.043 3.813-0.348c2.1-0.191 5.532-0.59 7.629-0.887 2.1-0.295 5.724-0.957 8.056-1.469l4.239-0.932 0.212-1.564c0.115-0.859 0.592-3.418 1.058-5.686l0.847-4.125-0.188-0.186-0.187-0.186-1.296 0.625c-0.713 0.344-2.934 1.166-4.934 1.824l-3.638 1.197-3.818 0.742-3.818 0.738-6.068 0.014-6.069 0.01-2.081-0.664c-1.144-0.365-2.827-1.033-3.74-1.486l-1.659-0.82-2.739-2.477-1.069-1.867-1.069-1.869-0.67-2.342-0.67-2.344-4e-3 -4.336-5e-3 -4.336 0.594-3.867 0.597-3.869 10.436-0.488 19.291 0.125 19.29 0.123 0.582-2.47c0.321-1.359 0.811-4.168 1.089-6.242l0.506-3.772 0.011-3.172 0.012-3.173-0.549-2.369-0.551-2.368-0.908-1.568c-0.498-0.862-1.38-2.112-1.955-2.778-0.576-0.665-1.605-1.603-2.286-2.084-0.683-0.481-2.02-1.29-2.974-1.797l-1.733-0.922-3.029-0.73-3.03-0.729-3.731-0.357-3.734-0.357-3.467 0.226-3.468 0.225-4.162 0.799-4.161 0.8-2.602 1.039c-1.431 0.571-3.615 1.615-4.854 2.318-1.24 0.703-2.956 1.847-3.813 2.542-0.86 0.696-2.347 2.048-3.304 3.005-0.958 0.958-2.376 2.676-3.148 3.821-0.774 1.145-1.96 3.173-2.638 4.508-0.676 1.336-1.557 3.208-1.958 4.162-0.399 0.953-1.129 2.904-1.617 4.334-0.49 1.431-1.26 4.162-1.709 6.07-0.53 2.311-0.988 4.637-1.373 6.976l-0.554 3.51 6e-3 5.16 6e-3 5.16 0.526 2.254c0.289 1.24 0.845 3.113 1.231 4.162s1.104 2.609 1.593 3.469c0.488 0.857 1.532 2.238 2.318 3.07 0.785 0.83 2.21 2.092 3.164 2.801 0.952 0.709 2.65 1.709 3.771 2.219l2.039 0.928 2.843 0.688c1.563 0.379 3.923 0.826 5.244 0.996 1.318 0.17 4.115 0.33 6.212 0.353zm6.531-48.853c-9.6 0-17.455-0.068-17.455-0.153 0-0.083 0.41-1.293 0.911-2.688 0.5-1.394 1.38-3.468 1.953-4.61l1.045-2.077 2.293-2.281 2.294-2.283 2.255-1.077c1.239-0.593 2.878-1.239 3.641-1.435 0.764-0.196 2.947-0.456 4.854-0.577l3.469-0.223 2.664 0.343 2.662 0.342 1.936 0.886 1.936 0.886 1.062 1.145c0.583 0.629 1.278 1.556 1.546 2.059l0.483 0.916 0.32 2.032 0.321 2.032-0.367 3.381-0.366 3.382h-17.457zm-103.19 79.414l0.21-0.549c0.117-0.301 0.211-1.01 0.211-1.576 0-0.564 0.246-2.619 0.547-4.564 0.3-1.949 1.004-6.428 1.566-9.955 0.561-3.529 1.401-8.836 1.867-11.791 0.443-2.801 0.864-5.604 1.265-8.41 0.229-1.67 0.508-3.035 0.621-3.035 0.112 0 0.594 0.738 1.071 1.639l0.866 1.639 1.922 1.938 1.923 1.938 2.366 0.947 2.367 0.947 2.82 0.365 2.821 0.365 3.579-0.219 3.58-0.221 3.876-1.002 3.877-1.004 2.08-0.949c1.145-0.521 3.173-1.662 4.508-2.531l2.428-1.58 2.263-2.264c1.245-1.242 3.001-3.238 3.901-4.434 0.902-1.193 1.639-2.258 1.639-2.363 0-0.107 0.443-0.846 0.984-1.645 0.541-0.797 1.647-3.012 2.459-4.918 0.813-1.906 2.081-5.34 2.821-7.629l1.344-4.162 0.695-3.604c0.382-1.982 0.874-5.259 1.093-7.283l0.397-3.677-0.23-3.121-0.229-3.121-0.725-3.122-0.723-3.121-1.172-2.336-1.171-2.337-2.263-2.399-2.262-2.399-5.354-2.766-2.948-0.707-2.948-0.705-2.948-0.216-2.947-0.216-3.283 0.377-3.285 0.377-2.679 0.685-2.68 0.683-2.329 1.079c-1.28 0.591-3.144 1.598-4.14 2.236-0.997 0.638-2.026 1.371-2.286 1.63-0.259 0.259-0.882 0.74-1.382 1.066l-0.911 0.597 0.636-3.047c0.351-1.675 0.643-3.24 0.651-3.48l0.014-0.433h-12.716l-1.114 7.023c-0.614 3.863-1.582 9.831-2.152 13.265-1.257 7.574-2.529 15.145-3.816 22.714-0.567 3.336-1.504 8.643-2.083 11.791-0.579 3.146-1.426 7.75-1.884 10.23-0.457 2.479-1.319 7.16-1.913 10.402-0.701 3.816-1.409 7.631-2.124 11.445-0.677 3.586-1.369 7.168-2.074 10.75-0.568 2.859-1.116 5.553-1.221 5.98l-0.189 0.781h14.913zm21.749-39.92l-1.892-0.336-1.893-0.334-1.922-0.877-1.923-0.877-1.342-1.283-1.343-1.281-0.775-1.734c-0.427-0.953-0.974-2.574-1.217-3.602l-0.442-1.865 0.177-2.988 0.178-2.988 0.893-4.682c0.674-3.58 1.328-7.164 1.96-10.75 0.587-3.338 1.477-8.23 1.976-10.869l0.907-4.8 1.988-1.654c1.094-0.909 2.826-2.129 3.85-2.709l1.86-1.056 2.427-0.751 2.428-0.752 6.242-0.366 2.542 0.542 2.541 0.541 1.794 0.826 1.793 0.826 1.504 1.512 1.505 1.512 0.81 1.601c0.447 0.881 1.074 2.604 1.393 3.83l0.581 2.229-0.178 6.59-0.178 6.589-0.89 3.895c-0.49 2.143-1.422 5.42-2.072 7.281l-1.181 3.389-1.448 2.742c-0.796 1.51-2.023 3.547-2.727 4.529s-1.827 2.258-2.495 2.83c-0.809 0.688-1.637 1.352-2.484 1.992l-1.271 0.949-5.886 2.002-5.79 0.347z", fill: "#B3131B" })] });
|
|
4
|
+
export default SvgHipercard;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"House.d.ts","sourceRoot":"","sources":["../../../src/icons/components/House.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,SAAS,EAAE,MAAM,UAAU,CAAC;AACrC,QAAA,MAAM,QAAQ,GAAI,2BAIf,SAAS,4CAA4d,CAAC;AACze,eAAe,QAAQ,CAAC"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import Svg, { Path } from 'react-native-svg';
|
|
3
|
+
const SvgHouse = ({ size = 24, color = "#101010", ...props }) => _jsx(Svg, { width: size, height: size, fill: "none", viewBox: "0 0 24 24", preserveAspectRatio: "xMidYMid meet", ...props, children: _jsx(Path, { fillRule: "evenodd", clipRule: "evenodd", d: "M3.33334 17.2068C3.33334 17.667 3.70644 18.0401 4.16668 18.0401H15.8333C16.2936 18.0401 16.6667 17.667 16.6667 17.2068V9.7068H19.1667L10.5608 1.88347C10.2429 1.59418 9.75711 1.59418 9.43918 1.88347L0.833344 9.7068H3.33334V17.2068ZM15 8.17098V16.3735H5.00001V8.17098L10 3.62598L15 8.17098Z", fill: "#101010" }) });
|
|
4
|
+
export default SvgHouse;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Jcb.d.ts","sourceRoot":"","sources":["../../../src/icons/components/Jcb.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,SAAS,EAAE,MAAM,UAAU,CAAC;AACrC,QAAA,MAAM,MAAM,GAAI,2BAIb,SAAS,4CAAipG,CAAC;AAC9pG,eAAe,MAAM,CAAC"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import Svg, { Path } from 'react-native-svg';
|
|
3
|
+
const SvgJcb = ({ size = 24, color = "#101010", ...props }) => _jsxs(Svg, { width: size, height: size, enableBackground: "new 0 0 780 500", xmlSpace: "preserve", viewBox: "0 0 24 24", fill: "none", preserveAspectRatio: "xMidYMid meet", ...props, children: [_jsx(Path, { d: "m632.24 361.27c0 41.615-33.729 75.36-75.357 75.36h-409.13v-297.88c0-41.626 33.73-75.371 75.364-75.371h409.12l-1e-3 297.89z", fill: "#fff" }), _jsxs(LinearGradient, { id: "c", x1: 908.72, x2: 909.72, y1: 313.21, y2: 313.21, gradientTransform: "matrix(132.87 0 0 323.02 -1.2027e5 -1.0093e5)", gradientUnits: "userSpaceOnUse", children: [_jsx(Stop, { stopColor: "#007B40", offset: 0 }), _jsx(Stop, { stopColor: "#55B330", offset: 1 })] }), _jsx(Path, { d: "m498.86 256.54c11.686 0.254 23.438-0.516 35.077 0.4 11.787 2.199 14.628 20.043 4.156 25.887-7.145 3.85-15.633 1.434-23.379 2.113h-15.854v-28.4zm41.834-32.145c2.596 9.164-6.238 17.392-15.064 16.13h-26.77c0.188-8.642-0.367-18.022 0.272-26.209 10.724 0.302 21.547-0.616 32.209 0.48 4.581 1.151 8.415 4.917 9.353 9.599zm64.425-135.9c0.498 17.501 0.072 35.927 0.215 53.783-0.033 72.596 0.07 145.19-0.057 217.79-0.47 27.207-24.582 50.848-51.601 51.391-27.045 0.11-54.094 0.017-81.143 0.047v-109.75c29.471-0.152 58.957 0.309 88.416-0.23 13.666-0.858 28.635-9.875 29.271-24.914 1.609-15.104-12.631-25.551-26.151-27.201-5.197-0.135-5.045-1.515 0-2.117 12.895-2.787 23.021-16.133 19.227-29.499-3.233-14.058-18.771-19.499-31.695-19.472-26.352-0.179-52.709-0.025-79.062-0.077 0.17-20.489-0.355-41 0.283-61.474 2.088-26.716 26.807-48.748 53.446-48.27 26.287-4e-3 52.57-4e-3 78.851-5e-3z", fill: "url(#c)" }), _jsxs(LinearGradient, { id: "b", x1: 908.73, x2: 909.73, y1: 313.21, y2: 313.21, gradientTransform: "matrix(133.43 0 0 323.02 -1.2108e5 -1.0092e5)", gradientUnits: "userSpaceOnUse", children: [_jsx(Stop, { stopColor: "#1D2970", offset: 0 }), _jsx(Stop, { stopColor: "#006DBA", offset: 1 })] }), _jsx(Path, { d: "m174.74 139.54c0.673-27.164 24.888-50.611 51.872-51.008 26.945-0.083 53.894-0.012 80.839-0.036-0.074 90.885 0.146 181.78-0.111 272.66-1.038 26.834-24.989 49.834-51.679 50.309-26.996 0.098-53.995 0.014-80.992 0.041v-113.45c26.223 6.195 53.722 8.832 80.474 4.723 15.991-2.573 33.487-10.426 38.901-27.016 3.984-14.191 1.741-29.126 2.334-43.691v-33.825h-46.297c-0.208 22.371 0.426 44.781-0.335 67.125-1.248 13.734-14.849 22.46-27.802 21.994-16.064 0.17-47.897-11.642-47.897-11.642-0.08-41.914 0.466-94.405 0.693-136.18z", fill: "url(#b)" }), _jsxs(LinearGradient, { id: "a", x1: 908.72, x2: 909.72, y1: 313.21, y2: 313.21, gradientTransform: "matrix(132.96 0 0 323.03 -1.205e5 -1.0093e5)", gradientUnits: "userSpaceOnUse", children: [_jsx(Stop, { stopColor: "#6E2B2F", offset: 0 }), _jsx(Stop, { stopColor: "#E30138", offset: 1 })] }), _jsx(Path, { d: "m324.72 211.89c-2.437 0.517-0.49-8.301-1.113-11.646 0.166-21.15-0.347-42.323 0.283-63.458 2.082-26.829 26.991-48.916 53.738-48.288h78.768c-0.074 90.885 0.145 181.78-0.111 272.66-1.039 26.834-24.992 49.833-51.683 50.309-26.997 0.102-53.997 0.016-80.996 0.042v-124.3c18.439 15.129 43.5 17.484 66.472 17.525 17.318-6e-3 34.535-2.676 51.353-6.67v-22.772c-18.953 9.446-41.233 15.446-62.243 10.019-14.656-3.648-25.295-17.812-25.058-32.937-1.698-15.729 7.522-32.335 22.979-37.011 19.191-6.008 40.107-1.413 58.096 6.398 3.854 2.018 7.766 4.521 6.225-1.921v-17.899c-30.086-7.158-62.104-9.792-92.33-2.005-8.749 2.468-17.273 6.211-24.38 11.956z", fill: "url(#a)" })] });
|
|
4
|
+
export default SvgJcb;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Maestro.d.ts","sourceRoot":"","sources":["../../../src/icons/components/Maestro.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,SAAS,EAAE,MAAM,UAAU,CAAC;AACrC,QAAA,MAAM,UAAU,GAAI,2BAIjB,SAAS,4CAAy5C,CAAC;AACt6C,eAAe,UAAU,CAAC"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import Svg, { Path } from 'react-native-svg';
|
|
3
|
+
const SvgMaestro = ({ size = 24, color = "#101010", ...props }) => _jsxs(Svg, { width: size, height: size, fill: "none", viewBox: "0 0 24 24", preserveAspectRatio: "xMidYMid meet", ...props, children: [_jsx(Path, { d: "M465.769 113.811H314.195V386.211H465.769V113.811Z", fill: "#7673C0" }), _jsx(Path, { d: "M323.822 250.033C323.794 223.796 329.736 197.895 341.199 174.294C352.662 150.693 369.346 130.009 389.985 113.809C364.43 93.7255 333.74 81.2366 301.422 77.77C269.105 74.3033 236.464 79.9986 207.231 94.2052C177.997 108.412 153.35 130.556 136.107 158.108C118.863 185.66 109.719 217.507 109.719 250.009C109.719 282.512 118.863 314.359 136.107 341.911C153.35 369.462 177.997 391.607 207.231 405.814C236.464 420.02 269.105 425.715 301.422 422.249C333.74 418.782 364.43 406.293 389.985 386.21C369.352 370.015 352.673 349.339 341.21 325.746C329.747 302.154 323.801 276.263 323.822 250.033Z", fill: "#EB001B" }), _jsx(Path, { d: "M670.228 250.034C670.22 282.531 661.072 314.37 643.827 341.914C626.583 369.459 601.939 391.597 572.71 405.8C543.482 420.002 510.847 425.697 478.536 422.233C446.224 418.769 415.538 406.286 389.984 386.21C410.609 370.001 427.284 349.32 438.75 325.726C450.216 302.132 456.173 276.243 456.173 250.01C456.173 223.778 450.216 197.888 438.75 174.295C427.284 150.701 410.609 130.019 389.984 113.81C415.538 93.7202 446.228 81.2253 478.547 77.7536C510.867 74.282 543.511 79.9737 572.748 94.1783C601.985 108.383 626.636 130.527 643.883 158.079C661.129 185.632 670.275 217.481 670.276 249.986L670.228 250.034Z", fill: "#00A1DF" })] });
|
|
4
|
+
export default SvgMaestro;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Mastercard.d.ts","sourceRoot":"","sources":["../../../src/icons/components/Mastercard.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,SAAS,EAAE,MAAM,UAAU,CAAC;AACrC,QAAA,MAAM,aAAa,GAAI,2BAIpB,SAAS,4CAA4zB,CAAC;AACz0B,eAAe,aAAa,CAAC"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import Svg, { Path } from 'react-native-svg';
|
|
3
|
+
const SvgMastercard = ({ size = 24, color = "#101010", ...props }) => _jsxs(Svg, { width: size, height: size, fill: "none", viewBox: "0 0 24 24", preserveAspectRatio: "xMidYMid meet", ...props, children: [_jsx(Path, { d: "M465.738 113.525H313.812V386.475H465.738V113.525Z", fill: "#FF5A00" }), _jsx(Path, { d: "M323.926 250C323.926 194.545 349.996 145.326 390 113.525C360.559 90.3769 323.42 76.3867 282.91 76.3867C186.945 76.3867 109.297 154.035 109.297 250C109.297 345.965 186.945 423.614 282.91 423.614C323.42 423.614 360.559 409.623 390 386.475C349.94 355.123 323.926 305.455 323.926 250Z", fill: "#EB001B" }), _jsx(Path, { d: "M670.711 250C670.711 345.965 593.062 423.614 497.098 423.614C456.588 423.614 419.449 409.623 390.008 386.475C430.518 354.618 456.082 305.455 456.082 250C456.082 194.545 430.012 145.326 390.008 113.525C419.393 90.3769 456.532 76.3867 497.041 76.3867C593.062 76.3867 670.711 154.541 670.711 250Z", fill: "#F79E1B" })] });
|
|
4
|
+
export default SvgMastercard;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Mir.d.ts","sourceRoot":"","sources":["../../../src/icons/components/Mir.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,SAAS,EAAE,MAAM,UAAU,CAAC;AACrC,QAAA,MAAM,MAAM,GAAI,2BAIb,SAAS,4CAM27B,CAAC;AACx8B,eAAe,MAAM,CAAC"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import Svg, { Path, G } from 'react-native-svg';
|
|
3
|
+
const SvgMir = ({ size = 24, color = "#101010", ...props }) => _jsx(Svg, { id: "Layer_1", xmlnsXlink: "http://www.w3.org/1999/xlink", x: "0px", y: "0px", viewBox: "0 0 24 24", style: {
|
|
4
|
+
enableBackground: "new 0 0 780 500"
|
|
5
|
+
}, xmlSpace: "preserve", width: size, height: size, fill: "none", preserveAspectRatio: "xMidYMid meet", ...props, children: _jsx(G, { id: "Page-1", children: _jsx(G, { id: "Artboard", transform: "translate(-91.000000, -154.000000)", children: _jsxs(G, { id: "Group", transform: "translate(91.000000, 154.000000)", children: [_jsx(Path, { id: "Combined-Shape", className: "st0", d: "M544.1,240.5v108h60v-64h68c28.6-0.2,52.9-18.5,62.1-44H544.1z" }), _jsxs(LinearGradient, { id: "Combined-Shape_4_", gradientUnits: "userSpaceOnUse", x1: 362.4047, y1: 275.4307, x2: 363.4047, y2: 275.4307, gradientTransform: "matrix(201.7633 0 0 -79 -72583.8438 21950.0254)", children: [_jsx(Stop, { offset: 0, style: {
|
|
6
|
+
stopColor: "#00A0E5"
|
|
7
|
+
} }), _jsx(Stop, { offset: 1, style: {
|
|
8
|
+
stopColor: "#0077C3"
|
|
9
|
+
} })] }), _jsx(Path, { id: "Combined-Shape_1_", className: "st1", d: "M536.1,151.5c3.5,44.1,45.3,79,96.3,79c0.2,0,104.3,0,104.3,0 c0.8-4,1.2-8.2,1.2-12.5c0-36.6-29.5-66.2-66-66.5L536.1,151.5z" }), _jsx(Path, { id: "Combined-Shape_2_", className: "st0", d: "M447.3,229.4l0-0.1L447.3,229.4c0.7-1.2,1.8-1.9,3.2-1.9c2,0,3.5,1.6,3.6,3.5l0,0 v116.5h60v-196h-60c-7.6,0.3-16.2,5.8-19.4,12.7L387,266.6c-0.1,0.4-0.3,0.8-0.5,1.2l0,0l0,0c-0.7,1-1.9,1.7-3.3,1.7 c-2.2,0-4-1.8-4-4v-114h-60v196h60v0c7.5-0.4,15.9-5.9,19.1-12.7l49-105.1C447.2,229.6,447.3,229.5,447.3,229.4L447.3,229.4z" }), _jsx(Path, { id: "Combined-Shape_3_", className: "st0", d: "M223.3,232.8l-35.1,114.7H145L110,232.7c-0.3-1.8-1.9-3.2-3.9-3.2 c-2.2,0-3.9,1.8-3.9,3.9c0,0,0,0,0,0l0,114h-60v-196h51.5H109c11,0,22.6,8.6,25.8,19.1l29.2,95.5c1.5,4.8,3.8,4.7,5.3,0 l29.2-95.5c3.2-10.6,14.8-19.1,25.8-19.1h15.3h51.5v196h-60v-114c0,0,0,0,0-0.1c0-2.2-1.8-3.9-3.9-3.9 C225.2,229.5,223.6,230.9,223.3,232.8L223.3,232.8z" })] }) }) }) });
|
|
10
|
+
export default SvgMir;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Ray.d.ts","sourceRoot":"","sources":["../../../src/icons/components/Ray.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,SAAS,EAAE,MAAM,UAAU,CAAC;AACrC,QAAA,MAAM,MAAM,GAAI,2BAIb,SAAS,4CAAsiB,CAAC;AACnjB,eAAe,MAAM,CAAC"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import Svg, { Path } from 'react-native-svg';
|
|
3
|
+
const SvgRay = ({ size = 24, color = "#101010", ...props }) => _jsxs(Svg, { width: size, height: size, fill: "none", viewBox: "0 0 24 24", preserveAspectRatio: "xMidYMid meet", ...props, children: [_jsx(Path, { fillRule: "evenodd", clipRule: "evenodd", d: "M3.37956 0H9.83078L8.25556 3.15093H12.2898L1.5988 12L3.09859 6.76017H0L3.37956 0ZM4.01679 1.03121L1.66828 5.72896H4.46623L3.50633 9.08256L9.42675 4.18214H6.58728L8.1625 1.03121H4.01679Z", fill: "white" }), _jsx(Path, { d: "M9.02547 0.820557H4.10246L1.64096 5.74356H4.10246L3.28196 9.84606L10.6665 4.10256L7.38446 3.28206L9.02547 0.820557Z", fill: "white", stroke: "white", strokeWidth: 0.687369 })] });
|
|
4
|
+
export default SvgRay;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Star.d.ts","sourceRoot":"","sources":["../../../src/icons/components/Star.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,SAAS,EAAE,MAAM,UAAU,CAAC;AACrC,QAAA,MAAM,OAAO,GAAI,2BAId,SAAS,
|
|
1
|
+
{"version":3,"file":"Star.d.ts","sourceRoot":"","sources":["../../../src/icons/components/Star.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,SAAS,EAAE,MAAM,UAAU,CAAC;AACrC,QAAA,MAAM,OAAO,GAAI,2BAId,SAAS,4CAAwrC,CAAC;AACrsC,eAAe,OAAO,CAAC"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { jsx as _jsx
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
2
|
import Svg, { Path } from 'react-native-svg';
|
|
3
|
-
const SvgStar = ({ size = 24, color = "#
|
|
3
|
+
const SvgStar = ({ size = 24, color = "#101010", ...props }) => _jsx(Svg, { width: size, height: size, fill: "none", viewBox: "0 0 24 24", preserveAspectRatio: "xMidYMid meet", ...props, children: _jsx(Path, { fillRule: "evenodd", clipRule: "evenodd", d: "M12 1.25C12.2855 1.25 12.5462 1.41205 12.6725 1.66803L15.5882 7.57485L22.1085 8.52789C22.3909 8.56917 22.6254 8.76717 22.7134 9.03868C22.8015 9.31018 22.7278 9.60812 22.5233 9.80727L17.8059 14.402L18.9192 20.8932C18.9675 21.1746 18.8518 21.459 18.6208 21.6268C18.3898 21.7946 18.0836 21.8167 17.8309 21.6838L12 18.6174L6.16908 21.6838C5.91639 21.8167 5.61017 21.7946 5.37919 21.6268C5.14821 21.459 5.03252 21.1746 5.08079 20.8932L6.1941 14.402L1.47669 9.80727C1.27223 9.60812 1.19852 9.31018 1.28656 9.03868C1.37459 8.76717 1.6091 8.56917 1.89152 8.52789L8.4118 7.57485L11.3275 1.66803C11.4538 1.41205 11.7145 1.25 12 1.25ZM12 3.69444L9.58252 8.59197C9.47337 8.8131 9.26248 8.96645 9.01846 9.00211L3.6113 9.79245L7.52329 13.6027C7.7002 13.775 7.78094 14.0234 7.7392 14.2668L6.81613 19.6488L11.6509 17.1062C11.8694 16.9913 12.1305 16.9913 12.3491 17.1062L17.1839 19.6488L16.2608 14.2668C16.219 14.0234 16.2998 13.775 16.4767 13.6027L20.3887 9.79245L14.9815 9.00211C14.7375 8.96645 14.5266 8.8131 14.4175 8.59197L12 3.69444Z", fill: color }) });
|
|
4
4
|
export default SvgStar;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Unionpay.d.ts","sourceRoot":"","sources":["../../../src/icons/components/Unionpay.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,SAAS,EAAE,MAAM,UAAU,CAAC;AACrC,QAAA,MAAM,WAAW,GAAI,2BAIlB,SAAS,4CAAq5S,CAAC;AACl6S,eAAe,WAAW,CAAC"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import Svg, { Path } from 'react-native-svg';
|
|
3
|
+
const SvgUnionpay = ({ size = 24, color = "#101010", ...props }) => _jsxs(Svg, { width: size, height: size, enableBackground: "new 0 0 780 500", xmlSpace: "preserve", viewBox: "0 0 24 24", fill: "none", preserveAspectRatio: "xMidYMid meet", ...props, children: [_jsx(Path, { d: "m216.4 69.791h142.39c19.87 0 32.287 16.406 27.63 36.47l-66.333 287.48c-4.656 20.063-24.629 36.47-44.498 36.47h-142.39c-19.87 0-32.287-16.406-27.63-36.47l66.331-287.48c4.657-20.168 24.526-36.47 44.395-36.47h0.104z", fill: "#D10429" }), _jsx(Path, { d: "m346.34 69.791h163.82c19.867 0 10.865 16.406 6.209 36.47l-66.334 287.48c-4.658 20.063-3.209 36.47-23.078 36.47h-163.81c-19.972 0-32.287-16.406-27.527-36.47l66.334-287.48c4.656-20.168 24.524-36.47 44.498-36.47h-0.104z", fill: "#022E64" }), _jsx(Path, { d: "m504.41 69.791h142.39c19.869 0 32.287 16.406 27.631 36.47l-66.334 287.48c-4.656 20.063-24.629 36.47-44.498 36.47h-142.39c-19.973 0-32.288-16.406-27.631-36.47l66.334-287.48c4.656-20.168 24.525-36.47 44.393-36.47h0.105z", fill: "#076F74" }), _jsx(Path, { d: "m480.5 340.81h13.453l3.828-13.063h-13.35l-3.931 13.063zm10.762-35.95l-4.658 15.467s5.072-2.613 7.865-3.449c2.795-0.627 6.934-1.15 6.934-1.15l3.207-10.763h-13.451l0.103-0.105zm6.726-22.153l-4.449 14.839s4.967-2.3 7.76-3.029c2.795-0.732 6.934-0.941 6.934-0.941l3.207-10.764h-13.348l-0.104-0.105zm29.7 0l-17.385 57.997h4.656l-3.621 12.018h-4.658l-1.137 3.657h-16.559l1.139-3.657h-33.529l3.311-11.076h3.416l17.594-58.938 3.518-11.913h16.867l-1.76 5.956s4.449-3.239 8.797-4.39c4.244-1.148 28.666-1.566 28.666-1.566l-3.623 11.809h-5.795l0.103 0.103z", fill: "#FEFEFE" }), _jsx(Path, { d: "m534.59 270.79h18.006l0.207 6.792c-0.102 1.149 0.828 1.672 3.002 1.672h3.621l-3.311 11.183h-9.729c-8.381 0.627-11.59-3.03-11.383-7.106l-0.311-12.437-0.102-0.104zm2.217 53.2h-17.178l2.896-9.927h19.662l2.793-9.092h-19.35l3.311-11.182h53.812l-3.312 11.182h-18.109l-2.793 9.092h18.109l-3.002 9.927h-19.559l-3.518 4.18h7.969l1.965 12.54c0.207 1.254 0.207 2.09 0.621 2.613 0.414 0.418 2.795 0.627 4.139 0.627h2.381l-3.725 12.227h-6.107c-0.93 0-2.379-0.104-4.346-0.104-1.863-0.21-3.104-1.255-4.346-1.882-1.139-0.522-2.793-1.881-3.207-4.284l-1.863-12.54-8.9 12.331c-2.795 3.866-6.621 6.897-13.143 6.897h-12.417l3.311-10.869h4.762c1.346 0 2.588-0.521 3.52-1.045 0.93-0.418 1.758-0.836 2.586-2.193l13.038-18.498zm-187.9-27.2h45.429l-3.312 10.973h-18.11l-2.793 9.299h18.627l-3.415 11.287h-18.524l-4.553 15.152c-0.517 1.672 4.45 1.881 6.209 1.881l9.313-1.254-3.726 12.54h-20.904c-1.654 0-2.896-0.209-4.76-0.627-1.76-0.418-2.587-1.254-3.311-2.403-0.726-1.254-1.968-2.195-1.14-4.912l6.002-20.063h-10.347l3.415-11.495h10.348l2.794-9.3h-10.347l3.312-10.974-0.207-0.104zm31.387-19.835h18.626l-3.414 11.39h-25.458l-2.794 2.404c-1.242 1.15-1.552 0.732-3.105 1.568-1.447 0.73-4.449 2.193-8.382 2.193h-8.175l3.311-10.972h2.484c2.07 0 3.52-0.21 4.243-0.627 0.828-0.522 1.76-1.672 2.69-3.554l4.656-8.568h18.526l-3.208 6.27v-0.104zm35.106 18.81s5.07-4.701 13.764-6.164c1.967-0.418 14.385-0.211 14.385-0.211l1.863-6.27h-26.182l-3.83 12.75v-0.105zm24.629 4.807h-25.975l-1.551 5.329h22.559c2.691-0.313 3.209 0.104 3.416-0.104l1.654-5.225h-0.103zm-33.734-29.678h15.832l-2.275 8.047s4.967-4.075 8.484-5.539c3.52-1.254 11.383-2.508 11.383-2.508l25.664-0.104-8.795 29.469c-1.449 5.016-3.209 8.256-4.244 9.823-0.93 1.463-2.07 2.821-4.346 4.075-2.172 1.15-4.141 1.881-6.002 1.986-1.656 0.104-4.346 0.209-7.865 0.209h-24.732l-6.934 23.303c-0.619 2.299-0.93 3.447-0.516 4.074 0.309 0.523 1.24 1.15 2.379 1.15l10.865-1.045-3.725 12.749h-12.211c-3.932 0-6.727-0.104-8.693-0.21-1.862-0.208-3.83 0-5.174-1.044-1.138-1.045-2.896-2.403-2.794-3.763 0.104-1.254 0.621-3.344 1.45-6.27l22.249-74.402z", fill: "#FEFEFE" }), _jsx(Path, { d: "m452.43 317.79l-1.449 7.105c-0.619 2.194-1.137 3.867-2.793 5.33-1.76 1.463-3.725 3.03-8.484 3.03l-8.797 0.418-0.104 7.942c-0.104 2.193 0.518 1.984 0.828 2.402 0.414 0.418 0.723 0.523 1.137 0.732l2.795-0.21 8.383-0.417-3.52 11.704h-9.623c-6.727 0-11.797-0.21-13.35-1.463-1.656-1.046-1.863-2.3-1.863-4.599l0.621-31.141h15.42l-0.207 6.374h3.725c1.242 0 2.174-0.104 2.691-0.418 0.516-0.313 0.828-0.836 1.035-1.567l1.551-5.016h12.109l-0.105-0.206zm-219.37-156c-0.517 2.508-10.451 48.592-10.451 48.592-2.174 9.3-3.726 15.989-8.9 20.273-3.001 2.508-6.52 3.657-10.555 3.657-6.52 0-10.245-3.239-10.866-9.404l-0.104-2.09s1.966-12.436 1.966-12.54c0 0 10.349-42.009 12.212-47.548 0.103-0.313 0.103-0.522 0.103-0.627-20.18 0.21-23.801 0-24.008-0.313-0.104 0.418-0.621 3.03-0.621 3.03l-10.556 47.34-0.932 3.97-1.758 13.168c0 3.866 0.724 7.105 2.277 9.718 4.863 8.569 18.627 9.823 26.388 9.823 10.038 0 19.455-2.195 25.767-6.061 11.073-6.584 13.97-16.929 16.454-26.02l1.242-4.703s10.659-43.576 12.522-49.219c0.103-0.314 0.103-0.523 0.207-0.627-14.695 0.104-18.938 0-20.387-0.314v-0.105zm59.029 86.623c-7.141-0.105-9.728-0.105-18.11 0.313l-0.311-0.627c0.724-3.24 1.552-6.374 2.173-9.614l1.035-4.389c1.552-6.792 3.001-14.839 3.208-17.242 0.207-1.463 0.62-5.12-3.519-5.12-1.759 0-3.518 0.835-5.38 1.671-1.036 3.658-3.002 13.899-4.037 18.497-2.07 9.823-2.173 10.972-3.104 15.78l-0.621 0.626c-7.347-0.104-9.934-0.104-18.42 0.314l-0.414-0.732c1.449-5.852 2.794-11.704 4.14-17.556 3.518-15.78 4.45-21.84 5.38-29.887l0.725-0.418c8.279-1.149 10.245-1.463 19.248-3.239l0.724 0.836-1.345 5.016c1.552-0.94 3.001-1.881 4.553-2.613 4.243-2.09 8.9-2.717 11.487-2.717 3.932 0 8.279 1.15 10.038 5.748 1.656 4.075 0.62 9.091-1.656 19.019l-1.138 5.016c-2.277 11.077-2.69 13.062-3.933 20.586l-0.827 0.627 0.104 0.105zm29.058 0.027c-4.346 0-7.14-0.104-9.83 0-2.691 0-5.278 0.21-9.314 0.314l-0.207-0.314-0.207-0.418c1.138-4.18 1.656-5.643 2.277-7.106 0.517-1.463 1.034-2.926 2.07-7.21 1.241-5.539 2.069-9.405 2.586-12.854 0.621-3.24 0.932-6.06 1.346-9.3l0.31-0.209 0.31-0.313c4.347-0.627 7.038-1.045 9.832-1.463s5.691-0.94 10.141-1.776l0.207 0.418 0.103 0.418-2.482 10.345c-0.828 3.449-1.656 6.897-2.38 10.346-1.554 7.315-2.277 10.032-2.587 12.017-0.414 1.881-0.519 2.822-1.14 6.584l-0.414 0.313-0.414 0.314-0.207-0.106zm45.941-25.675c-0.31 1.881-1.966 8.883-4.139 11.809-1.553 2.194-3.312 3.553-5.382 3.553-0.62 0-4.14 0-4.242-5.33 0-2.612 0.517-5.33 1.138-8.255 1.863-8.465 4.14-15.466 9.831-15.466 4.451 0 4.76 5.225 2.794 13.689zm18.731 0.836c2.483-11.077 0.518-16.302-1.862-19.437-3.726-4.807-10.348-6.374-17.178-6.374-4.141 0-13.867 0.418-21.525 7.524-5.484 5.12-8.071 12.122-9.52 18.81-1.554 6.792-3.312 19.019 7.864 23.617 3.414 1.463 8.382 1.88 11.59 1.88 8.176 0 16.558-2.298 22.87-8.986 4.863-5.434 7.036-13.585 7.864-17.034h-0.103zm174.43 26.08c-8.693-0.104-11.176-0.104-19.145 0.314l-0.518-0.627c2.174-8.256 4.346-16.616 6.312-24.976 2.484-10.868 3.105-15.466 3.934-21.84l0.619-0.522c8.59-1.254 10.971-1.567 19.973-3.239l0.207 0.731c-1.656 6.897-3.207 13.69-4.863 20.482-3.311 14.317-4.451 21.632-5.691 29.156l-0.828 0.627v-0.106z", fill: "#FEFEFE" }), _jsx(Path, { d: "m547.75 224.16c-0.414 1.776-2.07 8.882-4.242 11.808-1.449 2.09-4.967 3.449-6.934 3.449-0.621 0-4.035 0-4.242-5.225 0-2.613 0.516-5.33 1.137-8.256 1.863-8.255 4.141-15.257 9.832-15.257 4.449 0 6.416 5.12 4.449 13.585v-0.104zm17.076 0.836c2.482-11.077-7.658-0.94-9.211-4.598-2.484-5.748-0.932-17.243-10.865-21.109-3.83-1.568-12.832 0.418-20.49 7.524-5.381 5.016-8.072 12.017-9.52 18.705-1.555 6.688-3.312 19.02 7.76 23.304 3.52 1.567 6.727 1.985 9.934 1.776 11.178-0.627 19.662-17.661 25.977-24.349 4.86-5.329 5.689 1.986 6.415-1.253zm-129.94 23.413c-7.141-0.105-9.625-0.105-18.006 0.313l-0.311-0.627c0.725-3.24 1.553-6.374 2.275-9.614l0.932-4.389c1.553-6.792 3.105-14.839 3.207-17.242 0.207-1.463 0.621-5.12-3.414-5.12-1.76 0-3.621 0.835-5.381 1.671-0.932 3.658-3.002 13.899-4.037 18.497-1.965 9.823-2.172 10.972-3.104 15.78l-0.621 0.626c-7.346-0.104-9.934-0.104-18.419 0.314l-0.414-0.732c1.449-5.852 2.794-11.704 4.14-17.556 3.518-15.78 4.346-21.84 5.379-29.887l0.621-0.418c8.281-1.149 10.35-1.463 19.248-3.239l0.727 0.836-1.242 5.016c1.449-0.94 3-1.881 4.449-2.613 4.244-2.09 8.9-2.717 11.486-2.717 3.934 0 8.176 1.15 10.037 5.748 1.656 4.075 0.52 9.091-1.758 19.019l-1.139 5.016c-2.379 11.077-2.689 13.062-3.934 20.586l-0.826 0.627 0.105 0.105zm62-86.519l-6.002 0.105c-15.523 0.209-21.732 0.104-24.215-0.209-0.207 1.15-0.621 3.135-0.621 3.135s-5.588 25.916-5.588 26.02c0 0-13.246 55.176-13.867 57.788 13.557-0.209 19.041-0.209 21.422 0.105 0.518-2.613 3.621-17.974 3.725-17.974 0 0 2.691-11.286 2.795-11.704 0 0 0.826-1.15 1.654-1.672h1.242c11.695 0 24.836 0 35.186-7.628 7.037-5.225 11.797-13.063 13.971-22.468 0.516-2.299 0.93-5.016 0.93-7.837 0-3.658-0.723-7.21-2.793-10.032-5.279-7.42-15.732-7.524-27.839-7.629zm7.762 27.066c-1.242 5.747-4.967 10.659-9.727 12.958-3.934 1.985-8.693 2.194-13.66 2.194h-3.209l0.207-1.254s5.9-25.916 5.9-25.811l0.205-1.359 0.104-1.045 2.381 0.21s12.211 1.044 12.418 1.044c4.759 1.881 6.83 6.688 5.381 13.063zm127.21 8.666l-0.725-0.836c-8.795 1.776-10.451 2.09-18.523 3.24l-0.621 0.626c0 0.105-0.104 0.21-0.104 0.418v-0.104c-6.002 14.107-5.898 11.077-10.762 22.154 0-0.523 0-0.836-0.104-1.359l-1.242-24.035-0.725-0.836c-9.314 1.777-9.52 2.09-18.006 3.24l-0.621 0.627c-0.104 0.313-0.104 0.627-0.104 0.94l0.104 0.105c1.035 5.538 0.828 4.284 1.863 12.958 0.518 4.284 1.139 8.569 1.654 12.749 0.828 7.106 1.348 10.554 2.381 21.318-5.795 9.613-7.141 13.271-12.729 21.734l0.311 0.836c8.383-0.312 10.244-0.312 16.453-0.312l1.348-1.568c4.654-10.135 40.254-71.79 40.254-71.79l-0.102-0.105zm-302.72 6.922c4.76-3.344 5.38-7.942 1.345-10.345-4.036-2.404-11.176-1.672-15.937 1.672-4.76 3.24-5.277 7.837-1.241 10.345 3.932 2.3 11.073 1.672 15.833-1.672z", fill: "#FEFEFE" }), _jsx(Path, { d: "m590.33 270.9l-6.936 12.019c-2.172 4.075-6.311 7.21-12.727 7.21l-11.074-0.209 3.209-10.868h2.172c1.139 0 1.967-0.104 2.588-0.418 0.621-0.209 0.932-0.627 1.449-1.254l4.139-6.583h17.281l-0.101 0.103z", fill: "#FEFEFE" })] });
|
|
4
|
+
export default SvgUnionpay;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Visa.d.ts","sourceRoot":"","sources":["../../../src/icons/components/Visa.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,SAAS,EAAE,MAAM,UAAU,CAAC;AACrC,QAAA,MAAM,OAAO,GAAI,2BAId,SAAS,4CAAmsC,CAAC;AAChtC,eAAe,OAAO,CAAC"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import Svg, { Path } from 'react-native-svg';
|
|
3
|
+
const SvgVisa = ({ size = 24, color = "#101010", ...props }) => _jsx(Svg, { width: size, height: size, fill: "none", viewBox: "0 0 24 24", preserveAspectRatio: "xMidYMid meet", ...props, children: _jsx(Path, { d: "M489.823 143.111C442.988 143.111 401.134 167.393 401.134 212.256C401.134 263.706 475.364 267.259 475.364 293.106C475.364 303.989 462.895 313.731 441.6 313.731C411.377 313.731 388.789 300.119 388.789 300.119L379.123 345.391C379.123 345.391 405.145 356.889 439.692 356.889C490.898 356.889 531.19 331.415 531.19 285.784C531.19 231.419 456.652 227.971 456.652 203.981C456.652 195.455 466.887 186.114 488.122 186.114C512.081 186.114 531.628 196.014 531.628 196.014L541.087 152.289C541.087 152.289 519.818 143.111 489.823 143.111ZM61.3294 146.411L60.1953 153.011C60.1953 153.011 79.8988 156.618 97.645 163.814C120.495 172.064 122.122 176.868 125.971 191.786L167.905 353.486H224.118L310.719 146.411H254.635L198.989 287.202L176.282 167.861C174.199 154.203 163.651 146.411 150.74 146.411H61.3294ZM333.271 146.411L289.275 353.486H342.756L386.598 146.411H333.271ZM631.554 146.411C618.658 146.411 611.825 153.318 606.811 165.386L528.458 353.486H584.542L595.393 322.136H663.72L670.318 353.486H719.805L676.633 146.411H631.554ZM638.848 202.356L655.473 280.061H610.935L638.848 202.356Z", fill: "#1434CB" }) });
|
|
4
|
+
export default SvgVisa;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Walk.d.ts","sourceRoot":"","sources":["../../../src/icons/components/Walk.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,SAAS,EAAE,MAAM,UAAU,CAAC;AACrC,QAAA,MAAM,OAAO,GAAI,2BAId,SAAS,4CAAg8C,CAAC;AAC78C,eAAe,OAAO,CAAC"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import Svg, { Path, G, Defs, ClipPath, Rect } from 'react-native-svg';
|
|
3
|
+
const SvgWalk = ({ size = 24, color = "#101010", ...props }) => _jsxs(Svg, { width: size, height: size, fill: "none", viewBox: "0 0 24 24", preserveAspectRatio: "xMidYMid meet", ...props, children: [_jsx(G, { clipPath: "url(#clip0_7467_7322)", children: _jsx(Path, { d: "M6.34748 7.26L9.01831 5.32C9.31813 5.10059 9.68281 4.98793 10.0541 5C10.5071 5.01129 10.9452 5.16342 11.3077 5.43524C11.6702 5.70705 11.9389 6.08504 12.0766 6.51667C12.2316 7.0025 12.3733 7.33083 12.5016 7.50167C12.8894 8.019 13.3924 8.43884 13.9707 8.72786C14.5491 9.01688 15.1868 9.16712 15.8333 9.16667V10.8333C14.9727 10.8343 14.1226 10.6444 13.3442 10.2774C12.5658 9.91038 11.8785 9.37535 11.3316 8.71083L10.7508 12.0067L12.4683 13.4483L14.3208 18.5383L12.7541 19.1083L11.0541 14.4383L8.22915 12.0675C7.99731 11.8803 7.81991 11.6344 7.71541 11.3553C7.61091 11.0762 7.58313 10.7743 7.63498 10.4808L8.05914 8.07667L7.49498 8.48667L5.72248 10.9267L4.37415 9.94667L6.33331 7.25L6.34748 7.26ZM11.25 4.58333C10.808 4.58333 10.384 4.40774 10.0715 4.09518C9.75891 3.78262 9.58331 3.35869 9.58331 2.91667C9.58331 2.47464 9.75891 2.05072 10.0715 1.73816C10.384 1.42559 10.808 1.25 11.25 1.25C11.692 1.25 12.1159 1.42559 12.4285 1.73816C12.741 2.05072 12.9166 2.47464 12.9166 2.91667C12.9166 3.35869 12.741 3.78262 12.4285 4.09518C12.1159 4.40774 11.692 4.58333 11.25 4.58333ZM8.77331 15.5675L6.09498 18.7592L4.81831 17.6883L7.29831 14.7333L7.91998 12.9167L9.41248 14.1667L8.77331 15.5675Z", fill: "#383838" }) }), _jsx(Defs, { children: _jsx(ClipPath, { id: "clip0_7467_7322", children: _jsx(Rect, { width: 20, height: 20, fill: "white" }) }) })] });
|
|
4
|
+
export default SvgWalk;
|
package/dist/icons/index.d.ts
CHANGED
|
@@ -26,10 +26,11 @@ export { default as ArrowUpLeftIcon } from "./components/ArrowUpLeft";
|
|
|
26
26
|
export { default as ArrowUpRightIcon } from "./components/ArrowUpRight";
|
|
27
27
|
export { default as AtSignIcon } from "./components/AtSign";
|
|
28
28
|
export { default as AwardIcon } from "./components/Award";
|
|
29
|
+
export { default as BagIcon } from "./components/Bag";
|
|
29
30
|
export { default as BalanceIcon } from "./components/Balance";
|
|
30
31
|
export { default as BarChartIcon } from "./components/BarChart";
|
|
31
32
|
export { default as BarChart2Icon } from "./components/BarChart2";
|
|
32
|
-
export { default as
|
|
33
|
+
export { default as BarcodeIcon } from "./components/Barcode";
|
|
33
34
|
export { default as BatteryIcon } from "./components/Battery";
|
|
34
35
|
export { default as BatteryChargingIcon } from "./components/BatteryCharging";
|
|
35
36
|
export { default as BellIcon } from "./components/Bell";
|
|
@@ -40,8 +41,8 @@ export { default as BluetoothIcon } from "./components/Bluetooth";
|
|
|
40
41
|
export { default as BodyScanIcon } from "./components/BodyScan";
|
|
41
42
|
export { default as BoldIcon } from "./components/Bold";
|
|
42
43
|
export { default as BookIcon } from "./components/Book";
|
|
43
|
-
export { default as BookmarkIcon } from "./components/Bookmark";
|
|
44
44
|
export { default as BookOpenIcon } from "./components/BookOpen";
|
|
45
|
+
export { default as BookmarkIcon } from "./components/Bookmark";
|
|
45
46
|
export { default as BoxIcon } from "./components/Box";
|
|
46
47
|
export { default as BriefcaseIcon } from "./components/Briefcase";
|
|
47
48
|
export { default as CalendarIcon } from "./components/Calendar";
|
|
@@ -55,11 +56,11 @@ export { default as CheckSquareIcon } from "./components/CheckSquare";
|
|
|
55
56
|
export { default as ChevronDownIcon } from "./components/ChevronDown";
|
|
56
57
|
export { default as ChevronLeftIcon } from "./components/ChevronLeft";
|
|
57
58
|
export { default as ChevronRightIcon } from "./components/ChevronRight";
|
|
59
|
+
export { default as ChevronUpIcon } from "./components/ChevronUp";
|
|
58
60
|
export { default as ChevronsDownIcon } from "./components/ChevronsDown";
|
|
59
61
|
export { default as ChevronsLeftIcon } from "./components/ChevronsLeft";
|
|
60
62
|
export { default as ChevronsRightIcon } from "./components/ChevronsRight";
|
|
61
63
|
export { default as ChevronsUpIcon } from "./components/ChevronsUp";
|
|
62
|
-
export { default as ChevronUpIcon } from "./components/ChevronUp";
|
|
63
64
|
export { default as ChromeIcon } from "./components/Chrome";
|
|
64
65
|
export { default as CircleIcon } from "./components/Circle";
|
|
65
66
|
export { default as CircularityBuyBackIcon } from "./components/CircularityBuyBack";
|
|
@@ -72,7 +73,7 @@ export { default as CloudLightningIcon } from "./components/CloudLightning";
|
|
|
72
73
|
export { default as CloudOffIcon } from "./components/CloudOff";
|
|
73
74
|
export { default as CloudRainIcon } from "./components/CloudRain";
|
|
74
75
|
export { default as CloudSnowIcon } from "./components/CloudSnow";
|
|
75
|
-
export { default as
|
|
76
|
+
export { default as ClubeDecathlonIcon } from "./components/ClubeDecathlon";
|
|
76
77
|
export { default as CodeIcon } from "./components/Code";
|
|
77
78
|
export { default as CodepenIcon } from "./components/Codepen";
|
|
78
79
|
export { default as CodesandboxIcon } from "./components/Codesandbox";
|
|
@@ -137,15 +138,16 @@ export { default as FolderIcon } from "./components/Folder";
|
|
|
137
138
|
export { default as FolderMinusIcon } from "./components/FolderMinus";
|
|
138
139
|
export { default as FolderPlusIcon } from "./components/FolderPlus";
|
|
139
140
|
export { default as FootballIcon } from "./components/Football";
|
|
141
|
+
export { default as FrameIcon } from "./components/Frame";
|
|
140
142
|
export { default as FramerIcon } from "./components/Framer";
|
|
141
143
|
export { default as FrownIcon } from "./components/Frown";
|
|
142
144
|
export { default as GiftIcon } from "./components/Gift";
|
|
143
145
|
export { default as GitBranchIcon } from "./components/GitBranch";
|
|
144
146
|
export { default as GitCommitIcon } from "./components/GitCommit";
|
|
145
|
-
export { default as GithubIcon } from "./components/Github";
|
|
146
|
-
export { default as GitlabIcon } from "./components/Gitlab";
|
|
147
147
|
export { default as GitMergeIcon } from "./components/GitMerge";
|
|
148
148
|
export { default as GitPullRequestIcon } from "./components/GitPullRequest";
|
|
149
|
+
export { default as GithubIcon } from "./components/Github";
|
|
150
|
+
export { default as GitlabIcon } from "./components/Gitlab";
|
|
149
151
|
export { default as GlobeIcon } from "./components/Globe";
|
|
150
152
|
export { default as GridIcon } from "./components/Grid";
|
|
151
153
|
export { default as HangerIcon } from "./components/Hanger";
|
|
@@ -158,6 +160,7 @@ export { default as HelpCircleIcon } from "./components/HelpCircle";
|
|
|
158
160
|
export { default as HexagonIcon } from "./components/Hexagon";
|
|
159
161
|
export { default as HomeIcon } from "./components/Home";
|
|
160
162
|
export { default as HourglassIcon } from "./components/Hourglass";
|
|
163
|
+
export { default as HouseIcon } from "./components/House";
|
|
161
164
|
export { default as ImageIcon } from "./components/Image";
|
|
162
165
|
export { default as InboxIcon } from "./components/Inbox";
|
|
163
166
|
export { default as InfoIcon } from "./components/Info";
|
|
@@ -168,7 +171,7 @@ export { default as LayersIcon } from "./components/Layers";
|
|
|
168
171
|
export { default as LayoutIcon } from "./components/Layout";
|
|
169
172
|
export { default as LeafIcon } from "./components/Leaf";
|
|
170
173
|
export { default as LifeBuoyIcon } from "./components/LifeBuoy";
|
|
171
|
-
export { default as
|
|
174
|
+
export { default as LightbulbIcon } from "./components/Lightbulb";
|
|
172
175
|
export { default as LinkIcon } from "./components/Link";
|
|
173
176
|
export { default as Link2Icon } from "./components/Link2";
|
|
174
177
|
export { default as LinkedinIcon } from "./components/Linkedin";
|
|
@@ -229,6 +232,7 @@ export { default as PocketIcon } from "./components/Pocket";
|
|
|
229
232
|
export { default as PowerIcon } from "./components/Power";
|
|
230
233
|
export { default as PrinterIcon } from "./components/Printer";
|
|
231
234
|
export { default as RadioIcon } from "./components/Radio";
|
|
235
|
+
export { default as RayIcon } from "./components/Ray";
|
|
232
236
|
export { default as RecycleIcon } from "./components/Recycle";
|
|
233
237
|
export { default as RefreshCcwIcon } from "./components/RefreshCcw";
|
|
234
238
|
export { default as RefreshCwIcon } from "./components/RefreshCw";
|
|
@@ -268,15 +272,15 @@ export { default as SparklesIcon } from "./components/Sparkles";
|
|
|
268
272
|
export { default as SpeakerIcon } from "./components/Speaker";
|
|
269
273
|
export { default as SquareIcon } from "./components/Square";
|
|
270
274
|
export { default as StarIcon } from "./components/Star";
|
|
271
|
-
export { default as StarFillIcon } from "./components/StarFill";
|
|
272
275
|
export { default as StopCircleIcon } from "./components/StopCircle";
|
|
273
276
|
export { default as SunIcon } from "./components/Sun";
|
|
274
277
|
export { default as SunriseIcon } from "./components/Sunrise";
|
|
275
278
|
export { default as SunsetIcon } from "./components/Sunset";
|
|
279
|
+
export { default as TableIcon } from "./components/Table";
|
|
276
280
|
export { default as TabletIcon } from "./components/Tablet";
|
|
277
281
|
export { default as TagIcon } from "./components/Tag";
|
|
278
282
|
export { default as TargetIcon } from "./components/Target";
|
|
279
|
-
export { default as
|
|
283
|
+
export { default as TaticsIcon } from "./components/Tatics";
|
|
280
284
|
export { default as TerminalIcon } from "./components/Terminal";
|
|
281
285
|
export { default as ThermometerIcon } from "./components/Thermometer";
|
|
282
286
|
export { default as ThumbsDownIcon } from "./components/ThumbsDown";
|
|
@@ -306,8 +310,8 @@ export { default as UserIcon } from "./components/User";
|
|
|
306
310
|
export { default as UserCheckIcon } from "./components/UserCheck";
|
|
307
311
|
export { default as UserMinusIcon } from "./components/UserMinus";
|
|
308
312
|
export { default as UserPlusIcon } from "./components/UserPlus";
|
|
309
|
-
export { default as UsersIcon } from "./components/Users";
|
|
310
313
|
export { default as UserXIcon } from "./components/UserX";
|
|
314
|
+
export { default as UsersIcon } from "./components/Users";
|
|
311
315
|
export { default as VideoIcon } from "./components/Video";
|
|
312
316
|
export { default as VideoOffIcon } from "./components/VideoOff";
|
|
313
317
|
export { default as VoicemailIcon } from "./components/Voicemail";
|
|
@@ -315,7 +319,9 @@ export { default as VolumeIcon } from "./components/Volume";
|
|
|
315
319
|
export { default as Volume1Icon } from "./components/Volume1";
|
|
316
320
|
export { default as Volume2Icon } from "./components/Volume2";
|
|
317
321
|
export { default as VolumeXIcon } from "./components/VolumeX";
|
|
322
|
+
export { default as WalkIcon } from "./components/Walk";
|
|
318
323
|
export { default as WatchIcon } from "./components/Watch";
|
|
324
|
+
export { default as WhatsappIcon } from "./components/Whatsapp";
|
|
319
325
|
export { default as WifiIcon } from "./components/Wifi";
|
|
320
326
|
export { default as WifiOffIcon } from "./components/WifiOff";
|
|
321
327
|
export { default as WindIcon } from "./components/Wind";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/icons/index.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/icons/index.ts"],"names":[],"mappings":"AAAA,YAAY,EAAE,SAAS,EAAE,MAAM,SAAS,CAAC;AAEzC,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,uBAAuB,CAAC;AAChE,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,uBAAuB,CAAC;AAChE,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,sBAAsB,CAAC;AAC9D,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,0BAA0B,CAAC;AACtE,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,2BAA2B,CAAC;AACxE,OAAO,EAAE,OAAO,IAAI,iBAAiB,EAAE,MAAM,4BAA4B,CAAC;AAC1E,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,0BAA0B,CAAC;AACtE,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,2BAA2B,CAAC;AACxE,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,wBAAwB,CAAC;AAClE,OAAO,EAAE,OAAO,IAAI,cAAc,EAAE,MAAM,yBAAyB,CAAC;AACpE,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAC5D,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,uBAAuB,CAAC;AAChE,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,sBAAsB,CAAC;AAC9D,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,wBAAwB,CAAC;AAClE,OAAO,EAAE,OAAO,IAAI,mBAAmB,EAAE,MAAM,8BAA8B,CAAC;AAC9E,OAAO,EAAE,OAAO,IAAI,iBAAiB,EAAE,MAAM,4BAA4B,CAAC;AAC1E,OAAO,EAAE,OAAO,IAAI,kBAAkB,EAAE,MAAM,6BAA6B,CAAC;AAC5E,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,wBAAwB,CAAC;AAClE,OAAO,EAAE,OAAO,IAAI,mBAAmB,EAAE,MAAM,8BAA8B,CAAC;AAC9E,OAAO,EAAE,OAAO,IAAI,cAAc,EAAE,MAAM,yBAAyB,CAAC;AACpE,OAAO,EAAE,OAAO,IAAI,oBAAoB,EAAE,MAAM,+BAA+B,CAAC;AAChF,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,sBAAsB,CAAC;AAC9D,OAAO,EAAE,OAAO,IAAI,iBAAiB,EAAE,MAAM,4BAA4B,CAAC;AAC1E,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,0BAA0B,CAAC;AACtE,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,2BAA2B,CAAC;AACxE,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAC5D,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,oBAAoB,CAAC;AAC1D,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,kBAAkB,CAAC;AACtD,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,sBAAsB,CAAC;AAC9D,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,uBAAuB,CAAC;AAChE,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,wBAAwB,CAAC;AAClE,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,sBAAsB,CAAC;AAC9D,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,sBAAsB,CAAC;AAC9D,OAAO,EAAE,OAAO,IAAI,mBAAmB,EAAE,MAAM,8BAA8B,CAAC;AAC9E,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AACxD,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,sBAAsB,CAAC;AAC9D,OAAO,EAAE,OAAO,IAAI,sBAAsB,EAAE,MAAM,iCAAiC,CAAC;AACpF,OAAO,EAAE,OAAO,IAAI,mBAAmB,EAAE,MAAM,8BAA8B,CAAC;AAC9E,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,wBAAwB,CAAC;AAClE,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,uBAAuB,CAAC;AAChE,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AACxD,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AACxD,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,uBAAuB,CAAC;AAChE,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,uBAAuB,CAAC;AAChE,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,kBAAkB,CAAC;AACtD,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,wBAAwB,CAAC;AAClE,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,uBAAuB,CAAC;AAChE,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAC5D,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,wBAAwB,CAAC;AAClE,OAAO,EAAE,OAAO,IAAI,kBAAkB,EAAE,MAAM,6BAA6B,CAAC;AAC5E,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AACxD,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,oBAAoB,CAAC;AAC1D,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,0BAA0B,CAAC;AACtE,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,0BAA0B,CAAC;AACtE,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,0BAA0B,CAAC;AACtE,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,0BAA0B,CAAC;AACtE,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,2BAA2B,CAAC;AACxE,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,wBAAwB,CAAC;AAClE,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,2BAA2B,CAAC;AACxE,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,2BAA2B,CAAC;AACxE,OAAO,EAAE,OAAO,IAAI,iBAAiB,EAAE,MAAM,4BAA4B,CAAC;AAC1E,OAAO,EAAE,OAAO,IAAI,cAAc,EAAE,MAAM,yBAAyB,CAAC;AACpE,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAC5D,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAC5D,OAAO,EAAE,OAAO,IAAI,sBAAsB,EAAE,MAAM,iCAAiC,CAAC;AACpF,OAAO,EAAE,OAAO,IAAI,yBAAyB,EAAE,MAAM,oCAAoC,CAAC;AAC1F,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,wBAAwB,CAAC;AAClE,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,oBAAoB,CAAC;AAC1D,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,oBAAoB,CAAC;AAC1D,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,2BAA2B,CAAC;AACxE,OAAO,EAAE,OAAO,IAAI,kBAAkB,EAAE,MAAM,6BAA6B,CAAC;AAC5E,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,uBAAuB,CAAC;AAChE,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,wBAAwB,CAAC;AAClE,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,wBAAwB,CAAC;AAClE,OAAO,EAAE,OAAO,IAAI,kBAAkB,EAAE,MAAM,6BAA6B,CAAC;AAC5E,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AACxD,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,sBAAsB,CAAC;AAC9D,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,0BAA0B,CAAC;AACtE,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAC5D,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,sBAAsB,CAAC;AAC9D,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,sBAAsB,CAAC;AAC9D,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,sBAAsB,CAAC;AAC9D,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AACxD,OAAO,EAAE,OAAO,IAAI,kBAAkB,EAAE,MAAM,6BAA6B,CAAC;AAC5E,OAAO,EAAE,OAAO,IAAI,mBAAmB,EAAE,MAAM,8BAA8B,CAAC;AAC9E,OAAO,EAAE,OAAO,IAAI,kBAAkB,EAAE,MAAM,6BAA6B,CAAC;AAC5E,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,2BAA2B,CAAC;AACxE,OAAO,EAAE,OAAO,IAAI,mBAAmB,EAAE,MAAM,8BAA8B,CAAC;AAC9E,OAAO,EAAE,OAAO,IAAI,iBAAiB,EAAE,MAAM,4BAA4B,CAAC;AAC1E,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,2BAA2B,CAAC;AACxE,OAAO,EAAE,OAAO,IAAI,iBAAiB,EAAE,MAAM,4BAA4B,CAAC;AAC1E,OAAO,EAAE,OAAO,IAAI,mBAAmB,EAAE,MAAM,8BAA8B,CAAC;AAC9E,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,kBAAkB,CAAC;AACtD,OAAO,EAAE,OAAO,IAAI,cAAc,EAAE,MAAM,yBAAyB,CAAC;AACpE,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AACxD,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,wBAAwB,CAAC;AAClE,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,uBAAuB,CAAC;AAChE,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAC5D,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AACxD,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAC5D,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,2BAA2B,CAAC;AACxE,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,2BAA2B,CAAC;AACxE,OAAO,EAAE,OAAO,IAAI,cAAc,EAAE,MAAM,yBAAyB,CAAC;AACpE,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,uBAAuB,CAAC;AAChE,OAAO,EAAE,OAAO,IAAI,iBAAiB,EAAE,MAAM,4BAA4B,CAAC;AAC1E,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,uBAAuB,CAAC;AAChE,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,sBAAsB,CAAC;AAC9D,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AACxD,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,oBAAoB,CAAC;AAC1D,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,oBAAoB,CAAC;AAC1D,OAAO,EAAE,OAAO,IAAI,iBAAiB,EAAE,MAAM,4BAA4B,CAAC;AAC1E,OAAO,EAAE,OAAO,IAAI,uBAAuB,EAAE,MAAM,kCAAkC,CAAC;AACtF,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,2BAA2B,CAAC;AACxE,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,2BAA2B,CAAC;AACxE,OAAO,EAAE,OAAO,IAAI,kBAAkB,EAAE,MAAM,6BAA6B,CAAC;AAC5E,OAAO,EAAE,OAAO,IAAI,cAAc,EAAE,MAAM,yBAAyB,CAAC;AACpE,OAAO,EAAE,OAAO,IAAI,kBAAkB,EAAE,MAAM,6BAA6B,CAAC;AAC5E,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,2BAA2B,CAAC;AACxE,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,sBAAsB,CAAC;AAC9D,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,2BAA2B,CAAC;AACxE,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,kBAAkB,CAAC;AACtD,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAC5D,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,uBAAuB,CAAC;AAChE,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,0BAA0B,CAAC;AACtE,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,sBAAsB,CAAC;AAC9D,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,oBAAoB,CAAC;AAC1D,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AACxD,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,wBAAwB,CAAC;AAClE,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,uBAAuB,CAAC;AAChE,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,uBAAuB,CAAC;AAChE,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AACxD,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAC5D,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AACxD,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AACxD,OAAO,EAAE,OAAO,IAAI,cAAc,EAAE,MAAM,yBAAyB,CAAC;AACpE,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAC5D,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,0BAA0B,CAAC;AACtE,OAAO,EAAE,OAAO,IAAI,cAAc,EAAE,MAAM,yBAAyB,CAAC;AACpE,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,uBAAuB,CAAC;AAChE,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,oBAAoB,CAAC;AAC1D,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAC5D,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,oBAAoB,CAAC;AAC1D,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AACxD,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,wBAAwB,CAAC;AAClE,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,wBAAwB,CAAC;AAClE,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,uBAAuB,CAAC;AAChE,OAAO,EAAE,OAAO,IAAI,kBAAkB,EAAE,MAAM,6BAA6B,CAAC;AAC5E,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAC5D,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAC5D,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,oBAAoB,CAAC;AAC1D,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AACxD,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAC5D,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,wBAAwB,CAAC;AAClE,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AACxD,OAAO,EAAE,OAAO,IAAI,cAAc,EAAE,MAAM,yBAAyB,CAAC;AACpE,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,oBAAoB,CAAC;AAC1D,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,wBAAwB,CAAC;AAClE,OAAO,EAAE,OAAO,IAAI,cAAc,EAAE,MAAM,yBAAyB,CAAC;AACpE,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,sBAAsB,CAAC;AAC9D,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AACxD,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,wBAAwB,CAAC;AAClE,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,oBAAoB,CAAC;AAC1D,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,oBAAoB,CAAC;AAC1D,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,oBAAoB,CAAC;AAC1D,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AACxD,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,wBAAwB,CAAC;AAClE,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAC5D,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,kBAAkB,CAAC;AACtD,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAC5D,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAC5D,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AACxD,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,uBAAuB,CAAC;AAChE,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,wBAAwB,CAAC;AAClE,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AACxD,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,oBAAoB,CAAC;AAC1D,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,uBAAuB,CAAC;AAChE,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AACxD,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAC5D,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AACxD,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,oBAAoB,CAAC;AAC1D,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAC5D,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AACxD,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,kBAAkB,CAAC;AACtD,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAC5D,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,uBAAuB,CAAC;AAChE,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,wBAAwB,CAAC;AAClE,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,kBAAkB,CAAC;AACtD,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AACxD,OAAO,EAAE,OAAO,IAAI,iBAAiB,EAAE,MAAM,4BAA4B,CAAC;AAC1E,OAAO,EAAE,OAAO,IAAI,iBAAiB,EAAE,MAAM,4BAA4B,CAAC;AAC1E,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,kBAAkB,CAAC;AACtD,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAC5D,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,uBAAuB,CAAC;AAChE,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,wBAAwB,CAAC;AAClE,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,oBAAoB,CAAC;AAC1D,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,0BAA0B,CAAC;AACtE,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,0BAA0B,CAAC;AACtE,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,0BAA0B,CAAC;AACtE,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,sBAAsB,CAAC;AAC9D,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AACxD,OAAO,EAAE,OAAO,IAAI,kBAAkB,EAAE,MAAM,6BAA6B,CAAC;AAC5E,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,2BAA2B,CAAC;AACxE,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,2BAA2B,CAAC;AACxE,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AACxD,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,oBAAoB,CAAC;AAC1D,OAAO,EAAE,OAAO,IAAI,cAAc,EAAE,MAAM,yBAAyB,CAAC;AACpE,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,0BAA0B,CAAC;AACtE,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,sBAAsB,CAAC;AAC9D,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,sBAAsB,CAAC;AAC9D,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,wBAAwB,CAAC;AAClE,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,oBAAoB,CAAC;AAC1D,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,0BAA0B,CAAC;AACtE,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAC5D,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,sBAAsB,CAAC;AAC9D,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,sBAAsB,CAAC;AAC9D,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,oBAAoB,CAAC;AAC1D,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,wBAAwB,CAAC;AAClE,OAAO,EAAE,OAAO,IAAI,kBAAkB,EAAE,MAAM,6BAA6B,CAAC;AAC5E,OAAO,EAAE,OAAO,IAAI,iBAAiB,EAAE,MAAM,4BAA4B,CAAC;AAC1E,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,0BAA0B,CAAC;AACtE,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,uBAAuB,CAAC;AAChE,OAAO,EAAE,OAAO,IAAI,iBAAiB,EAAE,MAAM,4BAA4B,CAAC;AAC1E,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,uBAAuB,CAAC;AAChE,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,kBAAkB,CAAC;AACtD,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AACxD,OAAO,EAAE,OAAO,IAAI,cAAc,EAAE,MAAM,yBAAyB,CAAC;AACpE,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AACxD,OAAO,EAAE,OAAO,IAAI,cAAc,EAAE,MAAM,yBAAyB,CAAC;AACpE,OAAO,EAAE,OAAO,IAAI,cAAc,EAAE,MAAM,yBAAyB,CAAC;AACpE,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAC5D,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,oBAAoB,CAAC;AAC1D,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,sBAAsB,CAAC;AAC9D,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,oBAAoB,CAAC;AAC1D,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,kBAAkB,CAAC;AACtD,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,sBAAsB,CAAC;AAC9D,OAAO,EAAE,OAAO,IAAI,cAAc,EAAE,MAAM,yBAAyB,CAAC;AACpE,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,wBAAwB,CAAC;AAClE,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAC5D,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAC5D,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAC5D,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAC5D,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,wBAAwB,CAAC;AAClE,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,uBAAuB,CAAC;AAChE,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,kBAAkB,CAAC;AACtD,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AACxD,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,uBAAuB,CAAC;AAChE,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAC5D,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,oBAAoB,CAAC;AAC1D,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,oBAAoB,CAAC;AAC1D,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,oBAAoB,CAAC;AAC1D,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AACxD,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAC5D,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,uBAAuB,CAAC;AAChE,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,oBAAoB,CAAC;AAC1D,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAC5D,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAC5D,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,0BAA0B,CAAC;AACtE,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,wBAAwB,CAAC;AAClE,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,0BAA0B,CAAC;AACtE,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,2BAA2B,CAAC;AACxE,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,sBAAsB,CAAC;AAC9D,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,sBAAsB,CAAC;AAC9D,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,uBAAuB,CAAC;AAChE,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,0BAA0B,CAAC;AACtE,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,oBAAoB,CAAC;AAC1D,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,oBAAoB,CAAC;AAC1D,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,sBAAsB,CAAC;AAC9D,OAAO,EAAE,OAAO,IAAI,cAAc,EAAE,MAAM,yBAAyB,CAAC;AACpE,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,oBAAoB,CAAC;AAC1D,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,uBAAuB,CAAC;AAChE,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,sBAAsB,CAAC;AAC9D,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAC5D,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AACxD,OAAO,EAAE,OAAO,IAAI,cAAc,EAAE,MAAM,yBAAyB,CAAC;AACpE,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,kBAAkB,CAAC;AACtD,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,sBAAsB,CAAC;AAC9D,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAC5D,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,oBAAoB,CAAC;AAC1D,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAC5D,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,kBAAkB,CAAC;AACtD,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAC5D,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAC5D,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,uBAAuB,CAAC;AAChE,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,0BAA0B,CAAC;AACtE,OAAO,EAAE,OAAO,IAAI,cAAc,EAAE,MAAM,yBAAyB,CAAC;AACpE,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,uBAAuB,CAAC;AAChE,OAAO,EAAE,OAAO,IAAI,cAAc,EAAE,MAAM,yBAAyB,CAAC;AACpE,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,0BAA0B,CAAC;AACtE,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AACxD,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,oBAAoB,CAAC;AAC1D,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAC5D,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAC5D,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,2BAA2B,CAAC;AACxE,OAAO,EAAE,OAAO,IAAI,cAAc,EAAE,MAAM,yBAAyB,CAAC;AACpE,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,uBAAuB,CAAC;AAChE,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,oBAAoB,CAAC;AAC1D,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAC5D,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,2BAA2B,CAAC;AACxE,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,MAAM,iBAAiB,CAAC;AACpD,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAC5D,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,sBAAsB,CAAC;AAC9D,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AACxD,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,uBAAuB,CAAC;AAChE,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,wBAAwB,CAAC;AAClE,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAC5D,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAC5D,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,0BAA0B,CAAC;AACtE,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AACxD,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,wBAAwB,CAAC;AAClE,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,wBAAwB,CAAC;AAClE,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,uBAAuB,CAAC;AAChE,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,oBAAoB,CAAC;AAC1D,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,oBAAoB,CAAC;AAC1D,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,oBAAoB,CAAC;AAC1D,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,uBAAuB,CAAC;AAChE,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,wBAAwB,CAAC;AAClE,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAC5D,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,sBAAsB,CAAC;AAC9D,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,sBAAsB,CAAC;AAC9D,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,sBAAsB,CAAC;AAC9D,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AACxD,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,oBAAoB,CAAC;AAC1D,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,uBAAuB,CAAC;AAChE,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AACxD,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,sBAAsB,CAAC;AAC9D,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AACxD,OAAO,EAAE,OAAO,IAAI,KAAK,EAAE,MAAM,gBAAgB,CAAC;AAClD,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,sBAAsB,CAAC;AAC9D,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,uBAAuB,CAAC;AAChE,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,sBAAsB,CAAC;AAC9D,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,sBAAsB,CAAC;AAC9D,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,kBAAkB,CAAC;AACtD,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAC5D,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAC5D,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,sBAAsB,CAAC"}
|
package/dist/icons/index.js
CHANGED
|
@@ -25,10 +25,11 @@ export { default as ArrowUpLeftIcon } from "./components/ArrowUpLeft";
|
|
|
25
25
|
export { default as ArrowUpRightIcon } from "./components/ArrowUpRight";
|
|
26
26
|
export { default as AtSignIcon } from "./components/AtSign";
|
|
27
27
|
export { default as AwardIcon } from "./components/Award";
|
|
28
|
+
export { default as BagIcon } from "./components/Bag";
|
|
28
29
|
export { default as BalanceIcon } from "./components/Balance";
|
|
29
30
|
export { default as BarChartIcon } from "./components/BarChart";
|
|
30
31
|
export { default as BarChart2Icon } from "./components/BarChart2";
|
|
31
|
-
export { default as
|
|
32
|
+
export { default as BarcodeIcon } from "./components/Barcode";
|
|
32
33
|
export { default as BatteryIcon } from "./components/Battery";
|
|
33
34
|
export { default as BatteryChargingIcon } from "./components/BatteryCharging";
|
|
34
35
|
export { default as BellIcon } from "./components/Bell";
|
|
@@ -39,8 +40,8 @@ export { default as BluetoothIcon } from "./components/Bluetooth";
|
|
|
39
40
|
export { default as BodyScanIcon } from "./components/BodyScan";
|
|
40
41
|
export { default as BoldIcon } from "./components/Bold";
|
|
41
42
|
export { default as BookIcon } from "./components/Book";
|
|
42
|
-
export { default as BookmarkIcon } from "./components/Bookmark";
|
|
43
43
|
export { default as BookOpenIcon } from "./components/BookOpen";
|
|
44
|
+
export { default as BookmarkIcon } from "./components/Bookmark";
|
|
44
45
|
export { default as BoxIcon } from "./components/Box";
|
|
45
46
|
export { default as BriefcaseIcon } from "./components/Briefcase";
|
|
46
47
|
export { default as CalendarIcon } from "./components/Calendar";
|
|
@@ -54,11 +55,11 @@ export { default as CheckSquareIcon } from "./components/CheckSquare";
|
|
|
54
55
|
export { default as ChevronDownIcon } from "./components/ChevronDown";
|
|
55
56
|
export { default as ChevronLeftIcon } from "./components/ChevronLeft";
|
|
56
57
|
export { default as ChevronRightIcon } from "./components/ChevronRight";
|
|
58
|
+
export { default as ChevronUpIcon } from "./components/ChevronUp";
|
|
57
59
|
export { default as ChevronsDownIcon } from "./components/ChevronsDown";
|
|
58
60
|
export { default as ChevronsLeftIcon } from "./components/ChevronsLeft";
|
|
59
61
|
export { default as ChevronsRightIcon } from "./components/ChevronsRight";
|
|
60
62
|
export { default as ChevronsUpIcon } from "./components/ChevronsUp";
|
|
61
|
-
export { default as ChevronUpIcon } from "./components/ChevronUp";
|
|
62
63
|
export { default as ChromeIcon } from "./components/Chrome";
|
|
63
64
|
export { default as CircleIcon } from "./components/Circle";
|
|
64
65
|
export { default as CircularityBuyBackIcon } from "./components/CircularityBuyBack";
|
|
@@ -71,7 +72,7 @@ export { default as CloudLightningIcon } from "./components/CloudLightning";
|
|
|
71
72
|
export { default as CloudOffIcon } from "./components/CloudOff";
|
|
72
73
|
export { default as CloudRainIcon } from "./components/CloudRain";
|
|
73
74
|
export { default as CloudSnowIcon } from "./components/CloudSnow";
|
|
74
|
-
export { default as
|
|
75
|
+
export { default as ClubeDecathlonIcon } from "./components/ClubeDecathlon";
|
|
75
76
|
export { default as CodeIcon } from "./components/Code";
|
|
76
77
|
export { default as CodepenIcon } from "./components/Codepen";
|
|
77
78
|
export { default as CodesandboxIcon } from "./components/Codesandbox";
|
|
@@ -136,15 +137,16 @@ export { default as FolderIcon } from "./components/Folder";
|
|
|
136
137
|
export { default as FolderMinusIcon } from "./components/FolderMinus";
|
|
137
138
|
export { default as FolderPlusIcon } from "./components/FolderPlus";
|
|
138
139
|
export { default as FootballIcon } from "./components/Football";
|
|
140
|
+
export { default as FrameIcon } from "./components/Frame";
|
|
139
141
|
export { default as FramerIcon } from "./components/Framer";
|
|
140
142
|
export { default as FrownIcon } from "./components/Frown";
|
|
141
143
|
export { default as GiftIcon } from "./components/Gift";
|
|
142
144
|
export { default as GitBranchIcon } from "./components/GitBranch";
|
|
143
145
|
export { default as GitCommitIcon } from "./components/GitCommit";
|
|
144
|
-
export { default as GithubIcon } from "./components/Github";
|
|
145
|
-
export { default as GitlabIcon } from "./components/Gitlab";
|
|
146
146
|
export { default as GitMergeIcon } from "./components/GitMerge";
|
|
147
147
|
export { default as GitPullRequestIcon } from "./components/GitPullRequest";
|
|
148
|
+
export { default as GithubIcon } from "./components/Github";
|
|
149
|
+
export { default as GitlabIcon } from "./components/Gitlab";
|
|
148
150
|
export { default as GlobeIcon } from "./components/Globe";
|
|
149
151
|
export { default as GridIcon } from "./components/Grid";
|
|
150
152
|
export { default as HangerIcon } from "./components/Hanger";
|
|
@@ -157,6 +159,7 @@ export { default as HelpCircleIcon } from "./components/HelpCircle";
|
|
|
157
159
|
export { default as HexagonIcon } from "./components/Hexagon";
|
|
158
160
|
export { default as HomeIcon } from "./components/Home";
|
|
159
161
|
export { default as HourglassIcon } from "./components/Hourglass";
|
|
162
|
+
export { default as HouseIcon } from "./components/House";
|
|
160
163
|
export { default as ImageIcon } from "./components/Image";
|
|
161
164
|
export { default as InboxIcon } from "./components/Inbox";
|
|
162
165
|
export { default as InfoIcon } from "./components/Info";
|
|
@@ -167,7 +170,7 @@ export { default as LayersIcon } from "./components/Layers";
|
|
|
167
170
|
export { default as LayoutIcon } from "./components/Layout";
|
|
168
171
|
export { default as LeafIcon } from "./components/Leaf";
|
|
169
172
|
export { default as LifeBuoyIcon } from "./components/LifeBuoy";
|
|
170
|
-
export { default as
|
|
173
|
+
export { default as LightbulbIcon } from "./components/Lightbulb";
|
|
171
174
|
export { default as LinkIcon } from "./components/Link";
|
|
172
175
|
export { default as Link2Icon } from "./components/Link2";
|
|
173
176
|
export { default as LinkedinIcon } from "./components/Linkedin";
|
|
@@ -228,6 +231,7 @@ export { default as PocketIcon } from "./components/Pocket";
|
|
|
228
231
|
export { default as PowerIcon } from "./components/Power";
|
|
229
232
|
export { default as PrinterIcon } from "./components/Printer";
|
|
230
233
|
export { default as RadioIcon } from "./components/Radio";
|
|
234
|
+
export { default as RayIcon } from "./components/Ray";
|
|
231
235
|
export { default as RecycleIcon } from "./components/Recycle";
|
|
232
236
|
export { default as RefreshCcwIcon } from "./components/RefreshCcw";
|
|
233
237
|
export { default as RefreshCwIcon } from "./components/RefreshCw";
|
|
@@ -267,15 +271,15 @@ export { default as SparklesIcon } from "./components/Sparkles";
|
|
|
267
271
|
export { default as SpeakerIcon } from "./components/Speaker";
|
|
268
272
|
export { default as SquareIcon } from "./components/Square";
|
|
269
273
|
export { default as StarIcon } from "./components/Star";
|
|
270
|
-
export { default as StarFillIcon } from "./components/StarFill";
|
|
271
274
|
export { default as StopCircleIcon } from "./components/StopCircle";
|
|
272
275
|
export { default as SunIcon } from "./components/Sun";
|
|
273
276
|
export { default as SunriseIcon } from "./components/Sunrise";
|
|
274
277
|
export { default as SunsetIcon } from "./components/Sunset";
|
|
278
|
+
export { default as TableIcon } from "./components/Table";
|
|
275
279
|
export { default as TabletIcon } from "./components/Tablet";
|
|
276
280
|
export { default as TagIcon } from "./components/Tag";
|
|
277
281
|
export { default as TargetIcon } from "./components/Target";
|
|
278
|
-
export { default as
|
|
282
|
+
export { default as TaticsIcon } from "./components/Tatics";
|
|
279
283
|
export { default as TerminalIcon } from "./components/Terminal";
|
|
280
284
|
export { default as ThermometerIcon } from "./components/Thermometer";
|
|
281
285
|
export { default as ThumbsDownIcon } from "./components/ThumbsDown";
|
|
@@ -305,8 +309,8 @@ export { default as UserIcon } from "./components/User";
|
|
|
305
309
|
export { default as UserCheckIcon } from "./components/UserCheck";
|
|
306
310
|
export { default as UserMinusIcon } from "./components/UserMinus";
|
|
307
311
|
export { default as UserPlusIcon } from "./components/UserPlus";
|
|
308
|
-
export { default as UsersIcon } from "./components/Users";
|
|
309
312
|
export { default as UserXIcon } from "./components/UserX";
|
|
313
|
+
export { default as UsersIcon } from "./components/Users";
|
|
310
314
|
export { default as VideoIcon } from "./components/Video";
|
|
311
315
|
export { default as VideoOffIcon } from "./components/VideoOff";
|
|
312
316
|
export { default as VoicemailIcon } from "./components/Voicemail";
|
|
@@ -314,7 +318,9 @@ export { default as VolumeIcon } from "./components/Volume";
|
|
|
314
318
|
export { default as Volume1Icon } from "./components/Volume1";
|
|
315
319
|
export { default as Volume2Icon } from "./components/Volume2";
|
|
316
320
|
export { default as VolumeXIcon } from "./components/VolumeX";
|
|
321
|
+
export { default as WalkIcon } from "./components/Walk";
|
|
317
322
|
export { default as WatchIcon } from "./components/Watch";
|
|
323
|
+
export { default as WhatsappIcon } from "./components/Whatsapp";
|
|
318
324
|
export { default as WifiIcon } from "./components/Wifi";
|
|
319
325
|
export { default as WifiOffIcon } from "./components/WifiOff";
|
|
320
326
|
export { default as WindIcon } from "./components/Wind";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "decathlon-ui",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.41",
|
|
4
4
|
"description": "Biblioteca de componentes React Native com Storybook e documentação via GitHub Pages.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.js",
|
|
@@ -14,7 +14,8 @@
|
|
|
14
14
|
"build-storybook": "npx storybook build --output-dir docs",
|
|
15
15
|
"build": "tsc -p tsconfig.build.json && node copy-assets.js",
|
|
16
16
|
"prepublishOnly": "yarn build",
|
|
17
|
-
"generate-icons": "svgr --config-file svgr.config.js --out-dir src/icons/components src/icons/foundations/*.svg",
|
|
17
|
+
"generate-icons": "svgr --config-file svgr.config.js --out-dir src/icons/components src/icons/foundations/*.svg && node generate-icon-exports.js",
|
|
18
|
+
"generate-icon-exports": "node generate-icon-exports.js",
|
|
18
19
|
"publish": "npm version patch && npm publish"
|
|
19
20
|
},
|
|
20
21
|
"peerDependencies": {
|