Skip to content

Commit

Permalink
feat: add new api for createGame
Browse files Browse the repository at this point in the history
  • Loading branch information
RasenGUY committed Oct 27, 2023
1 parent 8f54211 commit 394cb50
Show file tree
Hide file tree
Showing 40 changed files with 722 additions and 226 deletions.
2 changes: 1 addition & 1 deletion .env.qa
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ VITE_FIREBASE_DB_URL=https://inspired-bebop-399607-default-rtdb.firebaseio.com
VITE_FIREBASE_PROJECT_ID=inspired-bebop-399607
VITE_FIREBASE_STORAGE_BUCKET=inspired-bebop-399607.appspot.com
VITE_FIREBASE_MESSAGING_SENDER_ID=368714610861
VITE_FIREBASE_APP_ID=1:368714610861:web:25a05efd0381cbd552ee24
VITE_FIREBASE_APP_ID=1:368714610861:web:25a05efd0381cbd552ee24
15 changes: 15 additions & 0 deletions src/app/apiSlice.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
import { createApi, fetchBaseQuery } from '@reduxjs/toolkit/query/react';
const baseQuery = fetchBaseQuery({
baseUrl: import.meta.env.VITE_BACKEND_API_URL,
prepareHeaders: (headers) => {
headers.append('Access-Control-Allow-Origin', '*')
return headers
},
});

export const appApiSlice = createApi({
baseQuery,
reducerPath: 'wega-api',
endpoints: () => ({})
});
14 changes: 14 additions & 0 deletions src/app/blockchainApiSlice.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
import { createApi } from '@reduxjs/toolkit/query/react';
import { customBlockchainBaseQuery } from '../libs/rtk';
import { BlockchainAPIBase } from '../libs/wagmi';

const baseUrl = 'wega-blockchain-api'
const baseQuery = customBlockchainBaseQuery({ baseUrl }, BlockchainAPIBase);
export const blockchainApiSlice = createApi({
baseQuery,
reducerPath: baseUrl,
endpoints: () => ({})
});


17 changes: 12 additions & 5 deletions src/app/store.ts
Original file line number Diff line number Diff line change
@@ -1,23 +1,30 @@
import { configureStore, ThunkAction, Action } from '@reduxjs/toolkit';
import appReducer from '../containers/App/AppSlice'
import { appApiSlice } from '../containers/App/api'
import { appApiSlice } from '../containers/App/api';
import { blockchainApiSlice } from './blockchainApiSlice';
import { appApiSlice as newAppApiSlice } from './apiSlice';
import intlReducer from '../containers/LanguageProvider/intlSlice'
import blockchainReducer from '../api/blockchain/blockchainSlice'


export const store = configureStore({
reducer: {
[appApiSlice.reducerPath]: appApiSlice.reducer,
[newAppApiSlice.reducerPath]: newAppApiSlice.reducer,
[blockchainApiSlice.reducerPath]: blockchainApiSlice.reducer,
blockchain: blockchainReducer,
app: appReducer,
language: intlReducer,

},
middleware: (getDefaultMiddleware) => getDefaultMiddleware({
serializableCheck: false
}).concat(appApiSlice.middleware),
}).concat(
appApiSlice.middleware,
newAppApiSlice.middleware,
blockchainApiSlice.middleware
),
devTools: import.meta.env.VITE_REDUX_DEBUG === "true" ? true : false
});
export type AppDispatch = typeof store.dispatch;
export type RootState = ReturnType<typeof store.getState>;
export type AppThunk<ReturnType = void> = ThunkAction<ReturnType,RootState,unknown,Action<string>>;
export type AppThunk<ReturnType = void> = ThunkAction<ReturnType,RootState,unknown,Action<string>
>;
11 changes: 6 additions & 5 deletions src/assets/icons/BarCoinIcon.tsx
Original file line number Diff line number Diff line change
@@ -1,22 +1,23 @@
import * as React from "react"
import { SVGProps } from "react"
const SvgComponent = (props: SVGProps<SVGSVGElement>) => (
<svg
width={25}
height={24}
viewBox="0 0 25 24"
width={24}
height={25}
viewBox="0 0 24 25"
fill="none"
xmlns="http://www.w3.org/2000/svg"
{...props}
>
<path
d="M12.666 22C18.1889 22 22.666 17.5228 22.666 12C22.666 6.47715 18.1889 2 12.666 2C7.14317 2 2.66602 6.47715 2.66602 12C2.66602 17.5228 7.14317 22 12.666 22Z"
d="M12 22.4971C17.5228 22.4971 22 18.0199 22 12.4971C22 6.97422 17.5228 2.49707 12 2.49707C6.47715 2.49707 2 6.97422 2 12.4971C2 18.0199 6.47715 22.4971 12 22.4971Z"
stroke="#FDFDFD"
strokeWidth={1.5}
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M15.666 8.5C14.981 7.81501 13.7747 7.33855 12.666 7.30872M9.66602 15C10.3105 15.8593 11.5088 16.3494 12.666 16.391M12.666 7.30872C11.3469 7.27322 10.166 7.86998 10.166 9.50001C10.166 12.5 15.666 11 15.666 14C15.666 15.711 14.2022 16.4462 12.666 16.391M12.666 7.30872V5.5M12.666 16.391V18.5"
d="M15 8.99707C14.315 8.31208 13.1087 7.83562 12 7.80579M9 15.4971C9.64448 16.3564 10.8428 16.8465 12 16.8881M12 7.80579C10.6809 7.77029 9.5 8.36705 9.5 9.99708C9.5 12.9971 15 11.4971 15 14.4971C15 16.2081 13.5362 16.9433 12 16.8881M12 7.80579V5.99707M12 16.8881V18.9971"
stroke="#FDFDFD"
strokeWidth={1.5}
strokeLinecap="round"
Expand Down
26 changes: 13 additions & 13 deletions src/assets/icons/BarDiceIcon.tsx
Original file line number Diff line number Diff line change
@@ -1,39 +1,39 @@
import * as React from "react"
import { SVGProps } from "react"
const SvgComponent = (props: SVGProps<SVGSVGElement>) => (
<svg
width={25}
height={24}
height={25}
viewBox="0 0 25 25"
fill="none"
xmlns="http://www.w3.org/2000/svg"
className="dark:fill-blanc dark:stroke-pretu"
{...props}
>
<path
d="M3.33398 20.4V3.6C3.33398 3.26863 3.60261 3 3.93398 3H20.734C21.0654 3 21.334 3.26863 21.334 3.6V20.4C21.334 20.7314 21.0654 21 20.734 21H3.93398C3.60261 21 3.33398 20.7314 3.33398 20.4Z"
stroke="black"
d="M3.33398 20.8971V4.09707C3.33398 3.7657 3.60261 3.49707 3.93398 3.49707H20.734C21.0654 3.49707 21.334 3.7657 21.334 4.09707V20.8971C21.334 21.2284 21.0654 21.4971 20.734 21.4971H3.93398C3.60261 21.4971 3.33398 21.2284 3.33398 20.8971Z"
stroke="#FDFDFD"
strokeWidth={1.5}
/>
<path
d="M7.83398 8C7.55784 8 7.33398 7.77614 7.33398 7.5C7.33398 7.22386 7.55784 7 7.83398 7C8.11013 7 8.33398 7.22386 8.33398 7.5C8.33398 7.77614 8.11013 8 7.83398 8Z"
fill="black"
stroke="black"
d="M7.83398 8.49707C7.55784 8.49707 7.33398 8.27321 7.33398 7.99707C7.33398 7.72093 7.55784 7.49707 7.83398 7.49707C8.11013 7.49707 8.33398 7.72093 8.33398 7.99707C8.33398 8.27321 8.11013 8.49707 7.83398 8.49707Z"
fill="#FDFDFD"
stroke="#FDFDFD"
strokeWidth={1.5}
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M12.334 12.5C12.0578 12.5 11.834 12.2761 11.834 12C11.834 11.7239 12.0578 11.5 12.334 11.5C12.6101 11.5 12.834 11.7239 12.834 12C12.834 12.2761 12.6101 12.5 12.334 12.5Z"
fill="black"
stroke="black"
d="M12.334 12.9971C12.0578 12.9971 11.834 12.7732 11.834 12.4971C11.834 12.2209 12.0578 11.9971 12.334 11.9971C12.6101 11.9971 12.834 12.2209 12.834 12.4971C12.834 12.7732 12.6101 12.9971 12.334 12.9971Z"
fill="#FDFDFD"
stroke="#FDFDFD"
strokeWidth={1.5}
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M16.834 17C16.5578 17 16.334 16.7761 16.334 16.5C16.334 16.2239 16.5578 16 16.834 16C17.1101 16 17.334 16.2239 17.334 16.5C17.334 16.7761 17.1101 17 16.834 17Z"
fill="black"
stroke="black"
d="M16.834 17.4971C16.5578 17.4971 16.334 17.2732 16.334 16.9971C16.334 16.7209 16.5578 16.4971 16.834 16.4971C17.1101 16.4971 17.334 16.7209 17.334 16.9971C17.334 17.2732 17.1101 17.4971 16.834 17.4971Z"
fill="#FDFDFD"
stroke="#FDFDFD"
strokeWidth={1.5}
strokeLinecap="round"
strokeLinejoin="round"
Expand Down
30 changes: 21 additions & 9 deletions src/assets/icons/CoinSideTailsIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,31 @@ import * as React from "react"
import { SVGProps } from "react"
const SvgComponent = (props: SVGProps<SVGSVGElement>) => (
<svg
viewBox="0 0 37 12"
width={59}
height={29}
viewBox="0 0 59 29"
fill="none"
xmlns="http://www.w3.org/2000/svg"
{...props}
>
<path
d="M9.75807 9H7.44194L5.99678 3.05806H6.34516L4.9 9H2.57097L0.629032 0.48387H2.84194L3.86774 6.45806H3.84194L5.44194 0.48387H6.89355L8.5 6.45806H8.47419L9.5 0.48387H11.7129L9.75807 9ZM14.2524 6.76774C14.2653 6.95699 14.3255 7.12473 14.4331 7.27097C14.5406 7.4172 14.689 7.53333 14.8782 7.61935C15.0718 7.70108 15.2997 7.74194 15.5621 7.74194C15.8116 7.74194 16.0352 7.71613 16.2331 7.66452C16.4352 7.6129 16.6094 7.54839 16.7556 7.47097C16.9062 7.39355 17.0223 7.31398 17.104 7.23226L17.8653 8.44516C17.7578 8.56129 17.6051 8.67527 17.4073 8.7871C17.2137 8.89462 16.9578 8.9828 16.6395 9.05161C16.3212 9.12043 15.9191 9.15484 15.4331 9.15484C14.8481 9.15484 14.3277 9.04516 13.8718 8.82581C13.4159 8.60645 13.0567 8.28387 12.7944 7.85806C12.532 7.43226 12.4008 6.91183 12.4008 6.29677C12.4008 5.78064 12.5126 5.31613 12.7363 4.90323C12.9642 4.48602 13.2933 4.15699 13.7234 3.91613C14.1535 3.67097 14.6718 3.54839 15.2782 3.54839C15.8546 3.54839 16.3535 3.65376 16.775 3.86452C17.2008 4.07527 17.5277 4.38925 17.7556 4.80645C17.9879 5.21935 18.104 5.73548 18.104 6.35484C18.104 6.38925 18.1019 6.45806 18.0976 6.56129C18.0976 6.66452 18.0933 6.73333 18.0847 6.76774H14.2524ZM16.2589 5.74194C16.2546 5.6043 16.218 5.46882 16.1492 5.33548C16.0804 5.19785 15.9772 5.08602 15.8395 5C15.7019 4.90968 15.5255 4.86452 15.3105 4.86452C15.0954 4.86452 14.9126 4.90753 14.7621 4.99355C14.6159 5.07527 14.504 5.1828 14.4266 5.31613C14.3492 5.44946 14.3062 5.5914 14.2976 5.74194H16.2589ZM22.1563 11.8323C21.7864 11.8323 21.4186 11.8 21.053 11.7355C20.6917 11.671 20.3541 11.5613 20.0401 11.4065C19.7261 11.2516 19.4616 11.0387 19.2466 10.7677L20.395 9.57419C20.4939 9.69032 20.6143 9.8043 20.7563 9.91613C20.9025 10.028 21.081 10.1204 21.2917 10.1935C21.5068 10.2667 21.767 10.3032 22.0724 10.3032C22.3563 10.3032 22.6036 10.2538 22.8143 10.1548C23.0251 10.0559 23.1885 9.91183 23.3046 9.72258C23.4251 9.53333 23.4853 9.30323 23.4853 9.03226V8.90323H25.4143V9.14839C25.4143 9.73333 25.2681 10.2258 24.9756 10.6258C24.6874 11.0258 24.2982 11.3269 23.8079 11.529C23.3175 11.7312 22.767 11.8323 22.1563 11.8323ZM23.4853 9V8.14194C23.4466 8.22796 23.3476 8.35269 23.1885 8.51613C23.0337 8.67957 22.8272 8.82796 22.5692 8.96129C22.3111 9.09032 22.01 9.15484 21.6659 9.15484C21.1498 9.15484 20.6982 9.03011 20.3111 8.78065C19.924 8.52688 19.6229 8.18925 19.4079 7.76774C19.1928 7.34194 19.0853 6.87097 19.0853 6.35484C19.0853 5.83871 19.1928 5.36989 19.4079 4.94839C19.6229 4.52258 19.924 4.1828 20.3111 3.92903C20.6982 3.67527 21.1498 3.54839 21.6659 3.54839C21.9971 3.54839 22.2874 3.60215 22.5369 3.70968C22.7864 3.8129 22.9885 3.93763 23.1433 4.08387C23.2982 4.22581 23.4057 4.35699 23.4659 4.47742V3.70323H25.4143V9H23.4853ZM21.0079 6.35484C21.0079 6.5957 21.0638 6.8129 21.1756 7.00645C21.2874 7.1957 21.4358 7.34409 21.6208 7.45161C21.81 7.55914 22.0186 7.6129 22.2466 7.6129C22.4831 7.6129 22.6917 7.55914 22.8724 7.45161C23.053 7.34409 23.195 7.1957 23.2982 7.00645C23.4057 6.8129 23.4595 6.5957 23.4595 6.35484C23.4595 6.11398 23.4057 5.89892 23.2982 5.70968C23.195 5.51613 23.053 5.36559 22.8724 5.25806C22.6917 5.14624 22.4831 5.09032 22.2466 5.09032C22.0186 5.09032 21.81 5.14624 21.6208 5.25806C21.4358 5.36559 21.2874 5.51613 21.1756 5.70968C21.0638 5.89892 21.0079 6.11398 21.0079 6.35484ZM31.0392 9V8.14194C31.0005 8.22796 30.9016 8.35269 30.7424 8.51613C30.5876 8.67957 30.3812 8.82796 30.1231 8.96129C29.865 9.09032 29.5639 9.15484 29.2199 9.15484C28.7037 9.15484 28.2521 9.03011 27.865 8.78065C27.4779 8.52688 27.1768 8.18925 26.9618 7.76774C26.7467 7.34194 26.6392 6.87097 26.6392 6.35484C26.6392 5.83871 26.7467 5.36989 26.9618 4.94839C27.1768 4.52258 27.4779 4.1828 27.865 3.92903C28.2521 3.67527 28.7037 3.54839 29.2199 3.54839C29.551 3.54839 29.8414 3.60215 30.0908 3.70968C30.3403 3.8129 30.5424 3.93763 30.6973 4.08387C30.8521 4.22581 30.9596 4.35699 31.0199 4.47742V3.70323H32.9682V9H31.0392ZM28.5618 6.35484C28.5618 6.5957 28.6177 6.8129 28.7295 7.00645C28.8414 7.1957 28.9898 7.34409 29.1747 7.45161C29.3639 7.55914 29.5725 7.6129 29.8005 7.6129C30.0371 7.6129 30.2457 7.55914 30.4263 7.45161C30.607 7.34409 30.7489 7.1957 30.8521 7.00645C30.9596 6.8129 31.0134 6.5957 31.0134 6.35484C31.0134 6.11398 30.9596 5.89892 30.8521 5.70968C30.7489 5.51613 30.607 5.36559 30.4263 5.25806C30.2457 5.14624 30.0371 5.09032 29.8005 5.09032C29.5725 5.09032 29.3639 5.14624 29.1747 5.25806C28.9898 5.36559 28.8414 5.51613 28.7295 5.70968C28.6177 5.89892 28.5618 6.11398 28.5618 6.35484Z"
fill="#FDFDFD"
/>
<path
d="M35.787 9.15484C35.4687 9.15484 35.1934 9.04086 34.9612 8.8129C34.7332 8.58065 34.6193 8.30538 34.6193 7.9871C34.6193 7.66021 34.7332 7.3828 34.9612 7.15484C35.1934 6.92258 35.4687 6.80645 35.787 6.80645C36.1139 6.80645 36.3913 6.92258 36.6193 7.15484C36.8472 7.3828 36.9612 7.66021 36.9612 7.9871C36.9612 8.30538 36.8472 8.58065 36.6193 8.8129C36.3913 9.04086 36.1139 9.15484 35.787 9.15484Z"
fill="#F26D21"
/>
{/* <rect
x={0.5}
width={58}
height={29}
rx={14.5}
fill="#4B4B4B"
fillOpacity={0.3}
/> */}
<g id="Wega.">
<path
d="M19.7581 19H17.4419L15.9968 13.0581H16.3452L14.9 19H12.571L10.629 10.4839H12.8419L13.8677 16.4581H13.8419L15.4419 10.4839H16.8935L18.5 16.4581H18.4742L19.5 10.4839H21.7129L19.7581 19ZM24.2524 16.7677C24.2653 16.957 24.3255 17.1247 24.4331 17.271C24.5406 17.4172 24.689 17.5333 24.8782 17.6194C25.0718 17.7011 25.2997 17.7419 25.5621 17.7419C25.8116 17.7419 26.0352 17.7161 26.2331 17.6645C26.4352 17.6129 26.6094 17.5484 26.7556 17.471C26.9062 17.3935 27.0223 17.314 27.104 17.2323L27.8653 18.4452C27.7578 18.5613 27.6051 18.6753 27.4073 18.7871C27.2137 18.8946 26.9578 18.9828 26.6395 19.0516C26.3212 19.1204 25.9191 19.1548 25.4331 19.1548C24.8481 19.1548 24.3277 19.0452 23.8718 18.8258C23.4159 18.6065 23.0567 18.2839 22.7944 17.8581C22.532 17.4323 22.4008 16.9118 22.4008 16.2968C22.4008 15.7806 22.5126 15.3161 22.7363 14.9032C22.9642 14.486 23.2933 14.157 23.7234 13.9161C24.1535 13.671 24.6718 13.5484 25.2782 13.5484C25.8546 13.5484 26.3535 13.6538 26.775 13.8645C27.2008 14.0753 27.5277 14.3892 27.7556 14.8065C27.9879 15.2194 28.104 15.7355 28.104 16.3548C28.104 16.3892 28.1019 16.4581 28.0976 16.5613C28.0976 16.6645 28.0933 16.7333 28.0847 16.7677H24.2524ZM26.2589 15.7419C26.2546 15.6043 26.218 15.4688 26.1492 15.3355C26.0804 15.1978 25.9772 15.086 25.8395 15C25.7019 14.9097 25.5255 14.8645 25.3105 14.8645C25.0954 14.8645 24.9126 14.9075 24.7621 14.9935C24.6159 15.0753 24.504 15.1828 24.4266 15.3161C24.3492 15.4495 24.3062 15.5914 24.2976 15.7419H26.2589ZM32.1563 21.8323C31.7864 21.8323 31.4186 21.8 31.053 21.7355C30.6917 21.671 30.3541 21.5613 30.0401 21.4065C29.7261 21.2516 29.4616 21.0387 29.2466 20.7677L30.395 19.5742C30.4939 19.6903 30.6143 19.8043 30.7563 19.9161C30.9025 20.028 31.081 20.1204 31.2917 20.1935C31.5068 20.2667 31.767 20.3032 32.0724 20.3032C32.3563 20.3032 32.6036 20.2538 32.8143 20.1548C33.0251 20.0559 33.1885 19.9118 33.3046 19.7226C33.4251 19.5333 33.4853 19.3032 33.4853 19.0323V18.9032H35.4143V19.1484C35.4143 19.7333 35.2681 20.2258 34.9756 20.6258C34.6874 21.0258 34.2982 21.3269 33.8079 21.529C33.3175 21.7312 32.767 21.8323 32.1563 21.8323ZM33.4853 19V18.1419C33.4466 18.228 33.3476 18.3527 33.1885 18.5161C33.0337 18.6796 32.8272 18.828 32.5692 18.9613C32.3111 19.0903 32.01 19.1548 31.6659 19.1548C31.1498 19.1548 30.6982 19.0301 30.3111 18.7806C29.924 18.5269 29.6229 18.1892 29.4079 17.7677C29.1928 17.3419 29.0853 16.871 29.0853 16.3548C29.0853 15.8387 29.1928 15.3699 29.4079 14.9484C29.6229 14.5226 29.924 14.1828 30.3111 13.929C30.6982 13.6753 31.1498 13.5484 31.6659 13.5484C31.9971 13.5484 32.2874 13.6021 32.5369 13.7097C32.7864 13.8129 32.9885 13.9376 33.1433 14.0839C33.2982 14.2258 33.4057 14.357 33.4659 14.4774V13.7032H35.4143V19H33.4853ZM31.0079 16.3548C31.0079 16.5957 31.0638 16.8129 31.1756 17.0065C31.2874 17.1957 31.4358 17.3441 31.6208 17.4516C31.81 17.5591 32.0186 17.6129 32.2466 17.6129C32.4831 17.6129 32.6917 17.5591 32.8724 17.4516C33.053 17.3441 33.195 17.1957 33.2982 17.0065C33.4057 16.8129 33.4595 16.5957 33.4595 16.3548C33.4595 16.114 33.4057 15.8989 33.2982 15.7097C33.195 15.5161 33.053 15.3656 32.8724 15.2581C32.6917 15.1462 32.4831 15.0903 32.2466 15.0903C32.0186 15.0903 31.81 15.1462 31.6208 15.2581C31.4358 15.3656 31.2874 15.5161 31.1756 15.7097C31.0638 15.8989 31.0079 16.114 31.0079 16.3548ZM41.0392 19V18.1419C41.0005 18.228 40.9016 18.3527 40.7424 18.5161C40.5876 18.6796 40.3812 18.828 40.1231 18.9613C39.865 19.0903 39.5639 19.1548 39.2199 19.1548C38.7037 19.1548 38.2521 19.0301 37.865 18.7806C37.4779 18.5269 37.1768 18.1892 36.9618 17.7677C36.7467 17.3419 36.6392 16.871 36.6392 16.3548C36.6392 15.8387 36.7467 15.3699 36.9618 14.9484C37.1768 14.5226 37.4779 14.1828 37.865 13.929C38.2521 13.6753 38.7037 13.5484 39.2199 13.5484C39.551 13.5484 39.8414 13.6021 40.0908 13.7097C40.3403 13.8129 40.5424 13.9376 40.6973 14.0839C40.8521 14.2258 40.9596 14.357 41.0199 14.4774V13.7032H42.9682V19H41.0392ZM38.5618 16.3548C38.5618 16.5957 38.6177 16.8129 38.7295 17.0065C38.8414 17.1957 38.9898 17.3441 39.1747 17.4516C39.3639 17.5591 39.5725 17.6129 39.8005 17.6129C40.0371 17.6129 40.2457 17.5591 40.4263 17.4516C40.607 17.3441 40.7489 17.1957 40.8521 17.0065C40.9596 16.8129 41.0134 16.5957 41.0134 16.3548C41.0134 16.114 40.9596 15.8989 40.8521 15.7097C40.7489 15.5161 40.607 15.3656 40.4263 15.2581C40.2457 15.1462 40.0371 15.0903 39.8005 15.0903C39.5725 15.0903 39.3639 15.1462 39.1747 15.2581C38.9898 15.3656 38.8414 15.5161 38.7295 15.7097C38.6177 15.8989 38.5618 16.114 38.5618 16.3548Z"
fill="#FDFDFD"
/>
<path
d="M45.787 19.1548C45.4687 19.1548 45.1934 19.0409 44.9612 18.8129C44.7332 18.5806 44.6193 18.3054 44.6193 17.9871C44.6193 17.6602 44.7332 17.3828 44.9612 17.1548C45.1934 16.9226 45.4687 16.8065 45.787 16.8065C46.1139 16.8065 46.3913 16.9226 46.6193 17.1548C46.8472 17.3828 46.9612 17.6602 46.9612 17.9871C46.9612 18.3054 46.8472 18.5806 46.6193 18.8129C46.3913 19.0409 46.1139 19.1548 45.787 19.1548Z"
fill="#F26D21"
/>
</g>
</svg>
)
export default SvgComponent
Loading

0 comments on commit 394cb50

Please sign in to comment.