Compare commits

..
Author SHA1 Message Date
Felicio Mununga 577993e5f2 Update README.md 2024-01-09 11:19:34 +01:00
Felicio Mununga 0823a3ace5 Update README.md 2024-01-09 11:07:46 +01:00
290 changed files with 720 additions and 11199 deletions
+6 -3
View File
@@ -5,7 +5,6 @@ on:
branches: ['main']
pull_request:
types: [opened, synchronize]
workflow_call:
env:
NEXT_PUBLIC_GHOST_API_URL: ''
@@ -17,7 +16,11 @@ jobs:
build:
name: Build and Test
timeout-minutes: 15
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
steps:
- name: Check out code
@@ -25,7 +28,7 @@ jobs:
with:
fetch-depth: 2
- name: Setup Node.js
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: 18
+3 -4
View File
@@ -14,11 +14,7 @@ env:
TAMAGUI_TARGET: 'web'
jobs:
ci:
# https://docs.github.com/en/actions/using-workflows/reusing-workflows#calling-a-reusable-workflow
uses: ./.github/workflows/ci.yml
release:
needs: ci
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
@@ -27,6 +23,9 @@ jobs:
node-version: 18
- run: yarn install --frozen-lockfile
- run: yarn build
- run: yarn typecheck
- run: yarn lint && yarn format --check
- run: yarn test
- uses: changesets/action@v1
id: changesets
with:
+2 -3
View File
@@ -4,9 +4,8 @@
"dbaeumer.vscode-eslint",
"zxh404.vscode-proto3",
"ms-vscode.hexeditor",
"zixuanchen.vitest-explorer",
"mikestead.dotenv",
"bradlc.vscode-tailwindcss",
"vitest.explorer",
"github.vscode-github-actions"
"bradlc.vscode-tailwindcss"
]
}
+2 -3
View File
@@ -26,15 +26,14 @@
"smartStep": true,
"sourceMaps": true,
"env": {
// "DEBUG": "*,-vite*,-connect:*",
"DEBUG": "*",
"DEBUG_HIDE_DATE": "0",
"DEBUG_COLORS": "1",
"VITE_NODE": "true"
},
"runtimeArgs": ["--preserve-symlinks"],
"outFiles": ["${workspaceFolder}/**/*.js"],
"resolveSourceMapLocations": ["**/*"],
"outputCapture": "std"
"resolveSourceMapLocations": ["**/*"]
},
{
"type": "node",
+1 -4
View File
@@ -9,10 +9,7 @@ if (!publicKey) {
)
}
const environment = process.env.NEXT_PUBLIC_ENVIRONMENT as
| 'development'
| 'preview'
| 'production'
const environment = process.env.NEXT_PUBLIC_ENVIRONMENT as 'production' | 'test'
/**
* For some reason the regular import fails with a server error:
+1 -4
View File
@@ -8,10 +8,7 @@ if (!publicKey) {
)
}
const environment = process.env.ENVIRONMENT as
| 'development'
| 'preview'
| 'production'
const environment = process.env.ENVIRONMENT as 'production' | 'test'
export const App = () => {
return (
+1 -2
View File
@@ -28,8 +28,7 @@
"lint": "eslint src",
"lint:fix": "yarn lint --fix",
"format": "prettier --write src",
"clean": "rimraf dist node_modules .turbo",
"prepack": "yarn build"
"clean": "rimraf dist node_modules .turbo"
},
"peerDependencies": {},
"devDependencies": {
-24
View File
@@ -1,29 +1,5 @@
# @status-im/components
## 0.6.5
### Patch Changes
- 8540f86: draft: add disabled state to Tabs
## 0.6.4
### Patch Changes
- 1a17092: fix the color of the icon in IconButton
## 0.6.3
### Patch Changes
- 7093144: add size variants to Step
## 0.6.2
### Patch Changes
- 9a495fd: export `Tooltip`
## 0.6.1
### Patch Changes
+2 -3
View File
@@ -1,6 +1,6 @@
{
"name": "@status-im/components",
"version": "0.6.5",
"version": "0.6.1",
"sideEffects": [
"*.css"
],
@@ -21,8 +21,7 @@
"storybook": "node ./scripts/storybook.js",
"storybook:dev": "storybook dev -p 3001",
"storybook:build": "storybook build",
"clean": "rimraf node_modules dist .turbo storybook-static .tamagui",
"prepack": "yarn build"
"clean": "rimraf node_modules dist .turbo storybook-static .tamagui"
},
"peerDependencies": {
"react": "^18.2.0"
@@ -50,7 +50,7 @@ const IconButton = (props: Props, ref: Ref<View>) => {
activeBlur={blur ? (selected ? variant : undefined) : undefined}
>
{cloneElement(icon, {
color: icon.props.color ?? color,
color,
size: 20,
})}
</Base>
-1
View File
@@ -28,7 +28,6 @@ export * from './tag'
export * from './text'
export * from './toast'
export * from './tokens'
export * from './tooltip'
export * from './user-list'
// eslint-disable-next-line simple-import-sort/exports
export { config } from './tamagui.config'
+13 -32
View File
@@ -56,39 +56,20 @@ export const AllVariants: Story = {
args: {},
render: () => (
<Stack space flexDirection="row">
<Stack space flexDirection="column">
<Stack space alignItems="center">
<Step size={18} type="neutral" value={1} />
<Step size={18} type="neutral" value={10} />
<Step size={18} type="neutral" value={999} />
</Stack>
<Stack space alignItems="center">
<Step size={18} type="complete" value={1} />
<Step size={18} type="complete" value={10} />
<Step size={18} type="complete" value={999} />
</Stack>
<Stack space alignItems="center">
<Step size={18} type="active" value={1} />
<Step size={18} type="active" value={10} />
<Step size={18} type="active" value={999} />
</Stack>
<Stack space alignItems="center">
<Step type="neutral" value={1} />
<Step type="neutral" value={10} />
<Step type="neutral" value={999} />
</Stack>
<Stack space flexDirection="column">
<Stack space alignItems="center">
<Step size={22} type="neutral" value={1} />
<Step size={22} type="neutral" value={10} />
<Step size={22} type="neutral" value={999} />
</Stack>
<Stack space alignItems="center">
<Step size={22} type="complete" value={1} />
<Step size={22} type="complete" value={10} />
<Step size={22} type="complete" value={999} />
</Stack>
<Stack space alignItems="center">
<Step size={22} type="active" value={1} />
<Step size={22} type="active" value={10} />
<Step size={22} type="active" value={999} />
</Stack>
<Stack space alignItems="center">
<Step type="complete" value={1} />
<Step type="complete" value={10} />
<Step type="complete" value={999} />
</Stack>
<Stack space alignItems="center">
<Step type="active" value={1} />
<Step type="active" value={10} />
<Step type="active" value={999} />
</Stack>
</Stack>
),
+7 -30
View File
@@ -9,16 +9,15 @@ export type StepVariants = 'neutral' | 'complete' | 'active'
type Props = {
value: number
size?: 18 | 22
type?: StepVariants
}
const Step = (props: Props) => {
const { size = 18, value, type = 'neutral' } = props
const { value, type = 'neutral' } = props
return (
<Base size={size}>
<Content size={size} type={type}>
<Base>
<Content type={type}>
<Text size={11} weight="medium" color={textColors[type]}>
{value}
</Text>
@@ -31,6 +30,7 @@ export { Step }
export type { Props as StepProps }
const Base = styled(Stack, {
paddingVertical: 1,
minWidth: 20,
maxWidth: 28,
display: 'inline-flex',
@@ -38,20 +38,6 @@ const Base = styled(Stack, {
alignItems: 'center',
flexBasis: 'fit-content',
width: 'fit-content',
variants: {
size: {
18: {
paddingVertical: 1,
minWidth: 20,
maxWidth: 28,
},
22: {
minWidth: 24,
maxWidth: 32,
},
},
},
})
const Content = styled(Stack, {
@@ -59,6 +45,9 @@ const Content = styled(Stack, {
paddingHorizontal: 3,
paddingVertical: 0,
borderRadius: '$6',
height: 18,
minWidth: 18,
maxWidth: 28,
justifyContent: 'center',
alignItems: 'center',
borderWidth: 1,
@@ -77,18 +66,6 @@ const Content = styled(Stack, {
backgroundColor: '$blue/10',
},
},
size: {
18: {
height: 18,
minWidth: 18,
maxWidth: 28,
},
22: {
height: 22,
minWidth: 22,
maxWidth: 32,
},
},
},
})
@@ -32,7 +32,7 @@ export const Grey: StoryObj<TabsProps> = {
<Tabs.Trigger type="default" value="2">
Tab 2
</Tabs.Trigger>
<Tabs.Trigger type="default" value="3" disabled>
<Tabs.Trigger type="default" value="3">
Tab 3
</Tabs.Trigger>
</Tabs.List>
@@ -64,7 +64,7 @@ export const GreyBlur: StoryObj<TabsProps> = {
<Tabs.Trigger type="default" value="2">
Tab 2
</Tabs.Trigger>
<Tabs.Trigger type="default" value="3" disabled>
<Tabs.Trigger type="default" value="3">
Tab 3
</Tabs.Trigger>
</Tabs.List>
@@ -96,7 +96,7 @@ export const DarkGrey: StoryObj<TabsProps> = {
<Tabs.Trigger type="default" value="2">
Tab 2
</Tabs.Trigger>
<Tabs.Trigger type="default" value="3" disabled>
<Tabs.Trigger type="default" value="3">
Tab 3
</Tabs.Trigger>
</Tabs.List>
@@ -132,7 +132,7 @@ export const DarkGreyBlur: StoryObj<TabsProps> = {
<Tabs.Trigger type="default" value="2">
Tab 2
</Tabs.Trigger>
<Tabs.Trigger type="default" value="3" disabled>
<Tabs.Trigger type="default" value="3">
Tab 3
</Tabs.Trigger>
</Tabs.List>
@@ -176,7 +176,6 @@ export const Icon: StoryObj<TabsProps> = {
type="icon"
value="3"
icon={<PlaceholderIcon size={16} />}
disabled
>
Tab 3
</Tabs.Trigger>
@@ -209,7 +208,7 @@ export const Counter: StoryObj<TabsProps> = {
<Tabs.Trigger type="counter" value="2" count={10}>
Tab 2
</Tabs.Trigger>
<Tabs.Trigger type="counter" value="3" count={100} disabled>
<Tabs.Trigger type="counter" value="3" count={100}>
Tab 3
</Tabs.Trigger>
</Tabs.List>
@@ -241,7 +240,7 @@ export const Step: StoryObj<TabsProps> = {
<Tabs.Trigger type="step" value="2" step={10}>
Tab 2
</Tabs.Trigger>
<Tabs.Trigger type="step" value="3" step={999} disabled>
<Tabs.Trigger type="step" value="3" step={999}>
Tab 3
</Tabs.Trigger>
</Tabs.List>
+3 -22
View File
@@ -65,28 +65,19 @@ type TriggerProps =
type: 'default'
value: string
children: string
disabled?: boolean
}
| {
type: 'icon'
value: string
children: string
icon: React.ReactElement
disabled?: boolean
}
| {
type: 'counter'
value: string
children: string
count: number
disabled?: boolean
}
| { type: 'counter'; value: string; children: string; count: number }
| {
type: 'step'
value: string
children: string
step: number
disabled?: boolean
}
const TabsTrigger = (props: TriggerProps, ref: Ref<View>) => {
@@ -96,11 +87,10 @@ const TabsTrigger = (props: TriggerProps, ref: Ref<View>) => {
const providedProps = props as TriggerProps & {
size: 24 | 32
'aria-selected': boolean
disabled: boolean
variant: Variants['variant']
}
const { size, 'aria-selected': selected, disabled, variant } = providedProps
const { size, 'aria-selected': selected, variant } = providedProps
const { color, pressableProps } = usePressableColors(
{
@@ -122,7 +112,6 @@ const TabsTrigger = (props: TriggerProps, ref: Ref<View>) => {
size={size}
variant={variant}
active={selected}
disabled={disabled}
>
{props.type === 'icon' &&
cloneElement(props.icon, {
@@ -130,9 +119,7 @@ const TabsTrigger = (props: TriggerProps, ref: Ref<View>) => {
color,
})}
{props.type === 'step' && (
<Step size={18} type="complete" value={props.step} />
)}
{props.type === 'step' && <Step type="complete" value={props.step} />}
<Text size={textSize} weight="medium" color={color}>
{children}
@@ -241,12 +228,6 @@ const TriggerBase = styled(View, {
}
},
},
disabled: {
true: {
opacity: 0.3,
cursor: 'default',
},
},
} as const,
})
-31
View File
@@ -1,36 +1,5 @@
# @status-im/icons
## 0.9.2
### Patch Changes
- a023653: sync icons
## 0.9.1
### Patch Changes
- e50e48f: Sync icons
## 0.9.0
### Minor Changes
- 6260801: Sync icons
- cd85b36: Sync icons
## 0.8.0
### Minor Changes
- 094369c: Sync icons
## 0.7.0
### Minor Changes
- b59b504: Updates and syncs new icons from design system
## 0.6.0
### Minor Changes
+2 -3
View File
@@ -1,6 +1,6 @@
{
"name": "@status-im/icons",
"version": "0.9.2",
"version": "0.6.0",
"files": [
"dist",
"svg"
@@ -31,8 +31,7 @@
"lint": "eslint 'src/**/*.{ts,tsx}'",
"lint:fix": "yarn lint --fix",
"format": "prettier --write 'src/**/*.{ts,tsx}'",
"clean": "rimraf dist node_modules .turbo",
"prepack": "yarn build"
"clean": "rimraf dist node_modules .turbo"
},
"dependencies": {
"@tamagui/core": "1.74.21",
-2
View File
@@ -33,8 +33,6 @@ if (isCancel(personalAccessToken)) {
const FILE_KEY = 'qLLuMLfpGxK9OfpIavwsmK'
const NODE_IDS = {
// currently generates only set of size 20
// https://github.com/status-im/status-web/issues/466
'3239:987': 'icons',
'3227:1083': 'social',
// '942:77': 'reactions',
-25
View File
@@ -1,25 +0,0 @@
import { createIcon } from '../lib/create-icon'
const SvgAddSmIcon = createIcon(props => {
return (
<svg
{...props}
xmlns="http://www.w3.org/2000/svg"
width={props.width}
height={props.height}
fill="none"
viewBox="0 0 20 20"
focusable={false}
aria-hidden={true}
>
<path
fill={props.color}
fillRule="evenodd"
d="M9.4 10.6V15h1.2v-4.4H15V9.4h-4.4V5H9.4v4.4H5v1.2h4.4Z"
clipRule="evenodd"
/>
</svg>
)
})
export default SvgAddSmIcon
+1 -1
View File
@@ -12,7 +12,7 @@ const SvgAddSmallIcon = createIcon(props => {
focusable={false}
aria-hidden={true}
>
<circle cx={10} cy={10} r={7} stroke="#A1ABBD" strokeWidth={1.2} />
<circle cx={10} cy={10} r={7.5} stroke="#A1ABBD" strokeWidth={1.2} />
<path
fill={props.color}
fillRule="evenodd"
-25
View File
@@ -1,25 +0,0 @@
import { createIcon } from '../lib/create-icon'
const SvgAddTimeOffIcon = createIcon(props => {
return (
<svg
{...props}
xmlns="http://www.w3.org/2000/svg"
width={props.width}
height={props.height}
fill="none"
viewBox="0 0 20 20"
focusable={false}
aria-hidden={true}
>
<path
fill={props.color}
fillRule="evenodd"
d="M10.6 5.5a3.9 3.9 0 1 1 7.8 0 3.9 3.9 0 0 1-7.8 0ZM14.5.4a5.1 5.1 0 1 0 0 10.2 5.1 5.1 0 0 0 0-10.2ZM7.162 2.642a7.027 7.027 0 0 1 2.203-.248 5.962 5.962 0 0 0-.744 1.902 3.213 3.213 0 0 0-.187-.167c-.294-.242-.538-.346-.707-.39a6.86 6.86 0 0 0-.505.134c-.124.124-.284.336-.417.693-.305.813-.48 2.393.243 5.353l2.72-.729c.285.364.61.694.969.984l-.873.233 1.338 4.994a3.794 3.794 0 0 1 1.609.674c.66.48 1.509.622 2.29.382l1.722-.53.353 1.146-1.723.53a3.795 3.795 0 0 1-3.348-.558 2.595 2.595 0 0 0-2.534-.293l-1.228.518-.041.017c-.475.2-.767.323-1.07.404a4.601 4.601 0 0 1-1.94.098c-.31-.051-.613-.145-1.105-.296l-.043-.013-1.32-.407.352-1.146 1.32.406c.55.169.771.236.99.271.478.079.967.055 1.435-.071.214-.058.428-.147.957-.37l1.228-.517c.277-.116.563-.198.853-.246l-1.254-4.682-5.699 1.527-.622.167-.122-.633.589-.114-.59.113v-.008l-.004-.019a4.582 4.582 0 0 1-.047-.307 10.857 10.857 0 0 1-.075-.85 10.853 10.853 0 0 1 .188-2.689c.422-2.06 1.653-4.41 4.84-5.263ZM5.757 4.555c-.312 1.11-.354 2.856.325 5.623l-2.723.73a9.66 9.66 0 0 1 .14-2.762c.27-1.316.89-2.686 2.258-3.591ZM15.1 4.9H17v1.2h-1.9V8h-1.2V6.1H12V4.9h1.9V3h1.2v1.9Z"
clipRule="evenodd"
/>
</svg>
)
})
export default SvgAddTimeOffIcon
File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -15,7 +15,7 @@ const SvgAlertIcon = createIcon(props => {
<path
fill={props.color}
fillRule="evenodd"
d="M3.6 10a6.4 6.4 0 1 1 12.8 0 6.4 6.4 0 0 1-12.8 0ZM10 2.4a7.6 7.6 0 1 0 0 15.2 7.6 7.6 0 0 0 0-15.2Zm.55 9.1.2-6h-1.5l.2 6h1.1Zm.2 2.25a.75.75 0 1 0-1.5 0 .75.75 0 0 0 1.5 0Z"
d="M3.1 10a6.9 6.9 0 1 1 13.8 0 6.9 6.9 0 0 1-13.8 0ZM10 1.9a8.1 8.1 0 1 0 0 16.2 8.1 8.1 0 0 0 0-16.2Zm.55 9.6.2-6h-1.5l.2 6h1.1Zm.2 2.25a.75.75 0 1 0-1.5 0 .75.75 0 0 0 1.5 0Z"
clipRule="evenodd"
/>
</svg>
+3 -31
View File
@@ -14,37 +14,9 @@ const SvgAndroidIcon = createIcon(props => {
>
<path
fill={props.color}
stroke="#fff"
strokeWidth={0.729}
d="M10 10.875c2.545 0 4.608-1.905 4.608-4.254 0-2.349-2.063-4.253-4.608-4.253-2.545 0-4.608 1.904-4.608 4.253 0 2.35 2.063 4.254 4.608 4.254Z"
/>
<path
fill={props.color}
stroke="#fff"
strokeWidth={0.729}
d="M13.494 5.558H6.506c-.616 0-1.114.498-1.114 1.114v6.988c0 .615.498 1.114 1.114 1.114h6.988c.615 0 1.114-.5 1.114-1.114V6.672c0-.616-.5-1.114-1.114-1.114Z"
/>
<path
fill={props.color}
stroke="#fff"
strokeWidth={0.365}
d="M6.852 1.686a.33.33 0 1 1 .576-.319L9.22 4.6a.33.33 0 0 1-.576.32L6.852 1.685Zm7.958 6.15a1.215 1.215 0 1 1 2.43 0v4.304a1.215 1.215 0 1 1-2.43 0V7.836Zm-4.303 4.912a1.215 1.215 0 0 1 2.43 0v4.305a1.215 1.215 0 0 1-2.43 0v-4.305Zm2.64-11.062a.33.33 0 0 0-.576-.319L10.78 4.6a.33.33 0 0 0 .576.32l1.792-3.234Zm-7.958 6.15a1.215 1.215 0 0 0-2.43 0v4.304a1.215 1.215 0 1 0 2.43 0V7.836Zm4.304 4.912a1.215 1.215 0 1 0-2.43 0v4.305a1.215 1.215 0 1 0 2.43 0v-4.305Z"
/>
<path
fill={props.color}
d="M10 10.875c2.545 0 4.608-1.905 4.608-4.254 0-2.349-2.063-4.253-4.608-4.253-2.545 0-4.608 1.904-4.608 4.253 0 2.35 2.063 4.254 4.608 4.254Z"
/>
<path
fill={props.color}
d="M13.494 5.558H6.506c-.616 0-1.114.498-1.114 1.114v6.988c0 .615.498 1.114 1.114 1.114h6.988c.615 0 1.114-.5 1.114-1.114V6.672c0-.616-.5-1.114-1.114-1.114Z"
/>
<path fill="#fff" d="M5.189 6.798h9.621-9.62Z" />
<path stroke="#fff" strokeWidth={0.365} d="M5.189 6.798h9.621" />
<path
fill="#fff"
stroke="#fff"
strokeWidth={0.365}
d="M7.873 4.747a.203.203 0 1 0 0-.405.203.203 0 0 0 0 .405Zm4.253 0a.203.203 0 1 0 0-.405.203.203 0 0 0 0 .405Z"
fillRule="evenodd"
d="M4.86 6.183C4.105 7.866 4.1 9.748 4.1 10.5c0 .557.009 1.066.028 1.53.198.037.467.08.821.125.97.12 2.57.245 5.05.245 2.482 0 4.081-.124 5.051-.245.354-.045.624-.088.821-.125.02-.464.029-.973.029-1.53 0-.752-.005-2.634-.76-4.317-.373-.831-.92-1.594-1.724-2.15-.8-.555-1.896-.933-3.416-.933s-2.616.378-3.416.932c-.804.557-1.351 1.32-1.724 2.151Zm10.92 7.08c-.167.027-.36.055-.58.082-1.03.13-2.68.255-5.2.255s-4.17-.126-5.2-.255a17.213 17.213 0 0 1-.58-.082c.03.269.067.518.111.75.168.875.432 1.44.794 1.827.359.382.873.652 1.666.824.802.173 1.843.236 3.209.236s2.407-.063 3.209-.236c.793-.172 1.307-.442 1.666-.824.362-.387.626-.952.793-1.828.045-.231.082-.48.112-.749ZM5.9 3.046C6.929 2.334 8.27 1.9 10 1.9c1.73 0 3.071.434 4.1 1.146.28.194.534.407.765.634l1.155-1.54.96.72-1.33 1.772c.23.343.423.7.585 1.06.865 1.93.865 4.034.865 4.794v.014c0 1.508-.062 2.742-.253 3.738-.192 1-.522 1.81-1.097 2.422-.579.618-1.346.973-2.287 1.177-.933.201-2.08.263-3.463.263-1.384 0-2.53-.062-3.463-.264-.941-.203-1.709-.558-2.287-1.176-.575-.613-.906-1.423-1.097-2.422-.191-.995-.253-2.23-.253-3.738v-.014c0-.76 0-2.864.865-4.794.161-.36.354-.717.584-1.06L3.02 2.86l.96-.72 1.156 1.54c.23-.227.485-.44.766-.634ZM9 8c0 .828-.448 1.5-1 1.5S7 8.828 7 8s.448-1.5 1-1.5S9 7.172 9 8Zm3 1.5c.552 0 1-.672 1-1.5s-.448-1.5-1-1.5-1 .672-1 1.5.448 1.5 1 1.5Z"
clipRule="evenodd"
/>
</svg>
)
-23
View File
@@ -1,23 +0,0 @@
import { createIcon } from '../lib/create-icon'
const SvgAppleIcon = createIcon(props => {
return (
<svg
{...props}
xmlns="http://www.w3.org/2000/svg"
width={props.width}
height={props.height}
fill="none"
viewBox="0 0 20 20"
focusable={false}
aria-hidden={true}
>
<path
fill={props.color}
d="M14.357 10c.023 2.422 2.12 3.227 2.143 3.238-.018.056-.335 1.148-1.105 2.275-.665.975-1.356 1.946-2.444 1.966-1.069.02-1.413-.635-2.635-.635-1.222 0-1.604.615-2.616.655-1.05.04-1.85-1.054-2.52-2.025-1.371-1.987-2.42-5.613-1.012-8.062.699-1.215 1.948-1.985 3.303-2.005 1.031-.02 2.005.695 2.635.695.63 0 1.813-.86 3.056-.733.521.022 1.982.21 2.92 1.587-.075.047-1.743 1.02-1.725 3.044Zm-2.009-5.945c.558-.677.933-1.618.83-2.555-.803.032-1.775.537-2.351 1.213-.517.598-.97 1.556-.847 2.475.895.069 1.81-.457 2.368-1.133Z"
/>
</svg>
)
})
export default SvgAppleIcon
-48
View File
@@ -1,48 +0,0 @@
import { createIcon } from '../lib/create-icon'
const SvgArgentinaIcon = createIcon(props => {
return (
<svg
{...props}
xmlns="http://www.w3.org/2000/svg"
width={props.width}
height={props.height}
fill="none"
viewBox="0 0 20 20"
focusable={false}
aria-hidden={true}
>
<path
fill="#75AADB"
d="M20 15a2.222 2.222 0 0 1-2.222 2.222H2.222A2.222 2.222 0 0 1 0 15V5c0-1.227.995-2.222 2.222-2.222h15.556C19.005 2.778 20 3.773 20 5v10Z"
/>
<path fill="#fff" d="M0 7.222h20v5.556H0V7.222Z" />
<path
fill="#FCBF49"
d="m10 7.222.271 1.416.792-1.204-.291 1.411 1.192-.81-.81 1.193 1.412-.29-1.204.79 1.416.272-1.416.271 1.204.792-1.412-.291.81 1.192-1.192-.81.291 1.412-.792-1.204L10 12.778l-.271-1.416-.792 1.204.291-1.412-1.192.81.809-1.192-1.411.291 1.204-.792L7.222 10l1.416-.271-1.204-.792 1.411.291-.81-1.192 1.193.809-.29-1.411.79 1.204L10 7.222Z"
/>
<path
fill="#843511"
d="m10 7.961.134.703L10.2 9l.188-.286.393-.597-.144.7-.07.336.283-.193.593-.401-.402.592-.192.283.335-.069.7-.145-.597.394L11 9.8l.336.065.703.134-.703.134L11 10.2l.286.188.597.393-.7-.144-.336-.07.192.283.402.592-.592-.402-.284-.192.07.336.145.7-.393-.597-.188-.286-.065.336-.134.703-.134-.703L9.8 11l-.188.286-.394.598.145-.701.07-.335-.284.192-.592.402.401-.593.193-.283-.336.07-.7.145.597-.394L9 10.2l-.336-.065L7.96 10l.703-.134L9 9.8l-.286-.188-.598-.394.7.145.336.07-.193-.284-.402-.592.592.402.284.192-.07-.335-.144-.7.393.597L9.8 9l.065-.337L10 7.96Zm0-.739-.271 1.416-.792-1.204.291 1.411-1.192-.809.809 1.193-1.411-.291 1.204.791L7.222 10l1.416.271-1.204.792 1.411-.291-.81 1.192 1.193-.81-.29 1.412.79-1.204.272 1.416.271-1.416.792 1.204-.291-1.412 1.192.81-.81-1.192 1.412.291-1.204-.792L12.778 10l-1.416-.271 1.204-.792-1.412.291.81-1.192-1.192.809.291-1.412-.792 1.204L10 7.222Zm1.063.212h.003-.003Zm.9.602h.004-.003Zm.603.901h.003-.003Z"
/>
<path
fill="#FCBF49"
d="M10 11.111a1.111 1.111 0 1 0 0-2.222 1.111 1.111 0 0 0 0 2.222Z"
/>
<path
fill="#843511"
d="M10 11.18a1.182 1.182 0 0 1 0-2.36 1.182 1.182 0 0 1 0 2.36Zm0-2.222a1.043 1.043 0 0 0 0 2.084 1.043 1.043 0 0 0 0-2.084Z"
/>
<path
fill="#C16540"
d="M9.89 9.875c0 .086-.145.155-.324.155-.18 0-.325-.07-.325-.155 0-.087.145-.156.325-.156.179 0 .324.07.324.156Zm.862-.014c0-.09-.148-.162-.33-.162-.182 0-.33.072-.33.162 0 .09.148.162.33.162.183 0 .33-.072.33-.162Z"
/>
<path
fill="#ED8662"
d="M9.702 10.486c0-.07.136-.128.304-.128.168 0 .304.057.304.128 0 .07-.136.127-.304.127-.168 0-.304-.057-.304-.127Z"
/>
</svg>
)
})
export default SvgArgentinaIcon
-43
View File
@@ -1,43 +0,0 @@
import { createIcon } from '../lib/create-icon'
const SvgAustraliaIcon = createIcon(props => {
return (
<svg
{...props}
xmlns="http://www.w3.org/2000/svg"
width={props.width}
height={props.height}
fill="none"
viewBox="0 0 20 20"
focusable={false}
aria-hidden={true}
>
<path
fill="#00247D"
d="M17.778 2.778H2.222a2.23 2.23 0 0 0-.335.025l-.003.974-1.516-.002A2.213 2.213 0 0 0 0 5v10c0 1.227.995 2.222 2.222 2.222h15.556A2.222 2.222 0 0 0 20 15V5a2.222 2.222 0 0 0-2.222-2.222Z"
/>
<path
fill="#fff"
d="m5 14.457-.679.627.067-.922-.914-.14.763-.521-.46-.802.883.271.34-.86.34.86.884-.271-.461.802.763.522-.914.14.067.921-.68-.627Zm10.528-9.145-.444.41.044-.603-.599-.091.5-.342-.301-.524.578.177.222-.563.223.563.578-.177-.302.524.499.342-.598.09.044.604-.444-.41Zm-2.223 3.334-.443.41.043-.603-.598-.091.5-.343-.302-.524.578.177.223-.563.222.563.579-.177-.302.524.499.343-.598.09.044.604-.444-.41Zm5-1.112-.443.411.044-.603-.599-.091.5-.343-.301-.524.577.177.223-.563.222.563.579-.177-.302.524.499.343-.598.09.044.604-.445-.41Zm-2.777 7.778-.444.41.044-.602-.599-.092.5-.342-.301-.524.578.177.222-.563.223.563.578-.177-.302.524.499.342-.598.091.044.604-.444-.41Zm1.694-6.423.163.331.365.053-.263.257.062.364-.327-.172-.327.172.063-.364-.264-.257.365-.053.163-.331Z"
/>
<path
fill="#00247D"
d="M10.556 10V2.778H2.222c-.178 0-.335.025-.335.025l-.003.974-1.516-.002s-.024.033-.07.114A2.216 2.216 0 0 0 0 5v5h10.556Z"
/>
<path
fill="#fff"
d="M10.556 2.778H9.26L6.667 4.594V2.778H3.889v1.427L1.887 2.803a2.19 2.19 0 0 0-.93.37L3.57 5h-.964L.537 3.55a2.307 2.307 0 0 0-.17.225L2.119 5H0v2.778h2.158L0 9.315V10h1.851L3.89 8.573V10h2.778V8.184L9.26 10h1.296V8.873L8.992 7.778h1.564V5H8.992l1.564-1.095V2.778Z"
/>
<path
fill="#CF1B2B"
d="M6.111 2.778H4.444v2.778H0v1.666h4.444V10h1.667V7.222h4.445V5.556H6.11V2.778Z"
/>
<path
fill="#CF1B2B"
d="M10.556 2.778h-.812L6.667 4.933V5h.872l3.017-2.112v-.11Zm-9.598.394a2.251 2.251 0 0 0-.42.379L2.604 5h.964L.958 3.172Zm2.618 4.606L.408 10h.96l2.52-1.765v-.457h-.312Zm6.98 2.112v-.678L8.507 7.778H7.54l3.017 2.112Z"
/>
</svg>
)
})
export default SvgAustraliaIcon
+2 -2
View File
@@ -15,10 +15,10 @@ const SvgAutomaticIcon = createIcon(props => {
<path
fill="#A1ABBD"
fillRule="evenodd"
d="M8.813 6.433a4 4 0 1 0 0 7.133A5.478 5.478 0 0 1 7.5 10c0-1.36.494-2.606 1.313-3.567Z"
d="M8.958 5.723a5.5 5.5 0 1 0 0 8.554A6.97 6.97 0 0 1 7.5 10a6.97 6.97 0 0 1 1.458-4.277Z"
clipRule="evenodd"
/>
<circle cx={13} cy={10} r={4} fill="#23ADA0" />
<circle cx={14.5} cy={10} r={5.5} fill="#23ADA0" />
</svg>
)
})
+1 -1
View File
@@ -15,7 +15,7 @@ const SvgBlockIcon = createIcon(props => {
<path
fill={props.color}
fillRule="evenodd"
d="M3.6 10a6.4 6.4 0 0 1 10.48-4.93l-9.01 9.011A6.374 6.374 0 0 1 3.6 10Zm2.318 4.93a6.4 6.4 0 0 0 9.011-9.011l-9.01 9.01ZM10 2.4a7.6 7.6 0 1 0 0 15.2 7.6 7.6 0 0 0 0-15.2Z"
d="M3.1 10a6.9 6.9 0 0 1 11.336-5.285l-9.721 9.721A6.872 6.872 0 0 1 3.1 10Zm2.463 5.285a6.9 6.9 0 0 0 9.721-9.721l-9.72 9.72ZM10 1.9a8.1 8.1 0 1 0 0 16.2 8.1 8.1 0 0 0 0-16.2Z"
clipRule="evenodd"
/>
</svg>
-25
View File
@@ -1,25 +0,0 @@
import { createIcon } from '../lib/create-icon'
const SvgBookIcon = createIcon(props => {
return (
<svg
{...props}
xmlns="http://www.w3.org/2000/svg"
width={props.width}
height={props.height}
fill="none"
viewBox="0 0 20 20"
focusable={false}
aria-hidden={true}
>
<path
fill={props.color}
fillRule="evenodd"
d="M10.6 5.256a5.369 5.369 0 0 1 4.155-1.378l.24.024c.144.015.19.02.226.025a1.4 1.4 0 0 1 1.177 1.3c.002.037.002.084.002.228V12.5c0 .474 0 .8-.018 1.053-.017.249-.048.384-.089.483a1.4 1.4 0 0 1-.757.757c-.099.041-.234.072-.483.09-.253.017-.579.017-1.053.017h-.053c-.61 0-.984 0-1.35.06-.489.079-.96.236-1.399.465a5.06 5.06 0 0 0-.598.38V5.256Zm-1.2 0a5.369 5.369 0 0 0-4.155-1.378l-.24.024c-.144.015-.19.02-.226.025a1.4 1.4 0 0 0-1.177 1.3 4.547 4.547 0 0 0-.002.228V12.5c0 .474 0 .8.018 1.053.016.249.048.384.088.483a1.4 1.4 0 0 0 .758.757c.099.041.234.072.482.09.254.017.58.017 1.054.017h.053c.609 0 .984 0 1.35.06.488.079.96.236 1.398.465.195.102.38.223.599.38V5.256ZM5.126 2.684A6.569 6.569 0 0 1 10 4.187a6.569 6.569 0 0 1 4.874-1.503l.24.024.02.002c.116.012.2.02.276.032a2.6 2.6 0 0 1 2.185 2.415c.005.077.005.161.005.279v7.084c0 .449 0 .816-.02 1.115-.022.31-.067.59-.178.86a2.6 2.6 0 0 1-1.407 1.407c-.27.112-.55.156-.86.178-.3.02-.666.02-1.114.02H14c-.678 0-.952.002-1.211.044-.361.058-.71.175-1.034.344-.233.122-.452.285-.995.692l-.4.3-.36.27-.36-.27-.4-.3c-.543-.407-.763-.57-.995-.692a3.399 3.399 0 0 0-1.034-.344c-.26-.042-.533-.044-1.211-.044h-.02c-.45 0-.816 0-1.115-.02a2.674 2.674 0 0 1-.86-.178 2.6 2.6 0 0 1-1.407-1.407 2.675 2.675 0 0 1-.178-.86 17.7 17.7 0 0 1-.02-1.114V5.435c0-.117 0-.201.004-.278A2.6 2.6 0 0 1 4.59 2.742c.076-.012.16-.02.276-.032l.02-.002.24-.024Z"
clipRule="evenodd"
/>
</svg>
)
})
export default SvgBookIcon
-44
View File
@@ -1,44 +0,0 @@
import { createIcon } from '../lib/create-icon'
const SvgBrazilIcon = createIcon(props => {
return (
<svg
{...props}
xmlns="http://www.w3.org/2000/svg"
width={props.width}
height={props.height}
fill="none"
viewBox="0 0 20 20"
focusable={false}
aria-hidden={true}
>
<path
fill="#009B3A"
d="M20 15a2.222 2.222 0 0 1-2.222 2.222H2.222A2.222 2.222 0 0 1 0 15V5c0-1.227.995-2.222 2.222-2.222h15.556C19.005 2.778 20 3.773 20 5v10Z"
/>
<path
fill="#FEDF01"
d="M18.182 10 10 16.18 1.818 10 10 3.82 18.182 10Z"
/>
<path
fill="#002776"
d="M9.987 13.546a3.588 3.588 0 1 0 0-7.176 3.588 3.588 0 0 0 0 7.176Z"
/>
<path
fill="#CBE9D4"
d="M6.82 8.27a3.57 3.57 0 0 0-.373 1.124c2.22-.16 5.232 1.051 6.525 2.553a3.57 3.57 0 0 0 .49-1.113c-1.595-1.56-4.398-2.572-6.641-2.563Z"
/>
<path
fill="#88C9F9"
d="M6.667 10.13h.555v.555h-.555v-.556Zm.555 1.11h.556v.556h-.556v-.555Z"
/>
<path
fill="#55ACEE"
d="M8.333 10.13h.556v.555h-.556v-.556Zm1.111.555H10v.556h-.556v-.556Zm2.223 1.111h.555v.556h-.555v-.556ZM10 12.352h.556v.555H10v-.555Zm1.667-3.334h.555v.556h-.555v-.556Z"
/>
<path fill="#3B88C3" d="M10.556 11.24h.555v.556h-.555v-.555Z" />
</svg>
)
})
export default SvgBrazilIcon
-77
View File
@@ -1,77 +0,0 @@
import { createIcon } from '../lib/create-icon'
const SvgBridgeBlurIcon = createIcon(props => {
return (
<svg
{...props}
xmlns="http://www.w3.org/2000/svg"
width={props.width}
height={props.height}
fill="none"
viewBox="0 0 20 20"
focusable={false}
aria-hidden={true}
>
<g clipPath="url(#bridge-blur-icon_svg__a)">
<mask
id="bridge-blur-icon_svg__c"
width={20}
height={20}
x={0}
y={0}
maskUnits="userSpaceOnUse"
style={{
maskType: 'alpha',
}}
>
<path
fill="url(#bridge-blur-icon_svg__b)"
stroke={props.color}
d="M-.5-.5h19v19h-19z"
transform="matrix(0 -1 -1 0 19 19)"
/>
</mask>
<g mask="url(#bridge-blur-icon_svg__c)">
<path
fill={props.color}
fillRule="evenodd"
d="M4.99 10.098 4.5 10l-.49-.099v-.002l.001-.004.003-.014a3.446 3.446 0 0 1 .054-.224 8.6 8.6 0 0 1 1.075-2.43C6.015 5.887 7.528 4.5 10 4.5c2.473 0 3.986 1.387 4.857 2.728a8.602 8.602 0 0 1 1.129 2.653l.003.014v.004l.001.002-.49.099-.49.098-.002-.008-.008-.034a7.103 7.103 0 0 0-.199-.672 7.598 7.598 0 0 0-.783-1.612C13.265 6.612 12.028 5.5 10 5.5c-2.027 0-3.264 1.113-4.018 2.273a7.6 7.6 0 0 0-.99 2.318l-.002.007Z"
clipRule="evenodd"
/>
</g>
<circle
cx={4.5}
cy={12.5}
r={2.5}
stroke={props.color}
strokeWidth={1.2}
/>
<circle
cx={15.5}
cy={12.5}
r={2.5}
stroke={props.color}
strokeWidth={1.2}
/>
</g>
<defs>
<linearGradient
id="bridge-blur-icon_svg__b"
x1={13}
x2={15.5}
y1={4.5}
y2={8}
gradientUnits="userSpaceOnUse"
>
<stop stopColor={props.color} stopOpacity={0} />
<stop offset={1} stopColor={props.color} />
</linearGradient>
<clipPath id="bridge-blur-icon_svg__a">
<path fill="#fff" d="M0 0h20v20H0z" />
</clipPath>
</defs>
</svg>
)
})
export default SvgBridgeBlurIcon
+6 -52
View File
@@ -12,58 +12,12 @@ const SvgBridgeIcon = createIcon(props => {
focusable={false}
aria-hidden={true}
>
<g clipPath="url(#bridge-icon_svg__a)">
<mask
id="bridge-icon_svg__c"
width={20}
height={20}
x={0}
y={0}
maskUnits="userSpaceOnUse"
style={{
maskType: 'alpha',
}}
>
<path
fill="url(#bridge-icon_svg__b)"
d="M0 0h20v20H0z"
transform="matrix(0 -1 -1 0 20 20)"
/>
</mask>
<g mask="url(#bridge-icon_svg__c)">
<path stroke={props.color} d="M4.5 10s1-5 5.5-5 5.5 5 5.5 5" />
</g>
<circle
cx={4.5}
cy={12.5}
r={2.5}
stroke={props.color}
strokeWidth={1.2}
/>
<circle
cx={15.5}
cy={12.5}
r={2.5}
stroke={props.color}
strokeWidth={1.2}
/>
</g>
<defs>
<linearGradient
id="bridge-icon_svg__b"
x1={13}
x2={15.5}
y1={4.5}
y2={8}
gradientUnits="userSpaceOnUse"
>
<stop stopColor={props.color} stopOpacity={0} />
<stop offset={1} stopColor={props.color} />
</linearGradient>
<clipPath id="bridge-icon_svg__a">
<path fill="#fff" d="M0 0h20v20H0z" />
</clipPath>
</defs>
<path
fill={props.color}
fillRule="evenodd"
d="M6.75 2.4h-.485l-.101.472v.002l-.005.018a3.776 3.776 0 0 1-.145.43c-.117.29-.31.674-.61 1.057C4.813 5.13 3.793 5.9 2 5.9v1.2c2.207 0 3.56-.978 4.347-1.98l.053-.068V10.4H2v1.2h4.4v4.9h1.2v-4.9h4.8v4.9h1.2v-4.9H18v-1.2h-4.4V5.052l.053.069C14.44 6.12 15.793 7.1 18 7.1V5.9c-1.793 0-2.815-.772-3.403-1.52a4.396 4.396 0 0 1-.732-1.4l-.024-.088-.004-.018v-.002l-.102-.472h-1.454l-.113.454v.003l-.006.02a5.694 5.694 0 0 1-.125.389 5.77 5.77 0 0 1-.43.932C11.197 4.9 10.665 5.4 10 5.4s-1.196-.499-1.607-1.202a5.78 5.78 0 0 1-.555-1.322l-.005-.019v-.003h-.001L7.718 2.4H6.75Zm5.65 2.782C11.906 5.885 11.129 6.6 10 6.6s-1.906-.715-2.4-1.418V10.4h4.8V5.182Z"
clipRule="evenodd"
/>
</svg>
)
})
+1 -1
View File
@@ -15,7 +15,7 @@ const SvgBrowserIcon = createIcon(props => {
<path
fill={props.color}
fillRule="evenodd"
d="M3.6 10a6.4 6.4 0 1 1 12.8 0 6.4 6.4 0 0 1-12.8 0ZM10 2.4a7.6 7.6 0 1 0 0 15.2 7.6 7.6 0 0 0 0-15.2ZM8.218 9.483c.043-.104.085-.201.126-.29l2.463 2.463a7.357 7.357 0 0 1-.29.126 14.18 14.18 0 0 1-1.519.513c-.537.15-1.05.265-1.442.32a3.916 3.916 0 0 1-.196.025c.006-.059.014-.124.024-.196.056-.391.17-.906.32-1.443.15-.535.331-1.075.514-1.518Zm3.564 1.034a6.543 6.543 0 0 1-.127.29L9.194 8.344a7.35 7.35 0 0 1 .29-.126c.442-.182.983-.363 1.518-.513a11.8 11.8 0 0 1 1.443-.32c.072-.01.137-.019.195-.025a4.632 4.632 0 0 1-.024.196c-.056.391-.17.906-.32 1.443-.15.535-.33 1.075-.513 1.518Zm1.433-4.333a.815.815 0 0 1 .391.21c.137.137.188.3.21.39.024.105.033.21.035.305a3.88 3.88 0 0 1-.048.637 12.98 12.98 0 0 1-.353 1.596c-.16.57-.354 1.156-.559 1.652a6.88 6.88 0 0 1-.32.682 2.41 2.41 0 0 1-.38.536 2.407 2.407 0 0 1-.536.38c-.2.11-.433.218-.681.32-.496.204-1.083.399-1.652.559-.568.159-1.137.287-1.596.353a3.987 3.987 0 0 1-.638.048 1.475 1.475 0 0 1-.303-.036.815.815 0 0 1-.391-.21.815.815 0 0 1-.21-.39 1.473 1.473 0 0 1-.036-.304c-.004-.19.016-.41.048-.638.066-.46.194-1.028.353-1.596.16-.57.355-1.156.56-1.652.101-.248.209-.481.319-.681.105-.193.232-.389.38-.537a2.42 2.42 0 0 1 .536-.38c.2-.11.434-.217.682-.32a15.287 15.287 0 0 1 1.652-.558 13.111 13.111 0 0 1 1.596-.353 3.88 3.88 0 0 1 .637-.048c.094.002.2.01.304.035Z"
d="M3.1 10a6.9 6.9 0 1 1 13.8 0 6.9 6.9 0 0 1-13.8 0ZM10 1.9a8.1 8.1 0 1 0 0 16.2 8.1 8.1 0 0 0 0-16.2ZM8.218 9.483c.043-.104.085-.201.126-.29l2.463 2.463a7.206 7.206 0 0 1-.29.126c-.443.182-.983.363-1.519.513-.536.15-1.05.265-1.442.32a4.63 4.63 0 0 1-.196.025c.006-.059.014-.124.024-.196.056-.391.17-.906.321-1.443.15-.535.33-1.075.513-1.518Zm3.564 1.034a8.035 8.035 0 0 1-.126.29L9.193 8.344c.089-.04.186-.083.29-.126.443-.182.983-.363 1.518-.513.537-.15 1.052-.265 1.443-.32.072-.01.137-.019.196-.025a4.632 4.632 0 0 1-.024.196c-.056.391-.17.906-.321 1.443-.15.535-.33 1.075-.513 1.518Zm1.433-4.333a.815.815 0 0 1 .391.21.818.818 0 0 1 .21.39c.024.105.033.21.035.305a3.88 3.88 0 0 1-.048.637 12.98 12.98 0 0 1-.353 1.596c-.16.57-.354 1.156-.558 1.652-.103.248-.21.481-.32.681a2.41 2.41 0 0 1-.38.537 2.406 2.406 0 0 1-.537.38c-.2.11-.433.218-.68.32-.497.204-1.084.399-1.653.558-.568.16-1.136.288-1.596.354a3.987 3.987 0 0 1-.637.048 1.47 1.47 0 0 1-.304-.036.815.815 0 0 1-.391-.21.815.815 0 0 1-.21-.39 1.475 1.475 0 0 1-.036-.305 3.99 3.99 0 0 1 .048-.637c.066-.46.195-1.028.354-1.596.159-.57.354-1.156.558-1.652.102-.248.21-.481.32-.681.106-.193.232-.389.38-.537a2.42 2.42 0 0 1 .536-.38c.2-.11.434-.217.682-.32a15.287 15.287 0 0 1 1.652-.558 13.113 13.113 0 0 1 1.596-.354c.227-.032.448-.052.637-.048.094.003.2.011.304.036Z"
clipRule="evenodd"
/>
</svg>
-47
View File
@@ -1,47 +0,0 @@
import { createIcon } from '../lib/create-icon'
const SvgChileIcon = createIcon(props => {
return (
<svg
{...props}
xmlns="http://www.w3.org/2000/svg"
width={props.width}
height={props.height}
fill="none"
viewBox="0 0 20 20"
focusable={false}
aria-hidden={true}
>
<g clipPath="url(#chile-icon_svg__a)">
<g clipPath="url(#chile-icon_svg__b)">
<path
fill="#1F429B"
d="M7.222 2.778h-5A2.222 2.222 0 0 0 0 5v5h7.222V2.778ZM4.632 7.94l-1.046-.76-1.045.76.399-1.229-1.046-.76h1.293l.4-1.229.399 1.23h1.292l-1.046.76.4 1.228Z"
/>
<path
fill="#EEE"
d="M17.778 2.778H7.222V10H20V5a2.222 2.222 0 0 0-2.222-2.222Z"
/>
<path
fill="#D42D27"
d="M0 10v5c0 1.227.995 2.222 2.222 2.222h15.556A2.222 2.222 0 0 0 20 15v-5H0Z"
/>
<path
fill="#fff"
d="m3.986 5.951-.4-1.229-.4 1.23h-1.29l1.045.76-.4 1.228 1.046-.76 1.046.76-.4-1.229 1.046-.76H3.986Z"
/>
</g>
</g>
<defs>
<clipPath id="chile-icon_svg__a">
<path fill="#fff" d="M0 0h20v20H0z" />
</clipPath>
<clipPath id="chile-icon_svg__b">
<path fill="#fff" d="M0 0h20v20H0z" />
</clipPath>
</defs>
</svg>
)
})
export default SvgChileIcon
-27
View File
@@ -1,27 +0,0 @@
import { createIcon } from '../lib/create-icon'
const SvgChinaIcon = createIcon(props => {
return (
<svg
{...props}
xmlns="http://www.w3.org/2000/svg"
width={props.width}
height={props.height}
fill="none"
viewBox="0 0 20 20"
focusable={false}
aria-hidden={true}
>
<path
fill="#DE2910"
d="M20 15a2.222 2.222 0 0 1-2.222 2.222H2.222A2.222 2.222 0 0 1 0 15V5c0-1.227.995-2.222 2.222-2.222h15.556C19.005 2.778 20 3.773 20 5v10Z"
/>
<path
fill="#FFDE02"
d="m6.187 4.987.409.198.327-.314-.062.45.4.214-.447.08-.08.447-.214-.4-.45.061.314-.327-.197-.409Zm2.591 1.634-.197.408.314.328-.45-.062-.214.4-.08-.447-.447-.08.4-.214-.062-.45.328.315.408-.198Zm-.531 2.1.149.428.453.01-.361.274.131.435-.372-.26-.373.26.131-.435-.362-.274.454-.01.15-.428Zm-2.06 1.822.409.198.327-.315-.062.45.4.215-.447.08-.08.446-.214-.4-.45.062.314-.327-.197-.41Zm-2.298-4.46.516 1.485 1.57.032-1.252.949.455 1.503-1.29-.897-1.289.897.455-1.503L1.803 7.6l1.57-.032.516-1.484Z"
/>
</svg>
)
})
export default SvgChinaIcon
+2 -2
View File
@@ -15,13 +15,13 @@ const SvgCircleIcon = createIcon(props => {
<path
fill="#2A4AF5"
fillRule="evenodd"
d="M10 3.625a6.375 6.375 0 1 0 0 12.75 6.375 6.375 0 0 0 0-12.75ZM10 2.5a7.5 7.5 0 1 0 0 15 7.5 7.5 0 0 0 0-15Z"
d="M10 3.2a6.8 6.8 0 1 0 0 13.6 6.8 6.8 0 0 0 0-13.6ZM10 2a8 8 0 1 0 0 16 8 8 0 0 0 0-16Z"
clipRule="evenodd"
/>
<path
fill="#2A4AF5"
fillRule="evenodd"
d="M10 3a7 7 0 1 0 0 14 7 7 0 0 0 0-14Z"
d="M10 3.2a6.8 6.8 0 1 0 0 13.6 6.8 6.8 0 0 0 0-13.6Z"
clipRule="evenodd"
opacity={0.4}
/>
-25
View File
@@ -1,25 +0,0 @@
import { createIcon } from '../lib/create-icon'
const SvgCodeDataIcon = createIcon(props => {
return (
<svg
{...props}
xmlns="http://www.w3.org/2000/svg"
width={props.width}
height={props.height}
fill="none"
viewBox="0 0 20 20"
focusable={false}
aria-hidden={true}
>
<path
fill={props.color}
fillRule="evenodd"
d="m2.076 9.576 4.5-4.5.848.848L3.348 10l4.076 4.076-.848.848-4.5-4.5L1.65 10l.425-.424Zm15.849 0-4.5-4.5-.849.848L16.652 10l-4.076 4.076.848.848 4.5-4.5.425-.424-.424-.424Z"
clipRule="evenodd"
/>
</svg>
)
})
export default SvgCodeDataIcon
+1 -1
View File
@@ -22,7 +22,7 @@ const SvgCollapseLsIcon = createIcon(props => {
<path
fill={props.color}
fillRule="evenodd"
d="M3.1 10c0-1.619.063-2.852.247-3.8.182-.942.474-1.547.89-1.963.415-.416 1.021-.708 1.963-.89l.028-.005c-.024.17-.05.367-.074.592C6.026 5.086 5.9 6.984 5.9 10c0 3.015.126 4.914.254 6.066.025.225.05.421.074.593l-.028-.006c-.942-.182-1.548-.474-1.963-.89-.416-.416-.708-1.021-.89-1.963-.184-.948-.247-2.181-.247-3.8Zm4.367 6.818a15.737 15.737 0 0 1-.12-.884C7.223 14.836 7.1 12.984 7.1 10s.124-4.836.246-5.934c.043-.382.085-.671.12-.884A31.767 31.767 0 0 1 10 3.1c1.619 0 2.852.063 3.8.247.942.182 1.547.474 1.963.89.416.416.708 1.021.89 1.963.184.948.247 2.181.247 3.8 0 1.619-.063 2.852-.247 3.8-.182.942-.474 1.547-.89 1.963-.416.416-1.021.708-1.963.89-.948.184-2.181.247-3.8.247-.978 0-1.815-.023-2.533-.082ZM10 1.9c-1.631 0-2.96.062-4.028.269-1.074.208-1.937.573-2.584 1.22-.647.646-1.011 1.51-1.22 2.583C1.963 7.039 1.9 8.369 1.9 10c0 1.631.062 2.96.269 4.028.208 1.074.572 1.937 1.22 2.584.646.647 1.509 1.011 2.583 1.22 1.067.206 2.397.268 4.028.268 1.63 0 2.96-.062 4.028-.269 1.074-.208 1.937-.572 2.584-1.22.646-.646 1.011-1.51 1.22-2.583.206-1.067.268-2.397.268-4.028 0-1.631-.062-2.96-.269-4.028-.208-1.074-.573-1.937-1.22-2.584-.646-.646-1.51-1.011-2.583-1.22C12.961 1.963 11.631 1.9 10 1.9Zm1.576 11.024-2.5-2.5L8.65 10l.425-.424 2.5-2.5.848.848L10.948 9.4H15v1.2h-4.052l1.476 1.476-.848.848Z"
d="M3.1 10c0-1.619.063-2.852.247-3.8.182-.942.474-1.547.89-1.963.415-.416 1.021-.708 1.963-.89l.028-.006c-.024.172-.05.368-.074.593C6.026 5.086 5.9 6.984 5.9 10c0 3.015.126 4.914.254 6.066.025.225.05.421.074.593l-.028-.006c-.942-.182-1.548-.474-1.963-.89-.416-.416-.708-1.021-.89-1.963-.184-.948-.247-2.181-.247-3.8Zm4.367 6.818a15.732 15.732 0 0 1-.12-.884C7.223 14.836 7.1 12.984 7.1 10s.124-4.836.246-5.934c.043-.382.085-.671.12-.884A31.766 31.766 0 0 1 10 3.1c1.619 0 2.852.063 3.8.247.942.182 1.547.474 1.963.89.416.416.708 1.021.89 1.963.184.948.247 2.181.247 3.8 0 1.619-.063 2.852-.247 3.8-.182.942-.474 1.547-.89 1.963-.416.416-1.021.708-1.963.89-.948.184-2.181.247-3.8.247-.978 0-1.815-.023-2.533-.082ZM10 1.9c-1.631 0-2.96.062-4.028.269-1.074.208-1.937.573-2.584 1.22-.647.646-1.011 1.51-1.22 2.583C1.963 7.039 1.9 8.369 1.9 10c0 1.631.062 2.96.269 4.028.208 1.074.572 1.937 1.22 2.584.646.646 1.509 1.011 2.583 1.22 1.067.206 2.397.268 4.028.268 1.63 0 2.96-.062 4.028-.269 1.074-.208 1.937-.573 2.584-1.22.646-.646 1.011-1.51 1.22-2.583.206-1.067.268-2.397.268-4.028 0-1.631-.062-2.96-.269-4.028-.208-1.074-.573-1.937-1.22-2.584-.646-.646-1.51-1.011-2.583-1.22C12.961 1.963 11.631 1.9 10 1.9Zm5.348 8.1-.424.424-2.5 2.5-.848-.848 1.476-1.476H9V9.4h4.052l-1.476-1.476.848-.848 2.5 2.5.425.424Z"
clipRule="evenodd"
/>
</svg>
-28
View File
@@ -1,28 +0,0 @@
import { createIcon } from '../lib/create-icon'
const SvgColombiaIcon = createIcon(props => {
return (
<svg
{...props}
xmlns="http://www.w3.org/2000/svg"
width={props.width}
height={props.height}
fill="none"
viewBox="0 0 20 20"
focusable={false}
aria-hidden={true}
>
<path
fill="#FBD116"
d="M17.778 2.778H2.222A2.222 2.222 0 0 0 0 5v5h20V5a2.222 2.222 0 0 0-2.222-2.222Z"
/>
<path fill="#22408C" d="M0 10h20v3.889H0V10Z" />
<path
fill="#CE2028"
d="M0 15c0 1.227.995 2.222 2.222 2.222h15.556A2.222 2.222 0 0 0 20 15v-1.111H0V15Z"
/>
</svg>
)
})
export default SvgColombiaIcon
-25
View File
@@ -1,25 +0,0 @@
import { createIcon } from '../lib/create-icon'
const SvgConnectIcon = createIcon(props => {
return (
<svg
{...props}
xmlns="http://www.w3.org/2000/svg"
width={props.width}
height={props.height}
fill="none"
viewBox="0 0 20 20"
focusable={false}
aria-hidden={true}
>
<path
fill={props.color}
fillRule="evenodd"
d="M15.374 4.626a3.6 3.6 0 0 0-5.091 0L8.867 6.04l.849.849 1.414-1.414a2.4 2.4 0 1 1 3.394 3.394l-1.414 1.414.848.848 1.415-1.414a3.6 3.6 0 0 0 0-5.091Zm-9.9 6.505 1.414-1.414-.848-.848-1.414 1.414a3.6 3.6 0 0 0 5.09 5.091l1.415-1.414-.848-.849-1.415 1.414a2.4 2.4 0 1 1-3.394-3.394Zm2.829 1.415 4.242-4.243-.848-.849-4.243 4.243.849.849Z"
clipRule="evenodd"
/>
</svg>
)
})
export default SvgConnectIcon
+1 -1
View File
@@ -12,7 +12,7 @@ const SvgCorrectIcon = createIcon(props => {
focusable={false}
aria-hidden={true}
>
<circle cx={10} cy={10} r={7} stroke="#23ADA0" strokeWidth={1.2} />
<circle cx={10} cy={10} r={7.5} stroke="#23ADA0" strokeWidth={1.2} />
<path stroke="#23ADA0" strokeWidth={1.2} d="m7.25 10.75 2 1.5 3.5-4.5" />
</svg>
)
+1 -1
View File
@@ -15,7 +15,7 @@ const SvgCrownIcon = createIcon(props => {
<path
fill={props.color}
fillRule="evenodd"
d="M10.425 3.576 10 3.15l-.424.425L6.642 6.51 3.784 4.972 2.9 4.496V10.5c0 2.228.228 3.88 1.395 4.89.578.502 1.333.798 2.258.973.923.175 2.061.237 3.447.237 1.387 0 2.525-.062 3.448-.237.925-.175 1.68-.47 2.258-.972C16.872 14.38 17.1 12.728 17.1 10.5V4.495l-.885.477L13.36 6.51l-2.934-2.934Zm-3.25 4.098L10 4.85l2.826 2.825.316.316.393-.212L15.9 6.505V10.5c0 .985-.051 1.75-.167 2.35a4.905 4.905 0 0 0-.56-.37c-.985-.564-2.593-1.08-5.173-1.08s-4.188.516-5.173 1.08a4.9 4.9 0 0 0-.56.37c-.116-.6-.167-1.364-.167-2.35V6.505l2.366 1.273.393.212.315-.316ZM4.71 14.057c.107.165.23.306.37.427.36.311.886.547 1.696.7.811.153 1.86.216 3.224.216s2.414-.063 3.225-.216c.81-.153 1.336-.389 1.695-.7.14-.121.263-.262.37-.426a3.147 3.147 0 0 0-.713-.537c-.765-.437-2.157-.921-4.577-.921s-3.812.484-4.577.921a3.146 3.146 0 0 0-.713.536Z"
d="M10.425 3.576 10 3.152l-.424.424L6.642 6.51 3.784 4.972 2.9 4.496V10.5c0 2.228.228 3.88 1.395 4.891.578.501 1.333.797 2.258.972.923.175 2.061.237 3.447.237 1.387 0 2.525-.062 3.448-.237.925-.175 1.68-.47 2.258-.972C16.872 14.38 17.1 12.728 17.1 10.5V4.495l-.885.477L13.36 6.51l-2.934-2.934Zm-3.25 4.098L10 4.85l2.826 2.825.316.316.393-.212L15.9 6.505V10.5c0 .986-.051 1.75-.167 2.35a4.905 4.905 0 0 0-.56-.37c-.985-.564-2.593-1.08-5.173-1.08s-4.188.516-5.173 1.08a4.9 4.9 0 0 0-.56.37c-.116-.6-.167-1.364-.167-2.35V6.505l2.366 1.273.393.212.315-.316ZM4.71 14.057c.107.165.23.306.37.427.36.311.886.547 1.696.7.811.154 1.86.216 3.224.216s2.414-.063 3.225-.216c.81-.153 1.336-.389 1.695-.7a2.01 2.01 0 0 0 .37-.426 3.15 3.15 0 0 0-.713-.537c-.765-.437-2.157-.921-4.577-.921s-3.812.484-4.577.921a3.152 3.152 0 0 0-.713.536Z"
clipRule="evenodd"
/>
</svg>
-30
View File
@@ -1,30 +0,0 @@
import { createIcon } from '../lib/create-icon'
const SvgCurrencyIcon = createIcon(props => {
return (
<svg
{...props}
xmlns="http://www.w3.org/2000/svg"
width={props.width}
height={props.height}
fill="none"
viewBox="0 0 20 20"
focusable={false}
aria-hidden={true}
>
<g clipPath="url(#currency-icon_svg__a)">
<path
fill={props.color}
d="m13.21 8.007-.556 1.207H4.782l.434-1.207h7.993Zm-1.039 2.415-.555 1.207H4.782l.434-1.207h6.955Zm2.463-5.675-.58 1.256a5.02 5.02 0 0 0-.814-.604 3.962 3.962 0 0 0-.9-.392 3.483 3.483 0 0 0-.99-.14c-.684 0-1.3.19-1.847.568-.548.379-.98.936-1.298 1.673-.318.736-.477 1.64-.477 2.71s.159 1.974.477 2.71c.318.737.75 1.295 1.298 1.673a3.173 3.173 0 0 0 1.847.567c.354 0 .688-.046 1.002-.138a3.88 3.88 0 0 0 .888-.38c.277-.162.533-.343.766-.544l.604 1.256a4.25 4.25 0 0 1-1.485.905 5.272 5.272 0 0 1-1.775.302c-.99 0-1.867-.258-2.632-.773-.76-.515-1.358-1.247-1.793-2.197-.43-.95-.646-2.077-.646-3.38 0-1.305.215-2.432.646-3.382.435-.95 1.032-1.682 1.793-2.197.765-.515 1.642-.773 2.632-.773.64 0 1.238.111 1.793.332.56.222 1.056.538 1.491.948Z"
/>
</g>
<defs>
<clipPath id="currency-icon_svg__a">
<path fill="#fff" d="M0 0h20v20H0z" />
</clipPath>
</defs>
</svg>
)
})
export default SvgCurrencyIcon
-25
View File
@@ -1,25 +0,0 @@
import { createIcon } from '../lib/create-icon'
const SvgDappsIcon = createIcon(props => {
return (
<svg
{...props}
xmlns="http://www.w3.org/2000/svg"
width={props.width}
height={props.height}
fill="none"
viewBox="0 0 20 20"
focusable={false}
aria-hidden={true}
>
<path
fill={props.color}
fillRule="evenodd"
d="M7.499 2.9A2.6 2.6 0 0 0 4.9 5.5v1h1.2v-1a1.4 1.4 0 0 1 1.399-1.4H10.5c1.37 0 2.716.457 3.713 1.399C15.202 6.433 15.9 7.89 15.9 10c0 2.376-.708 3.819-1.674 4.677-.979.87-2.316 1.223-3.726 1.223H7.499A1.4 1.4 0 0 1 6.1 14.5v-1H4.9v1a2.6 2.6 0 0 0 2.599 2.6H10.5c1.59 0 3.253-.397 4.524-1.527C16.308 14.431 17.1 12.623 17.1 10c0-2.391-.802-4.182-2.063-5.374C13.784 3.443 12.129 2.9 10.5 2.9H7.499ZM3.5 10.6h7V9.4h-7v1.2Z"
clipRule="evenodd"
/>
</svg>
)
})
export default SvgDappsIcon
-25
View File
@@ -1,25 +0,0 @@
import { createIcon } from '../lib/create-icon'
const SvgDatabasesIcon = createIcon(props => {
return (
<svg
{...props}
xmlns="http://www.w3.org/2000/svg"
width={props.width}
height={props.height}
fill="none"
viewBox="0 0 20 20"
focusable={false}
aria-hidden={true}
>
<path
fill={props.color}
fillRule="evenodd"
d="M3.983 5.5c0-.118.06-.298.315-.53.254-.23.657-.467 1.204-.678 1.092-.42 2.64-.692 4.381-.692 1.74 0 3.29.272 4.381.692.548.211.95.447 1.205.679.254.231.314.411.314.529 0 .118-.06.298-.314.53-.255.23-.657.467-1.205.678-1.092.42-2.64.692-4.38.692-1.741 0-3.29-.272-4.382-.692-.547-.21-.95-.447-1.204-.679-.255-.231-.315-.411-.315-.529Zm-1.2 0c0-.572.304-1.05.707-1.417.403-.367.953-.669 1.582-.91 1.26-.486 2.962-.773 4.811-.773 1.85 0 3.55.287 4.812.772.628.242 1.178.544 1.581.911s.707.845.707 1.417v9c0 .572-.304 1.05-.707 1.417-.403.367-.953.67-1.581.91-1.261.486-2.963.773-4.812.773-1.85 0-3.55-.287-4.811-.772-.629-.242-1.179-.544-1.582-.911s-.707-.845-.707-1.417v-9Zm1.2 4.79v1.21c0 .118.06.298.315.53.254.23.657.467 1.204.678 1.092.42 2.64.692 4.381.692 1.74 0 3.29-.272 4.381-.692.548-.21.95-.447 1.205-.679.254-.231.314-.411.314-.529v-1.21a6.026 6.026 0 0 1-1.088.538c-1.261.485-2.963.772-4.812.772-1.85 0-3.55-.287-4.811-.772a6.068 6.068 0 0 1-1.089-.537Zm11.8-1.79c0 .118-.06.298-.314.53-.255.23-.657.467-1.205.678-1.092.42-2.64.692-4.38.692-1.741 0-3.29-.272-4.382-.692-.547-.21-.95-.447-1.204-.679-.255-.231-.315-.411-.315-.529V7.29c.32.205.688.384 1.089.538 1.26.485 2.962.772 4.811.772 1.85 0 3.55-.287 4.812-.772.4-.154.77-.333 1.088-.537V8.5Zm0 4.79a6.026 6.026 0 0 1-1.088.538c-1.261.485-2.963.772-4.812.772-1.85 0-3.55-.287-4.811-.772a6.068 6.068 0 0 1-1.089-.537V14.5c0 .118.06.298.315.53.254.23.657.467 1.204.678 1.092.42 2.64.692 4.381.692 1.74 0 3.29-.272 4.381-.692.548-.21.95-.447 1.205-.679.254-.231.314-.411.314-.529v-1.21Z"
clipRule="evenodd"
/>
</svg>
)
})
export default SvgDatabasesIcon
-23
View File
@@ -1,23 +0,0 @@
import { createIcon } from '../lib/create-icon'
const SvgDiscordIcon = createIcon(props => {
return (
<svg
{...props}
xmlns="http://www.w3.org/2000/svg"
width={props.width}
height={props.height}
fill="none"
viewBox="0 0 20 20"
focusable={false}
aria-hidden={true}
>
<path
fill={props.color}
d="M16.248 3.84a14.66 14.66 0 0 0-3.714-1.168c-.16.29-.347.678-.476.988a13.635 13.635 0 0 0-4.115 0 10.61 10.61 0 0 0-.481-.988 14.612 14.612 0 0 0-3.717 1.17C1.395 7.393.758 10.857 1.076 14.271a14.847 14.847 0 0 0 4.555 2.333c.367-.504.694-1.04.975-1.606a9.592 9.592 0 0 1-1.536-.748c.13-.095.255-.195.377-.298 2.962 1.386 6.18 1.386 9.106 0 .123.103.25.203.377.298a9.558 9.558 0 0 1-1.54.75c.282.563.608 1.101.976 1.606a14.818 14.818 0 0 0 4.558-2.335c.373-3.958-.639-7.39-2.676-10.432ZM7.01 12.17c-.89 0-1.618-.83-1.618-1.84 0-1.012.713-1.843 1.618-1.843.905 0 1.634.83 1.618 1.842.002 1.011-.713 1.841-1.618 1.841Zm5.98 0c-.889 0-1.618-.83-1.618-1.84 0-1.012.713-1.843 1.618-1.843.905 0 1.634.83 1.618 1.842 0 1.011-.713 1.841-1.618 1.841Z"
/>
</svg>
)
})
export default SvgDiscordIcon
-120
View File
@@ -1,120 +0,0 @@
import { createIcon } from '../lib/create-icon'
const SvgDominicanIcon = createIcon(props => {
return (
<svg
{...props}
xmlns="http://www.w3.org/2000/svg"
width={props.width}
height={props.height}
fill="none"
viewBox="0 0 20 20"
focusable={false}
aria-hidden={true}
>
<g clipPath="url(#dominican-icon_svg__a)">
<g clipPath="url(#dominican-icon_svg__b)">
<path
fill="#002D62"
d="M20 15a2.222 2.222 0 0 1-2.222 2.222H2.222A2.222 2.222 0 0 1 0 15V5c0-1.227.995-2.222 2.222-2.222h15.556C19.005 2.778 20 3.773 20 5v10Z"
/>
<path
fill="#DD2E44"
d="M17.778 2.778h-6.667v6.11h8.89V5a2.222 2.222 0 0 0-2.223-2.222Z"
/>
<path
fill="#CE1225"
d="M2.222 17.222H8.89v-6.11H0V15c0 1.227.995 2.222 2.222 2.222Z"
/>
<path
fill="#EEE"
d="M20 8.333h-8.333V2.778H8.333v5.555H0v3.334h8.333v5.555h3.334v-5.555H20V8.333Z"
/>
<path
fill="#002D62"
d="M10.012 8.858H8.947l.186.18v.92h.88v-1.1Zm0 2.187c.142-.154.239-.148.64-.148.213 0 .238-.146.238-.429v-.51h-.878v1.087Z"
/>
<path
fill="#CE1225"
d="M10.012 11.045c-.141-.154-.238-.148-.64-.148-.214 0-.239-.146-.239-.429v-.51h.88v1.087Zm0-2.187h1.064l-.186.18v.92h-.878v-1.1Z"
/>
<path
fill="#fff"
d="M10.164 10.932V8.858H9.86v2.075c.052.018.107.06.152.112a.413.413 0 0 1 .152-.113Z"
/>
<path fill="#fff" d="M9.133 9.802h1.756v.304H9.133v-.304Z" />
<path
fill="#002D62"
d="m10.012 9.753.577-.615v.186l.106-.09v1.029c0 .381-.6.344-.683.168-.083.176-.685.213-.685-.168V9.234l.107.09v-.186l.578.615Z"
/>
<path
fill="#fff"
d="M10.012 10.413c-.277.148-.456.031-.456-.11v-.177c-.107 0-.228-.055-.228-.09v-.152c0 .045.18.087.228.087v-.533l.1.08v-.139l.152.156v.109l-.1-.085v.45c.104 0 .185.061.304.061s.2-.061.304-.061v-.45l-.1.085v-.109l.152-.156v.139l.1-.08v.533c.049 0 .228-.042.228-.087v.152c0 .035-.121.09-.228.09v.177c0 .141-.18.259-.456.11v-.155c.148.086.304.107.304.014v-.11c-.104 0-.185.061-.304.061-.12 0-.2-.062-.304-.062v.11c0 .094.156.073.304-.013v.155Z"
/>
<path
fill="#CE1225"
d="M10.216 9.536v.109l.1-.085v.45c-.104 0-.185.061-.304.061s-.2-.062-.304-.062v-.45l.1.086v-.11l.204.219.204-.218Z"
/>
<path
fill="#CE1225"
d="M9.328 10.037v.226c0 .381.601.344.684.168.082.176.684.213.684-.168v-.226c0 .033-.121.09-.228.09v.176c0 .14-.18.258-.456.11-.277.148-.456.031-.456-.11v-.177c-.107 0-.228-.055-.228-.09Z"
/>
<path
fill="#002D62"
d="M10.243 8.49c.01-.028.021-.068.031-.104a2.177 2.177 0 0 0-.525 0c.01.036.021.076.032.104.006.021-.035.073-.183.064a2.315 2.315 0 0 0-.475.033c.028.041.038.05.035.082-.004.036-.09.07-.237.091-.149.02-.206.174-.257.395a1.01 1.01 0 0 0-.208-.056c.033-.143.148-.469.292-.502-.035-.078-.027-.116.107-.18.145-.067.39-.108.661-.118-.017-.066 0-.092.085-.128.073-.032.188-.056.412-.056.222 0 .338.024.41.056.086.036.103.062.086.128.27.01.516.051.66.119.134.062.143.101.108.18.143.032.259.358.291.5-.056.01-.15.033-.207.057-.051-.22-.109-.374-.258-.395-.148-.021-.233-.055-.237-.091-.004-.032.007-.04.034-.082a2.312 2.312 0 0 0-.474-.033c-.148.009-.189-.043-.183-.064Z"
/>
<path
fill="#996B38"
d="m10.012 9.806.708-.606.015.018-.723.619v-.031Zm0-.068.598-.649.017.018-.615.666v-.035Zm0-.09.475-.654.019.014-.494.682v-.041Zm0 .158L9.305 9.2l-.015.018.722.619v-.031Z"
/>
<path
fill="#996B38"
d="m10.012 9.738-.597-.649-.017.018.614.666v-.035Zm0-.09-.475-.654-.02.014.495.682v-.041Z"
/>
<path
fill="#FFCE46"
d="m10.708 9.191.101-.053-.067.093c-.006.005-.039-.035-.034-.04Zm-.111-.108.095-.065-.056.1c-.006.005-.044-.03-.04-.035Zm-.123-.096.087-.076-.046.106c-.004.007-.045-.024-.041-.03Zm-1.158.204-.102-.053.068.093c.006.005.039-.035.034-.04Zm.11-.108-.094-.065.057.1c.005.005.043-.03.038-.035Zm.124-.096-.087-.076.045.106c.005.007.046-.024.042-.03Z"
/>
<path
fill="#fff"
d="M9.84 9.651c.028-.022.106-.06.153-.036.035-.04.12-.076.166-.053l.097.302c-.027.02-.082.01-.116.03-.01.006-.036.021-.04.032-.017-.007-.055-.003-.082.006-.024.007-.042.033-.07.037L9.84 9.65Z"
/>
<path
fill={props.color}
d="m9.949 9.971-.11-.32V9.65c.03-.024.109-.06.155-.036.032-.039.12-.077.166-.053l.099.303c-.015.012-.035.014-.057.017a.15.15 0 0 0-.06.016c-.013.007-.037.02-.04.03a.183.183 0 0 0-.082.007.096.096 0 0 0-.029.017c-.013.008-.026.017-.042.02Zm-.106-.32.107.317c.014-.003.026-.012.038-.02a.116.116 0 0 1 .03-.018c.025-.008.064-.013.082-.005.002-.01.026-.024.037-.03a.162.162 0 0 1 .065-.018.115.115 0 0 0 .053-.014l-.098-.3c-.042-.022-.126.01-.163.053-.045-.023-.121.012-.151.036Z"
/>
<path
fill="#549334"
d="M10.948 11.267c.09-.001.21.024.249.037a.58.58 0 0 0-.159-.082c.083.013.104.027.16.04.038.012.044.016.046.071 0 .037 0 .086.023.008.021-.07.03-.08-.008-.103a.768.768 0 0 0-.145-.075.885.885 0 0 1 .245.096.41.41 0 0 0-.131-.127.917.917 0 0 1 .204.08.413.413 0 0 0-.136-.128c.095.02.195.052.25.082a.399.399 0 0 0-.192-.154.724.724 0 0 1 .25.071c-.062-.058-.126-.12-.188-.14a.833.833 0 0 1 .212.054.48.48 0 0 0-.25-.122c.066.001.15.007.22.022a.431.431 0 0 0-.205-.06.665.665 0 0 1 .36.022.885.885 0 0 0-.246-.095c.052-.003.128-.015.177-.008a.921.921 0 0 0-.241-.041 2.7 2.7 0 0 1 .274-.063 1.61 1.61 0 0 0-.346.018c.122-.104.211-.104.29-.117.08-.014.139-.031.057-.04-.054-.005-.097-.01-.134-.01.086-.026.195-.08.231-.1.036-.02.124-.083.03-.04-.096.043-.232.05-.355.064a.336.336 0 0 0-.127.035 3.41 3.41 0 0 1 .22-.117c.078-.037.06-.05.13.028.032.038.03 0-.013-.1-.034-.076-.064-.04-.139-.01a.99.99 0 0 0-.104.048c.043-.052.193-.225.217-.254.027-.03.067.005.118.037.049.034.032.002-.015-.052-.047-.053-.07-.062-.1-.035-.03.026-.18.12-.265.2.153-.145.331-.309.372-.355-.088.047-.167.1-.237.155.024-.035.069-.1.092-.127-.036.024-.085.05-.112.076.04-.073.084-.14.09-.152.01-.02.02-.024.034-.025l.078-.006c.044-.004.027-.013.008-.018-.124-.032-.119-.018-.146.008a.83.83 0 0 0-.076.09c.031-.097.124-.186.14-.214a.568.568 0 0 0-.183.14c.044-.072.182-.18.224-.224a.588.588 0 0 0-.157.09c.023-.04.045-.083.065-.126a.528.528 0 0 0-.173.185l.018-.066c.025-.048.091-.113.126-.15.035-.039.043-.05.141.013a.365.365 0 0 0-.05-.097c-.029-.042-.042-.024-.081.008-.022.017-.042.042-.08.076.042-.11.091-.226.117-.301a.815.815 0 0 0-.17.269c.004-.076.045-.232.038-.311a.48.48 0 0 0-.086.195c-.002-.083-.003-.187-.024-.247.007.052-.047.17-.06.253-.034-.079-.07-.155-.092-.208.002.041.014.136.031.249-.027-.087-.128-.177-.131-.245-.003.1.07.269.077.317.001.016.007.04.013.066-.035-.056-.117-.156-.139-.221 0 .04.016.113.024.158-.044-.04-.074-.017-.147.122.023-.007.051-.038.072-.052.02-.014.04-.029.062.007.028.045.103.15.143.283-.011-.038-.08-.128-.105-.168l.026.118a.92.92 0 0 0-.093-.192c-.002.045.031.172.036.225a1.767 1.767 0 0 0-.058-.121.934.934 0 0 1 .03.227 1.375 1.375 0 0 0-.08-.124.993.993 0 0 1 .036.215.528.528 0 0 0-.025-.045c-.034-.056-.057.045-.078.096-.02.052-.01.045.014.01.036-.056.032-.049.053.011.013.036.05.12.081.232-.03-.049-.072-.114-.094-.162-.023-.049-.024-.046 0 .05.016.063.055.18.039.304a3.415 3.415 0 0 0-.083-.258c.005.054.011.156.011.2a.222.222 0 0 0-.046-.062c.023.073.028.2.028.278a.526.526 0 0 0-.046-.127 1.41 1.41 0 0 0 .028.253.575.575 0 0 0-.05-.132.631.631 0 0 1-.003.24.453.453 0 0 0-.027-.105c-.005.032-.013.126-.036.167a.452.452 0 0 0 .009-.15.857.857 0 0 1-.066.176.785.785 0 0 0 .023-.147c-.008.036-.032.066-.045.097a.584.584 0 0 0 .006-.114.68.68 0 0 1-.114.217.56.56 0 0 0 .034-.19c-.044.079-.048.112-.119.206a.275.275 0 0 0 .023-.18.807.807 0 0 1-.065.14.523.523 0 0 1 .016-.186c-.03.02-.072.08-.072.124a.257.257 0 0 0-.055-.113c.023.154.014.288-.078.35-.207.136-.382.436-.635.548.018.01.06.045.08.07.242-.107.405-.348.592-.482.089-.048.293.06.518 0 .086-.021.255.029.33.06-.035-.049-.103-.088-.225-.111Z"
/>
<path
fill="#549334"
d="M9.208 11.11a.971.971 0 0 1 .246.01c-.06-.023-.021-.166-.094-.22.074.035.106.023.145.03l.014.003a.136.136 0 0 1 .018-.082c.01.038.051.046.087.074l.019.016c.001-.045.066-.104.074-.134.013.04.05.069.063.125.035.146-.079.176-.037.28.206.136.39.406.643.519a.411.411 0 0 0-.08.069c-.335-.148-.551-.578-.858-.599l-.023.01c-.076.036-.147.064-.215.05a.298.298 0 0 0-.183.033c.085-.132.129-.17.181-.183a.289.289 0 0 1-.193.003c-.038.092-.127.118-.206.128-.08.011-.138.043-.163.087a.295.295 0 0 1 .006-.13.428.428 0 0 0-.127.003c.048-.019.09-.152.206-.169a.211.211 0 0 1-.057-.054c.028.016.052-.002.102-.015a.366.366 0 0 1 .102-.011.201.201 0 0 1-.076-.114c-.036.108-.154.137-.223.142-.084.006-.123.033-.139.056 0-.051.017-.093.036-.12a.4.4 0 0 0-.084.01.22.22 0 0 1 .095-.152c-.05-.012-.12-.101-.124-.164.04.046.204-.002.284.087a.226.226 0 0 1-.082-.16c.018.025.058.026.097.048-.054-.195-.19-.152-.27-.214-.102-.08-.06-.218-.142-.284a.37.37 0 0 1 .09.009.534.534 0 0 1-.016-.176c.02.062.089.054.132.115a.092.092 0 0 0 .008-.051c.031.037.06.07.079.104-.006-.066.02-.104.04-.122a.29.29 0 0 0 .032.132c.026.052.036.11.017.206-.018.09.018.159.065.225a.701.701 0 0 0-.013-.19.352.352 0 0 1-.006-.165.28.28 0 0 0 .075.102c.009.009.015.02.02.034l.026-.064c.01-.03-.133-.083-.125-.245-.097-.054-.184-.126-.208-.255.01.01.03.019.053.027-.053-.079-.067-.18-.048-.23.013.042.055.053.1.085.012-.086-.08-.148-.077-.231.003-.131.072-.133.096-.215.019.03.033.058.043.088.015-.055.082-.097.083-.138.034.05.06.106.041.163a.156.156 0 0 1 .126.016c-.085.016-.08.117-.135.144-.056.026-.16.098-.134.208a.39.39 0 0 1 .085.203.195.195 0 0 1 .043.06.402.402 0 0 0 .036-.083c-.005-.043-.062-.091-.078-.133-.02-.057.03-.142.01-.218a.23.23 0 0 1 .106.07c.026-.06.075-.099.076-.2a.67.67 0 0 1 .049.126.304.304 0 0 1 .15-.108c-.04.069-.026.137-.028.194-.001.057-.003.152-.086.216-.083.064-.104.081-.122.243.035-.076.119-.135.122-.176.017.073.031.128.029.178.028-.033.078-.052.137-.054-.042.048-.073.236-.184.258-.11.023-.154.134-.184.18-.038.057-.047.101-.01.177a.386.386 0 0 1 .03-.165c.037-.073.116-.104.121-.155.01.054.016.098.014.134.055-.113.173-.08.205-.113a.295.295 0 0 0-.057.132.213.213 0 0 1-.122.148c-.051.024-.096.028-.122.08-.007.032.02.058.02.105a.11.11 0 0 1 .015-.044c.032-.046.053-.08.053-.106.069.07.084.137.062.21-.022.073-.04.131.006.19a.269.269 0 0 0 .087.048c.036-.037-.007-.082-.048-.125-.042-.043-.038-.144-.004-.186.035-.043.065-.087.063-.124a.265.265 0 0 1 .061.085.16.16 0 0 1 .06-.08c.005.061.044.089.044.155a.151.151 0 0 1 .087-.087c-.009.033.022.084.026.116a.169.169 0 0 1-.012.084.16.16 0 0 1-.085.092c-.016.007-.04.015-.066.027.06-.008.166.011.19.055-.043-.016-.138.019-.185.038Z"
/>
<path
fill="#CE1225"
d="M10.067 11.493c-.011-.01-.028-.015-.055-.015s-.043.005-.054.015c-.109-.037-.18-.021-.18.013v.104c0 .018.04.04.188.005a.079.079 0 0 0 .046.012.077.077 0 0 0 .048-.014v.001c.148.036.188.013.188-.005v-.104c0-.034-.07-.051-.181-.012Z"
/>
<path
fill="#CE1225"
d="M10.237 11.488a.444.444 0 0 1 .132.03 1.187 1.187 0 0 0-.016.126.317.317 0 0 0-.115-.04v-.116Zm-.447 0a.447.447 0 0 0-.132.03c.005.024.016.107.016.126a.315.315 0 0 1 .115-.04v-.116Z"
/>
<path
fill="#CE1225"
d="M10.012 11.38c.316 0 .569.02.77.063-.024.019-.046.044-.062.056-.018.015-.011.059.03.096a.246.246 0 0 0 .244.023l.057-.025c-.028.024-.051.055-.039.085.06.133.289-.042.425.125a2.5 2.5 0 0 1 .167-.18c-.078-.094-.186-.079-.276-.071.033-.054.036-.095-.035-.146-.03-.022-.13-.018-.222.024.017-.044.014-.115-.13-.178-.217-.098-.586-.118-.928-.118-.342 0-.712.02-.93.118-.143.063-.146.134-.128.178-.094-.042-.193-.046-.223-.024-.071.05-.067.092-.034.146-.09-.008-.199-.023-.277.071.038.037.13.134.166.18.137-.167.366.008.425-.125.013-.03-.01-.061-.038-.085l.057.025c.1.044.203.013.244-.023.041-.037.048-.08.03-.096-.017-.012-.037-.037-.063-.056a3.81 3.81 0 0 1 .77-.062Z"
/>
</g>
</g>
<defs>
<clipPath id="dominican-icon_svg__a">
<path fill="#fff" d="M0 0h20v20H0z" />
</clipPath>
<clipPath id="dominican-icon_svg__b">
<path fill="#fff" d="M0 0h20v20H0z" />
</clipPath>
</defs>
</svg>
)
})
export default SvgDominicanIcon
-27
View File
@@ -1,27 +0,0 @@
import { createIcon } from '../lib/create-icon'
const SvgEnglandIcon = createIcon(props => {
return (
<svg
{...props}
xmlns="http://www.w3.org/2000/svg"
width={props.width}
height={props.height}
fill="none"
viewBox="0 0 20 20"
focusable={false}
aria-hidden={true}
>
<path
fill="#EEE"
d="M17.778 2.778H2.222A2.222 2.222 0 0 0 0 5v10c0 1.227.995 2.222 2.222 2.222h15.556A2.222 2.222 0 0 0 20 15V5a2.222 2.222 0 0 0-2.222-2.222Z"
/>
<path
fill="#CE1124"
d="M11.667 2.778H8.333v5.555H0v3.334h8.333v5.555h3.334v-5.555H20V8.333h-8.333V2.778Z"
/>
</svg>
)
})
export default SvgEnglandIcon
-25
View File
@@ -1,25 +0,0 @@
import { createIcon } from '../lib/create-icon'
const SvgEpicsIcon = createIcon(props => {
return (
<svg
{...props}
xmlns="http://www.w3.org/2000/svg"
width={props.width}
height={props.height}
fill="none"
viewBox="0 0 20 20"
focusable={false}
aria-hidden={true}
>
<path
fill={props.color}
fillRule="evenodd"
d="M5.37 2.664c-.186-.047-.453-.064-.87-.064s-.685.016-.873.062c-.162.04-.222.09-.265.15-.062.086-.137.26-.19.634-.05.368-.072.867-.072 1.554s.021 1.186.073 1.554c.052.374.127.548.189.633.043.06.103.111.265.15.188.047.456.063.873.063s.684-.018.87-.064c.162-.04.223-.092.268-.155.062-.087.138-.262.19-.635.051-.367.072-.864.072-1.546s-.02-1.179-.072-1.546c-.052-.373-.128-.549-.19-.635-.045-.063-.106-.115-.268-.155Zm1.646.624c.044.315.068.684.078 1.112h.694c.439 0 .827 0 1.14.042.338.045.677.15.953.427.277.276.381.615.427.954.042.312.042.7.042 1.139V9.4h2.053c.007-.879.033-1.598.088-2.185.066-.705.18-1.273.392-1.709.23-.47.569-.774 1.02-.938.408-.147.878-.168 1.347-.168.472 0 .943.023 1.351.174.452.167.79.475 1.018.946.211.437.325 1.005.39 1.709.068.713.091 1.621.091 2.771s-.023 2.058-.09 2.771c-.067.704-.18 1.272-.392 1.71-.228.47-.565.778-1.017.945-.408.151-.88.174-1.35.174-.47 0-.94-.02-1.347-.168-.452-.164-.792-.468-1.021-.938-.212-.436-.326-1.004-.392-1.71a26.543 26.543 0 0 1-.088-2.184H10.35v2.438c0 .439 0 .827-.042 1.14-.046.338-.15.677-.427.953-.276.277-.615.381-.954.427-.312.042-.7.042-1.14.042h-.692c-.01.428-.034.797-.078 1.112-.062.448-.174.85-.403 1.17-.247.343-.582.526-.951.618-.345.086-.745.1-1.162.1-.415 0-.814-.013-1.158-.096-.369-.09-.705-.27-.953-.614-.23-.32-.342-.722-.405-1.17-.063-.454-.084-1.022-.084-1.72s.021-1.266.084-1.72c.063-.448.175-.85.405-1.17.248-.343.584-.523.953-.614.344-.083.743-.096 1.158-.096.417 0 .817.014 1.162.1.37.092.704.275.95.619.23.32.342.722.404 1.17.044.314.068.683.078 1.111h.656c.488 0 .794-.001 1.017-.031.206-.028.25-.07.266-.086.016-.016.058-.06.086-.266.03-.223.03-.529.03-1.017V7c0-.488 0-.794-.03-1.017-.028-.206-.07-.25-.086-.266-.017-.016-.06-.058-.266-.086-.223-.03-.529-.031-1.017-.031h-.656c-.01.428-.034.797-.078 1.112-.062.447-.174.85-.403 1.17-.247.343-.582.525-.951.618-.345.086-.745.1-1.162.1-.415 0-.814-.013-1.158-.097-.369-.09-.705-.27-.953-.613-.23-.32-.342-.722-.405-1.17C1.921 6.266 1.9 5.698 1.9 5s.021-1.266.084-1.72c.063-.448.175-.851.405-1.17.248-.344.584-.523.953-.614.344-.084.743-.096 1.158-.096.417 0 .817.014 1.162.1.37.092.704.275.95.619.23.32.342.721.404 1.169ZM15.25 5.6c.466 0 .746.03.935.1.146.054.254.137.354.343.116.24.214.635.276 1.298.062.655.085 1.517.085 2.659s-.023 2.004-.085 2.659c-.062.663-.16 1.058-.276 1.298-.1.207-.208.29-.354.344-.19.07-.468.099-.935.099-.468 0-.748-.027-.938-.096-.146-.053-.252-.134-.35-.336-.116-.237-.214-.63-.276-1.296-.062-.655-.086-1.522-.086-2.672 0-1.15.024-2.016.086-2.672.062-.665.16-1.059.276-1.296.098-.202.204-.283.35-.336.19-.068.47-.096.938-.096Zm-10.75 7c.417 0 .684.017.87.064.162.04.223.092.268.155.062.087.138.262.19.635.051.367.072.864.072 1.546s-.02 1.179-.072 1.546c-.052.373-.128.548-.19.635-.045.063-.106.115-.268.155-.186.047-.453.064-.87.064s-.685-.016-.873-.062c-.162-.04-.222-.09-.265-.15-.062-.086-.137-.26-.19-.634-.05-.368-.072-.867-.072-1.554s.021-1.186.073-1.554c.052-.374.127-.548.189-.633.043-.06.103-.111.265-.15.188-.047.456-.063.873-.063Z"
clipRule="evenodd"
/>
</svg>
)
})
export default SvgEpicsIcon
@@ -1,27 +0,0 @@
import { createIcon } from '../lib/create-icon'
const SvgEuropeanUnionIcon = createIcon(props => {
return (
<svg
{...props}
xmlns="http://www.w3.org/2000/svg"
width={props.width}
height={props.height}
fill="none"
viewBox="0 0 20 20"
focusable={false}
aria-hidden={true}
>
<path
fill="#039"
d="M17.778 2.778H2.222A2.222 2.222 0 0 0 0 5v10c0 1.227.995 2.222 2.222 2.222h15.556A2.222 2.222 0 0 0 20 15V5a2.222 2.222 0 0 0-2.222-2.222Z"
/>
<path
fill="#FC0"
d="m10.3 5.392.471-.343h-.583l-.18-.555-.18.555h-.583l.472.343-.181.554.472-.343.471.343-.18-.554Zm0 9.63.471-.344h-.583l-.18-.554-.18.554h-.583l.472.343-.181.554.472-.342.471.342-.18-.554Zm-4.815-4.816.472-.343h-.584l-.18-.554-.18.554H4.43l.472.343-.18.555.471-.343.472.343-.18-.555Zm.615-2.38.472-.343h-.584l-.18-.555-.18.555h-.583l.472.343-.18.554.471-.343.472.343-.18-.555Zm0 4.788.472-.343h-.584l-.18-.554-.18.554h-.583l.472.343-.18.554.471-.342.472.342-.18-.554Zm1.792-6.577.472-.343H7.78l-.18-.555-.18.555h-.583l.472.343-.18.554.471-.343.472.343-.18-.554Zm0 8.37.472-.343H7.78l-.18-.554-.18.554h-.583l.472.343-.18.555.471-.343.472.343-.18-.555Zm6.623-4.2-.472-.344h.584l.18-.554.18.554h.583l-.472.343.18.555-.471-.343-.472.343.18-.555ZM13.9 7.824l-.472-.342h.584l.18-.555.18.555h.583l-.472.343.18.554-.471-.343-.472.343.18-.555Zm0 4.789-.472-.343h.584l.18-.554.18.554h.583l-.472.343.18.554-.471-.342-.472.342.18-.554Zm-1.792-6.577-.472-.343h.583l.18-.555.18.555h.584l-.472.343.18.554-.472-.343-.471.343.18-.554Zm0 8.37-.472-.343h.583l.18-.554.18.554h.584l-.472.343.18.555-.472-.343-.471.343.18-.555Z"
/>
</svg>
)
})
export default SvgEuropeanUnionIcon
+1 -1
View File
@@ -22,7 +22,7 @@ const SvgExpandLsIcon = createIcon(props => {
<path
fill={props.color}
fillRule="evenodd"
d="M3.1 10c0-1.619.063-2.852.247-3.8.182-.942.474-1.547.89-1.963.415-.416 1.021-.708 1.963-.89l.028-.006c-.024.172-.05.368-.074.593C6.026 5.086 5.9 6.984 5.9 10c0 3.015.126 4.914.254 6.066.025.225.05.421.074.593l-.028-.006c-.942-.182-1.548-.474-1.963-.89-.416-.416-.708-1.021-.89-1.963-.184-.948-.247-2.181-.247-3.8Zm4.367 6.818a15.732 15.732 0 0 1-.12-.884C7.223 14.836 7.1 12.984 7.1 10s.124-4.836.246-5.934c.043-.382.085-.671.12-.884A31.766 31.766 0 0 1 10 3.1c1.619 0 2.852.063 3.8.247.942.182 1.547.474 1.963.89.416.416.708 1.021.89 1.963.184.948.247 2.181.247 3.8 0 1.619-.063 2.852-.247 3.8-.182.942-.474 1.547-.89 1.963-.416.416-1.021.708-1.963.89-.948.184-2.181.247-3.8.247-.978 0-1.815-.023-2.533-.082ZM10 1.9c-1.631 0-2.96.062-4.028.269-1.074.208-1.937.573-2.584 1.22-.647.646-1.011 1.51-1.22 2.583C1.963 7.039 1.9 8.369 1.9 10c0 1.631.062 2.96.269 4.028.208 1.074.572 1.937 1.22 2.584.646.646 1.509 1.011 2.583 1.22 1.067.206 2.397.268 4.028.268 1.63 0 2.96-.062 4.028-.269 1.074-.208 1.937-.573 2.584-1.22.646-.646 1.011-1.51 1.22-2.583.206-1.067.268-2.397.268-4.028 0-1.631-.062-2.96-.269-4.028-.208-1.074-.573-1.937-1.22-2.584-.646-.646-1.51-1.011-2.583-1.22C12.961 1.963 11.631 1.9 10 1.9Zm5.348 8.1-.424.424-2.5 2.5-.848-.848 1.476-1.476H9V9.4h4.052l-1.476-1.476.848-.848 2.5 2.5.425.424Z"
d="M3.1 10c0-1.619.063-2.852.247-3.8.182-.942.474-1.547.89-1.963.415-.416 1.021-.708 1.963-.89l.028-.005c-.024.17-.05.367-.074.592C6.026 5.086 5.9 6.984 5.9 10c0 3.015.126 4.914.254 6.066.025.225.05.421.074.593l-.028-.006c-.942-.182-1.548-.474-1.963-.89-.416-.416-.708-1.021-.89-1.963-.184-.948-.247-2.181-.247-3.8Zm4.367 6.818a15.737 15.737 0 0 1-.12-.884C7.223 14.836 7.1 12.984 7.1 10s.124-4.836.246-5.934c.043-.382.085-.671.12-.884A31.767 31.767 0 0 1 10 3.1c1.619 0 2.852.063 3.8.247.942.182 1.547.474 1.963.89.416.416.708 1.021.89 1.963.184.948.247 2.181.247 3.8 0 1.619-.063 2.852-.247 3.8-.182.942-.474 1.547-.89 1.963-.416.416-1.021.708-1.963.89-.948.184-2.181.247-3.8.247-.978 0-1.815-.023-2.533-.082ZM10 1.9c-1.631 0-2.96.062-4.028.269-1.074.208-1.937.573-2.584 1.22-.647.646-1.011 1.51-1.22 2.583C1.963 7.039 1.9 8.369 1.9 10c0 1.631.062 2.96.269 4.028.208 1.074.572 1.937 1.22 2.584.646.647 1.509 1.011 2.583 1.22 1.067.206 2.397.268 4.028.268 1.63 0 2.96-.062 4.028-.269 1.074-.208 1.937-.572 2.584-1.22.646-.646 1.011-1.51 1.22-2.583.206-1.067.268-2.397.268-4.028 0-1.631-.062-2.96-.269-4.028-.208-1.074-.573-1.937-1.22-2.584-.646-.646-1.51-1.011-2.583-1.22C12.961 1.963 11.631 1.9 10 1.9Zm1.576 11.024-2.5-2.5L8.65 10l.425-.424 2.5-2.5.848.848L10.948 9.4H15v1.2h-4.052l1.476 1.476-.848.848Z"
clipRule="evenodd"
/>
</svg>
+1 -1
View File
@@ -15,7 +15,7 @@ const SvgFeedIcon = createIcon(props => {
<path
fill={props.color}
fillRule="evenodd"
d="M10 3.6a6.4 6.4 0 0 0-5.424 9.8 5.6 5.6 0 1 1 10.848 0A6.4 6.4 0 0 0 10 3.6ZM2.4 10a7.6 7.6 0 1 1 15.2 0 7.6 7.6 0 0 1-15.2 0ZM10 7.6a4.4 4.4 0 0 0-3.55 7 3.6 3.6 0 1 1 7.1 0 4.4 4.4 0 0 0-3.55-7Zm0 8.8a2.4 2.4 0 1 0 0-4.8 2.4 2.4 0 0 0 0 4.8Z"
d="M10 3.1a6.9 6.9 0 0 0-5.888 10.499 6.1 6.1 0 1 1 11.777 0A6.9 6.9 0 0 0 10 3.1Zm4.023 11.7a4.1 4.1 0 1 0-8.044 0 4.9 4.9 0 1 1 8.044 0Zm-4.061 2.1a2.9 2.9 0 1 1 .078 0h-.078ZM10 18.1h.07a8.1 8.1 0 1 0-.07 0Z"
clipRule="evenodd"
/>
</svg>
-32
View File
@@ -1,32 +0,0 @@
import { createIcon } from '../lib/create-icon'
const SvgFirmwareIcon = createIcon(props => {
return (
<svg
{...props}
xmlns="http://www.w3.org/2000/svg"
width={props.width}
height={props.height}
fill="none"
viewBox="0 0 20 20"
focusable={false}
aria-hidden={true}
>
<g clipPath="url(#firmware-icon_svg__a)">
<path
fill={props.color}
fillRule="evenodd"
d="M10.6.5v1.906c.646.014 1.246.052 1.8.122V1h1.2v1.748c.977.248 1.77.649 2.387 1.265.668.668 1.083 1.545 1.324 2.637H19v1.2h-1.499c.052.483.081 1 .093 1.55H19.5v1.2h-1.906a16.664 16.664 0 0 1-.156 2.05H19v1.2h-1.816c-.251.863-.635 1.574-1.197 2.137-.616.616-1.41 1.017-2.387 1.265V19h-1.2v-1.528c-.554.07-1.154.108-1.8.122V19.5H9.4v-1.906a17.558 17.558 0 0 1-1.8-.122V19H6.4v-1.748c-.977-.248-1.77-.649-2.387-1.265-.563-.563-.946-1.274-1.197-2.137H1v-1.2h1.562a16.652 16.652 0 0 1-.156-2.05H.5V9.4h1.906c.012-.55.041-1.067.093-1.55H1v-1.2h1.69c.24-1.092.655-1.969 1.323-2.637.616-.616 1.41-1.017 2.387-1.265V1h1.2v1.528c.554-.07 1.154-.108 1.8-.122V.5h1.2Zm-7 9.5c0-2.743.387-4.263 1.262-5.138S7.257 3.6 10 3.6s4.263.387 5.138 1.262S16.4 7.257 16.4 10s-.387 4.263-1.262 5.138S12.743 16.4 10 16.4s-4.263-.387-5.138-1.262S3.6 12.743 3.6 10Zm3-.4c0-.77.032-1.329.12-1.747.086-.407.214-.628.372-.772.164-.15.429-.278.91-.364C8.488 6.632 9.132 6.6 10 6.6c.87 0 1.51.032 1.99.122.475.09.734.226.898.39.164.164.3.423.39.898.09.48.122 1.12.122 1.99 0 .87-.032 1.51-.122 1.99-.09.475-.226.734-.39.898-.164.164-.423.3-.897.39-.48.09-1.12.122-1.991.122-.872 0-1.508-.032-1.984-.127-.466-.094-.721-.236-.887-.416-.17-.186-.313-.485-.405-1.025-.092-.542-.124-1.26-.124-2.232ZM10 5.4c-.88 0-1.612.03-2.206.136-.596.105-1.112.295-1.51.658-.406.369-.62.854-.738 1.412C5.43 8.154 5.4 8.82 5.4 9.6c0 .979.03 1.785.141 2.434.111.65.313 1.208.705 1.634.397.433.923.659 1.535.781.602.12 1.34.151 2.219.151.88 0 1.615-.03 2.213-.143.603-.114 1.125-.322 1.524-.72.398-.399.606-.92.72-1.524.112-.598.143-1.333.143-2.213 0-.88-.03-1.615-.143-2.213-.114-.603-.322-1.125-.72-1.524-.399-.398-.92-.606-1.524-.72C11.615 5.431 10.88 5.4 10 5.4Z"
clipRule="evenodd"
/>
</g>
<defs>
<clipPath id="firmware-icon_svg__a">
<path fill="#fff" d="M0 0h20v20H0z" />
</clipPath>
</defs>
</svg>
)
})
export default SvgFirmwareIcon
+1 -1
View File
@@ -15,7 +15,7 @@ const SvgFocusIcon = createIcon(props => {
<path
fill={props.color}
fillRule="evenodd"
d="M3.6 10a6.4 6.4 0 1 1 12.8 0 6.4 6.4 0 0 1-12.8 0ZM10 2.4a7.6 7.6 0 1 0 0 15.2 7.6 7.6 0 0 0 0-15.2ZM6.6 10a3.4 3.4 0 1 1 6.8 0 3.4 3.4 0 0 1-6.8 0ZM10 5.4a4.6 4.6 0 1 0 0 9.2 4.6 4.6 0 0 0 0-9.2Z"
d="M6.55 4.023A6.868 6.868 0 0 1 10 3.1a6.908 6.908 0 0 1 5.976 3.45 6.9 6.9 0 0 1-2.525 9.426 6.87 6.87 0 0 1-3.45.924 6.869 6.869 0 0 1-3.451-.923v-.001a6.9 6.9 0 0 1 0-11.952Zm8.654 12.185A8.1 8.1 0 1 1 4.797 3.792a8.1 8.1 0 0 1 10.407 12.416ZM10 6.6a3.4 3.4 0 1 0 0 6.8 3.4 3.4 0 0 0 0-6.8ZM5.4 10a4.6 4.6 0 1 1 9.2 0 4.6 4.6 0 0 1-9.2 0Z"
clipRule="evenodd"
/>
</svg>
-28
View File
@@ -1,28 +0,0 @@
import { createIcon } from '../lib/create-icon'
const SvgFranceIcon = createIcon(props => {
return (
<svg
{...props}
xmlns="http://www.w3.org/2000/svg"
width={props.width}
height={props.height}
fill="none"
viewBox="0 0 20 20"
focusable={false}
aria-hidden={true}
>
<path
fill="#ED2939"
d="M20 15a2.222 2.222 0 0 1-2.222 2.222h-4.445V2.778h4.445C19.005 2.778 20 3.773 20 5v10Z"
/>
<path
fill="#002495"
d="M2.222 2.778A2.222 2.222 0 0 0 0 5v10c0 1.227.995 2.222 2.222 2.222h4.445V2.778H2.222Z"
/>
<path fill="#EEE" d="M6.667 2.778h6.666v14.444H6.667V2.778Z" />
</svg>
)
})
export default SvgFranceIcon
File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -15,7 +15,7 @@ const SvgGlobeIcon = createIcon(props => {
<path
fill={props.color}
fillRule="evenodd"
d="M4.726 6.373A6.396 6.396 0 0 1 9.4 3.628v1.001l-1.669.834-.196.099-.087.202-.643 1.5-2.079-.891ZM3.6 10c0-.915.192-1.786.538-2.574l2.195.94-.385.898-.066.154.024.167.5 3.5.044.311.281.14 2 1 .869.435V11.7l1.38-1.84.458-.61-.702-.301-2.828-1.212.557-1.299 1.803-.901.332-.166V3.628a6.367 6.367 0 0 1 3.278 1.28l-1.84 2.208-.35.42.387.388 1.695 1.694-.807 1.614-.323.646.695.199 2.435.696A6.4 6.4 0 0 1 3.6 10Zm12.587 1.644A6.413 6.413 0 0 0 16.4 10c0-1.644-.62-3.143-1.639-4.277l-1.45 1.74 1.613 1.613.306.306-.194.386-.676 1.354 1.827.522ZM2.4 10a7.6 7.6 0 1 1 15.2 0 7.6 7.6 0 0 1-15.2 0Zm5.036-1.16-.318.742.431 3.022.85.425V11.3l.12-.16 1.043-1.39-2.126-.91Z"
d="M4.258 6.172A6.896 6.896 0 0 1 9.4 3.126v1.503l-1.668.834-.197.099-.087.202-.642 1.5-2.548-1.092ZM3.1 10c0-.985.206-1.923.579-2.77l2.654 1.137-.385.897-.066.154.024.167.5 3.5.044.311.282.14 2 1 .868.435V11.7l1.38-1.84.458-.612-.702-.3-2.828-1.212.557-1.299 1.803-.901.332-.166V3.126a6.865 6.865 0 0 1 3.599 1.398l-2.16 2.592-.35.42.387.388L13.77 9.62l-.807 1.613-.323.646.695.199 2.922.835A6.901 6.901 0 0 1 3.1 10Zm13.568 1.781A6.91 6.91 0 0 0 16.9 10a6.875 6.875 0 0 0-1.815-4.664l-1.773 2.127 1.612 1.613.306.306-.193.386-.677 1.354 2.308.66ZM1.9 10a8.1 8.1 0 1 1 16.2 0 8.1 8.1 0 0 1-16.2 0Zm5.536-1.16-.318.742.431 3.022.851.425V11.3l.12-.16 1.042-1.39-2.126-.91Z"
clipRule="evenodd"
/>
</svg>
+1 -1
View File
@@ -14,7 +14,7 @@ const SvgHeartIcon = createIcon(props => {
>
<path
fill={props.color}
d="m10 16.517-.253.544.253.117.253-.117-.253-.544ZM3 7.534l.598.054L3 7.534Zm14 0-.598.046v.008L17 7.534Zm-7-2.017-.345.49.343.241.344-.238L10 5.517Zm0 11 .253-.544-.003-.002a1.327 1.327 0 0 0-.07-.034c-.051-.024-.127-.063-.225-.113a17.45 17.45 0 0 1-3.252-2.191c-1.77-1.523-3.328-3.594-3.105-6.045l-1.196-.109c-.277 3.05 1.665 5.47 3.52 7.064a18.654 18.654 0 0 0 3.73 2.472l.068.033.02.009.005.003h.001l.254-.543Zm0 0a78.263 78.263 0 0 0 .254.543h.001l.006-.003.019-.009a7.928 7.928 0 0 0 .318-.16 18.659 18.659 0 0 0 3.48-2.346c1.855-1.593 3.797-4.013 3.52-7.063l-1.195.109c.222 2.45-1.336 4.522-3.107 6.045A17.453 17.453 0 0 1 9.75 15.97l-.003.002.253.544Zm7.598-9.03c-.132-1.723-.672-2.867-1.55-3.506-.869-.633-1.924-.662-2.844-.492-.927.17-1.816.56-2.457.893a12.187 12.187 0 0 0-1.081.636l-.005.004h-.002v.001l.341.494.342.493.002-.002a.678.678 0 0 1 .059-.04l.193-.122c.168-.104.411-.247.704-.4.593-.307 1.36-.637 2.121-.777.767-.142 1.431-.074 1.921.282.482.351.942 1.09 1.06 2.629l1.196-.092Zm-14 .101c.14-1.538.608-2.282 1.098-2.636.495-.358 1.158-.424 1.917-.283.754.14 1.512.469 2.098.777a10.684 10.684 0 0 1 .944.562L10 5.517l.345-.491-.002-.002c-.002 0-.003-.002-.005-.003a1.632 1.632 0 0 0-.077-.052 11.88 11.88 0 0 0-.992-.585c-.635-.334-1.515-.724-2.437-.895-.917-.17-1.967-.14-2.84.491-.879.636-1.433 1.776-1.59 3.5l1.196.108Z"
d="m10 16.517-.253.544.253.117.253-.117-.253-.544ZM3 7.534l.598.054L3 7.534Zm14 0-.598.046v.008L17 7.534Zm-7-2.017-.345.49.343.241.344-.238L10 5.517Zm0 11 .253-.544-.003-.002a1.327 1.327 0 0 0-.07-.034c-.051-.024-.127-.063-.225-.113a17.45 17.45 0 0 1-3.252-2.191c-1.77-1.523-3.328-3.594-3.105-6.045l-1.196-.109c-.277 3.05 1.665 5.47 3.52 7.064a18.654 18.654 0 0 0 3.73 2.472l.068.033.02.009.005.003h.001l.254-.543Zm0 0a78.287 78.287 0 0 0 .254.543h.001l.006-.003.019-.009a7.928 7.928 0 0 0 .318-.16 18.659 18.659 0 0 0 3.48-2.346c1.855-1.593 3.797-4.013 3.52-7.063l-1.195.109c.222 2.45-1.336 4.522-3.107 6.045A17.453 17.453 0 0 1 9.75 15.97l-.003.001.253.545Zm7.598-9.03c-.132-1.723-.672-2.867-1.55-3.506-.869-.633-1.924-.662-2.844-.492-.927.17-1.816.56-2.457.893a12.177 12.177 0 0 0-1.081.636l-.005.004h-.002v.001l.341.494.342.493.002-.002a10.97 10.97 0 0 1 .956-.562c.593-.307 1.36-.637 2.121-.777.767-.142 1.431-.074 1.921.282.482.351.942 1.09 1.06 2.629l1.196-.092Zm-14 .101c.14-1.538.608-2.282 1.098-2.636.495-.358 1.158-.424 1.917-.283.754.14 1.512.469 2.098.777a10.684 10.684 0 0 1 .942.56l.002.002.345-.491.345-.491-.002-.002c-.002 0-.003-.002-.005-.003a1.632 1.632 0 0 0-.077-.052 11.886 11.886 0 0 0-.992-.585c-.635-.334-1.515-.724-2.437-.895-.917-.17-1.967-.14-2.84.491-.879.636-1.433 1.776-1.59 3.5l1.196.108Z"
/>
</svg>
)
+1 -1
View File
@@ -15,7 +15,7 @@ const SvgHelpIcon = createIcon(props => {
<path
fill={props.color}
fillRule="evenodd"
d="M3.91 8.024a6.416 6.416 0 0 1 4.114-4.113l.333 2.331a4.115 4.115 0 0 0-2.115 2.115l-2.331-.333ZM3.65 9.2a6.463 6.463 0 0 0 0 1.602l2.277-.325a4.144 4.144 0 0 1 0-.952L3.65 9.2Zm2.592 2.444-2.331.333a6.416 6.416 0 0 0 4.113 4.113l.333-2.331a4.115 4.115 0 0 1-2.115-2.115ZM9.2 16.35a6.46 6.46 0 0 0 1.602 0l-.326-2.277a4.15 4.15 0 0 1-.951 0L9.2 16.35Zm2.444-2.592.333 2.331a6.415 6.415 0 0 0 4.113-4.113l-2.332-.333a4.116 4.116 0 0 1-2.114 2.115ZM16.4 10c0 .271-.017.539-.05.801l-2.278-.325a4.151 4.151 0 0 0 0-.952L16.35 9.2c.033.262.05.53.05.801Zm-.31-1.976-2.333.333a4.115 4.115 0 0 0-2.114-2.115l.333-2.331a6.416 6.416 0 0 1 4.113 4.113ZM9.523 5.927 9.199 3.65a6.462 6.462 0 0 1 1.602 0l-.326 2.277a4.14 4.14 0 0 0-.951 0ZM10 2.4a7.6 7.6 0 1 0 0 15.2 7.6 7.6 0 0 0 0-15.2ZM7.1 10a2.9 2.9 0 1 1 5.8 0 2.9 2.9 0 0 1-5.8 0Z"
d="M3.392 8.007a6.915 6.915 0 0 1 4.615-4.615l.356 2.848A4.115 4.115 0 0 0 6.24 8.363l-2.848-.356Zm-.245 1.179a6.97 6.97 0 0 0 0 1.628l2.78-.347a4.146 4.146 0 0 1 0-.934l-2.78-.347Zm3.093 2.451-2.848.356a6.915 6.915 0 0 0 4.615 4.615l.356-2.848a4.115 4.115 0 0 1-2.123-2.123Zm2.946 5.215a6.973 6.973 0 0 0 1.628 0l-.347-2.778a4.138 4.138 0 0 1-.934 0l-.347 2.778Zm2.451-3.092.356 2.848a6.915 6.915 0 0 0 4.615-4.615l-2.848-.356a4.115 4.115 0 0 1-2.123 2.123ZM16.9 10c0 .276-.016.547-.048.814l-2.778-.347a4.141 4.141 0 0 0 0-.934l2.778-.347c.032.267.048.538.048.814Zm-.292-1.993-2.848.356a4.115 4.115 0 0 0-2.123-2.123l.356-2.848a6.915 6.915 0 0 1 4.615 4.615Zm-7.075-2.08-.347-2.78a6.97 6.97 0 0 1 1.628 0l-.347 2.78a4.143 4.143 0 0 0-.934 0ZM10 1.9a8.1 8.1 0 1 0 0 16.2 8.1 8.1 0 0 0 0-16.2ZM7.1 10a2.9 2.9 0 1 1 5.8 0 2.9 2.9 0 0 1-5.8 0Z"
clipRule="evenodd"
/>
</svg>
+1 -1
View File
@@ -15,7 +15,7 @@ const SvgHistoryIcon = createIcon(props => {
<path
fill={props.color}
fillRule="evenodd"
d="M7.092 2.979A7.6 7.6 0 1 1 3.418 13.8l1.04-.6a6.4 6.4 0 1 0 .25-6.8H7v1.2H2.9V3.5h1.2v1.71a7.6 7.6 0 0 1 2.992-2.231ZM10.7 6.5v3.276l2.629 1.722-.658 1.004-2.9-1.9-.271-.178V6.5h1.2Z"
d="M11.786 3.335A6.9 6.9 0 0 0 4.45 5.9H7v1.2H2.9V3h1.2v1.45a8.1 8.1 0 1 1-1.115 9.6l1.04-.6a6.9 6.9 0 1 0 7.76-10.115ZM10.7 6.5v3.276l2.629 1.722-.658 1.004-2.9-1.9-.271-.178V6.5h1.2Z"
clipRule="evenodd"
/>
</svg>
+1 -1
View File
@@ -12,7 +12,7 @@ const SvgIncorrectIcon = createIcon(props => {
focusable={false}
aria-hidden={true}
>
<circle cx={10} cy={10} r={7} stroke="#E95460" strokeWidth={1.2} />
<circle cx={10} cy={10} r={7.5} stroke="#E95460" strokeWidth={1.2} />
<path
fill="#E95460"
fillRule="evenodd"
-71
View File
@@ -5,36 +5,27 @@ export { default as ActivityCenterIcon } from './activity-center-icon'
export { default as ActivityIcon } from './activity-icon'
export { default as AddIcon } from './add-icon'
export { default as AddReactionIcon } from './add-reaction-icon'
export { default as AddSmIcon } from './add-sm-icon'
export { default as AddSmallIcon } from './add-small-icon'
export { default as AddTimeOffIcon } from './add-time-off-icon'
export { default as AddTokenIcon } from './add-token-icon'
export { default as AddUserIcon } from './add-user-icon'
export { default as AdvancedIcon } from './advanced-icon'
export { default as AfghanistanIcon } from './afghanistan-icon'
export { default as AirdropIcon } from './airdrop-icon'
export { default as AlertIcon } from './alert-icon'
export { default as AlphabeticallyIcon } from './alphabetically-icon'
export { default as AndroidIcon } from './android-icon'
export { default as AngryIcon } from './angry-icon'
export { default as AnonymousIcon } from './anonymous-icon'
export { default as AppleIcon } from './apple-icon'
export { default as ArgentinaIcon } from './argentina-icon'
export { default as ArrowDownIcon } from './arrow-down-icon'
export { default as ArrowLeftIcon } from './arrow-left-icon'
export { default as ArrowRightIcon } from './arrow-right-icon'
export { default as ArrowTopIcon } from './arrow-top-icon'
export { default as AttachIcon } from './attach-icon'
export { default as AudioIcon } from './audio-icon'
export { default as AustraliaIcon } from './australia-icon'
export { default as AutomaticIcon } from './automatic-icon'
export { default as BackspaceIcon } from './backspace-icon'
export { default as BanUserIcon } from './ban-user-icon'
export { default as BlockIcon } from './block-icon'
export { default as BoldIcon } from './bold-icon'
export { default as BookIcon } from './book-icon'
export { default as BrazilIcon } from './brazil-icon'
export { default as BridgeBlurIcon } from './bridge-blur-icon'
export { default as BridgeIcon } from './bridge-icon'
export { default as BrowserIcon } from './browser-icon'
export { default as BulletIcon } from './bullet-icon'
@@ -55,8 +46,6 @@ export { default as ChevronRightIcon } from './chevron-right-icon'
export { default as ChevronTopIcon } from './chevron-top-icon'
export { default as ChevronsLeftIcon } from './chevrons-left-icon'
export { default as ChevronsRightIcon } from './chevrons-right-icon'
export { default as ChileIcon } from './chile-icon'
export { default as ChinaIcon } from './china-icon'
export { default as CircleIcon } from './circle-icon'
export { default as ClearBigIcon } from './clear-big-icon'
export { default as ClearIcon } from './clear-icon'
@@ -65,13 +54,11 @@ export { default as CloseIcon } from './close-icon'
export { default as CloseMacOsIcon } from './close-mac-os-icon'
export { default as CloseWindowsIcon } from './close-windows-icon'
export { default as CodeBlockIcon } from './code-block-icon'
export { default as CodeDataIcon } from './code-data-icon'
export { default as CodeIcon } from './code-icon'
export { default as CollapseIcon } from './collapse-icon'
export { default as CollapseLsIcon } from './collapse-ls-icon'
export { default as CollapseRsIcon } from './collapse-rs-icon'
export { default as CollapseTopbarIcon } from './collapse-topbar-icon'
export { default as ColombiaIcon } from './colombia-icon'
export { default as ColourPickIcon } from './colour-pick-icon'
export { default as CommandIcon } from './command-icon'
export { default as CommunitiesIcon } from './communities-icon'
@@ -79,7 +66,6 @@ export { default as CompactIcon } from './compact-icon'
export { default as CompleteIdIcon } from './complete-id-icon'
export { default as ConfettiColorfulIcon } from './confetti-colorful-icon'
export { default as ConfettiIcon } from './confetti-icon'
export { default as ConnectIcon } from './connect-icon'
export { default as ConnectionIcon } from './connection-icon'
export { default as ContactBookIcon } from './contact-book-icon'
export { default as ContactIcon } from './contact-icon'
@@ -87,13 +73,10 @@ export { default as CopyIcon } from './copy-icon'
export { default as CorrectIcon } from './correct-icon'
export { default as CrossCircleIcon } from './cross-circle-icon'
export { default as CrownIcon } from './crown-icon'
export { default as CurrencyIcon } from './currency-icon'
export { default as CustomizeIcon } from './customize-icon'
export { default as DappsIcon } from './dapps-icon'
export { default as DarkIcon } from './dark-icon'
export { default as DashboardIcon } from './dashboard-icon'
export { default as DataUsageIcon } from './data-usage-icon'
export { default as DatabasesIcon } from './databases-icon'
export { default as DeclineIcon } from './decline-icon'
export { default as DecreaseWindowsIcon } from './decrease-windows-icon'
export { default as DeleteIcon } from './delete-icon'
@@ -102,9 +85,7 @@ export { default as DerivatedPathIcon } from './derivated-path-icon'
export { default as DesktopIcon } from './desktop-icon'
export { default as DestroyIcon } from './destroy-icon'
export { default as DisconnectIcon } from './disconnect-icon'
export { default as DiscordIcon } from './discord-icon'
export { default as DockIcon } from './dock-icon'
export { default as DominicanIcon } from './dominican-icon'
export { default as DoneIcon } from './done-icon'
export { default as DownloadIcon } from './download-icon'
export { default as DragIcon } from './drag-icon'
@@ -112,10 +93,7 @@ export { default as DropdownIcon } from './dropdown-icon'
export { default as DurationIcon } from './duration-icon'
export { default as EditIcon } from './edit-icon'
export { default as EmailIcon } from './email-icon'
export { default as EnglandIcon } from './england-icon'
export { default as EpicIcon } from './epic-icon'
export { default as EpicsIcon } from './epics-icon'
export { default as EuropeanUnionIcon } from './european-union-icon'
export { default as ExpandIcon } from './expand-icon'
export { default as ExpandLsIcon } from './expand-ls-icon'
export { default as ExpandRsIcon } from './expand-rs-icon'
@@ -129,7 +107,6 @@ export { default as FacesIcon } from './faces-icon'
export { default as FavouriteIcon } from './favourite-icon'
export { default as FeedIcon } from './feed-icon'
export { default as FileIcon } from './file-icon'
export { default as FirmwareIcon } from './firmware-icon'
export { default as FlagIcon } from './flag-icon'
export { default as FlagsIcon } from './flags-icon'
export { default as FlashIcon } from './flash-icon'
@@ -143,7 +120,6 @@ export { default as FolderIcon } from './folder-icon'
export { default as FoodIcon } from './food-icon'
export { default as FormatIcon } from './format-icon'
export { default as ForwardIcon } from './forward-icon'
export { default as FranceIcon } from './france-icon'
export { default as FriendIcon } from './friend-icon'
export { default as FullscreenMacOsIcon } from './fullscreen-mac-os-icon'
export { default as GasIcon } from './gas-icon'
@@ -170,20 +146,16 @@ export { default as InactiveLeftIcon } from './inactive-left-icon'
export { default as IncorrectIcon } from './incorrect-icon'
export { default as InfoBadgeIcon } from './info-badge-icon'
export { default as InfoIcon } from './info-icon'
export { default as InsightsIcon } from './insights-icon'
export { default as IntagramIcon } from './intagram-icon'
export { default as IntermediateCircleIcon } from './intermediate-circle-icon'
export { default as ItalicIcon } from './italic-icon'
export { default as ItalyIcon } from './italy-icon'
export { default as JustifyIcon } from './justify-icon'
export { default as KeyIcon } from './key-icon'
export { default as KeyboardIcon } from './keyboard-icon'
export { default as KeycardCardIcon } from './keycard-card-icon'
export { default as KeycardIcon } from './keycard-icon'
export { default as KeycardLogoIcon } from './keycard-logo-icon'
export { default as KeycardProIcon } from './keycard-pro-icon'
export { default as KickUserIcon } from './kick-user-icon'
export { default as LabelsIcon } from './labels-icon'
export { default as LanguageIcon } from './language-icon'
export { default as LaptopIcon } from './laptop-icon'
export { default as LaughIcon } from './laugh-icon'
@@ -192,7 +164,6 @@ export { default as LensIcon } from './lens-icon'
export { default as LightIcon } from './light-icon'
export { default as LinkIcon } from './link-icon'
export { default as LinkedinIcon } from './linkedin-icon'
export { default as LinuxIcon } from './linux-icon'
export { default as ListViewCollapsedIcon } from './list-view-collapsed-icon'
export { default as ListViewIcon } from './list-view-icon'
export { default as LoadingIcon } from './loading-icon'
@@ -207,24 +178,16 @@ export { default as MentionIcon } from './mention-icon'
export { default as MenuIcon } from './menu-icon'
export { default as MessagesIcon } from './messages-icon'
export { default as MessengerIcon } from './messenger-icon'
export { default as MexicoIcon } from './mexico-icon'
export { default as MilestonesIcon } from './milestones-icon'
export { default as MinimizeMacOsIcon } from './minimize-mac-os-icon'
export { default as MinimizeWindowsIcon } from './minimize-windows-icon'
export { default as MintIcon } from './mint-icon'
export { default as MirrorIcon } from './mirror-icon'
export { default as MobileIcon } from './mobile-icon'
export { default as MoveBottomIcon } from './move-bottom-icon'
export { default as MoveDownIcon } from './move-down-icon'
export { default as MoveTopIcon } from './move-top-icon'
export { default as MoveUpIcon } from './move-up-icon'
export { default as MultiProfileIcon } from './multi-profile-icon'
export { default as MutedIcon } from './muted-icon'
export { default as MutualContactIcon } from './mutual-contact-icon'
export { default as NatureIcon } from './nature-icon'
export { default as NegativeStateIcon } from './negative-state-icon'
export { default as NetherlandsIcon } from './netherlands-icon'
export { default as NeutralIcon } from './neutral-icon'
export { default as NewMessageIcon } from './new-message-icon'
export { default as NewWindowIcon } from './new-window-icon'
export { default as NftIcon } from './nft-icon'
@@ -244,45 +207,32 @@ export { default as OpenIcon } from './open-icon'
export { default as OpenseaIcon } from './opensea-icon'
export { default as OptionsCircleIcon } from './options-circle-icon'
export { default as OptionsIcon } from './options-icon'
export { default as OrgIcon } from './org-icon'
export { default as PalleteIcon } from './pallete-icon'
export { default as PasswordIcon } from './password-icon'
export { default as PauseIcon } from './pause-icon'
export { default as PauseMediaIcon } from './pause-media-icon'
export { default as PendingIcon } from './pending-icon'
export { default as PendingStateIcon } from './pending-state-icon'
export { default as PendingUserIcon } from './pending-user-icon'
export { default as PeopleIcon } from './people-icon'
export { default as PercentageIcon } from './percentage-icon'
export { default as PiggyBankIcon } from './piggy-bank-icon'
export { default as PinIcon } from './pin-icon'
export { default as PinterestIcon } from './pinterest-icon'
export { default as PlaceholderIcon } from './placeholder-icon'
export { default as PlayIcon } from './play-icon'
export { default as PlayMediaIcon } from './play-media-icon'
export { default as PlugIcon } from './plug-icon'
export { default as PopupIcon } from './popup-icon'
export { default as PortugalIcon } from './portugal-icon'
export { default as PositiveStateIcon } from './positive-state-icon'
export { default as PrivacyIcon } from './privacy-icon'
export { default as ProfileIcon } from './profile-icon'
export { default as PullupIcon } from './pullup-icon'
export { default as PuzzleIcon } from './puzzle-icon'
export { default as QrCodeIcon } from './qr-code-icon'
export { default as QuillPenIcon } from './quill-pen-icon'
export { default as RaribleIcon } from './rarible-icon'
export { default as ReactionIcon } from './reaction-icon'
export { default as ReceiveBlurIcon } from './receive-blur-icon'
export { default as ReceiveIcon } from './receive-icon'
export { default as RecentIcon } from './recent-icon'
export { default as RedditIcon } from './reddit-icon'
export { default as RefreshIcon } from './refresh-icon'
export { default as RelaxedIcon } from './relaxed-icon'
export { default as RemoveIcon } from './remove-icon'
export { default as RemoveUserIcon } from './remove-user-icon'
export { default as ReorderIcon } from './reorder-icon'
export { default as ReplyIcon } from './reply-icon'
export { default as ReportingIcon } from './reporting-icon'
export { default as RevealIcon } from './reveal-icon'
export { default as RevealWhitelistIcon } from './reveal-whitelist-icon'
export { default as RevereIcon } from './revere-icon'
@@ -291,7 +241,6 @@ export { default as ReviewIdIcon } from './review-id-icon'
export { default as ReviewRequestIcon } from './review-request-icon'
export { default as RightAlignIcon } from './right-align-icon'
export { default as RotateIcon } from './rotate-icon'
export { default as RussiaIcon } from './russia-icon'
export { default as SadIcon } from './sad-icon'
export { default as SaveIcon } from './save-icon'
export { default as ScanBigIcon } from './scan-big-icon'
@@ -299,17 +248,12 @@ export { default as ScanIcon } from './scan-icon'
export { default as SearchIcon } from './search-icon'
export { default as SeedIcon } from './seed-icon'
export { default as SendAudioIcon } from './send-audio-icon'
export { default as SendBlurIcon } from './send-blur-icon'
export { default as SendIcon } from './send-icon'
export { default as SettingsIcon } from './settings-icon'
export { default as ShareIcon } from './share-icon'
export { default as ShellIcon } from './shell-icon'
export { default as ShopIcon } from './shop-icon'
export { default as SignatureIcon } from './signature-icon'
export { default as SnapchatIcon } from './snapchat-icon'
export { default as SortIcon } from './sort-icon'
export { default as SouthKoreaIcon } from './south-korea-icon'
export { default as SpainIcon } from './spain-icon'
export { default as SpeedIcon } from './speed-icon'
export { default as SpotifyIcon } from './spotify-icon'
export { default as StatusIcon } from './status-icon'
@@ -317,25 +261,18 @@ export { default as StatusIconIcon } from './status-icon-icon'
export { default as StatusLogoIcon } from './status-logo-icon'
export { default as StickersIcon } from './stickers-icon'
export { default as StopIcon } from './stop-icon'
export { default as StopMediaIcon } from './stop-media-icon'
export { default as StrikethroughIcon } from './strikethrough-icon'
export { default as SubscriptIcon } from './subscript-icon'
export { default as SuperareIcon } from './superare-icon'
export { default as SuperscriptIcon } from './superscript-icon'
export { default as SwapBlurIcon } from './swap-blur-icon'
export { default as SwapIcon } from './swap-icon'
export { default as SwitchIcon } from './switch-icon'
export { default as SymbolsIcon } from './symbols-icon'
export { default as SyncingIcon } from './syncing-icon'
export { default as TableIcon } from './table-icon'
export { default as TabletIcon } from './tablet-icon'
export { default as TabsIcon } from './tabs-icon'
export { default as TaiwanIcon } from './taiwan-icon'
export { default as TeamsIcon } from './teams-icon'
export { default as ThreadsIcon } from './threads-icon'
export { default as ThumbsDownIcon } from './thumbs-down-icon'
export { default as ThumbsUpIcon } from './thumbs-up-icon'
export { default as TimeOffIcon } from './time-off-icon'
export { default as ToggleIcon } from './toggle-icon'
export { default as TokenIcon } from './token-icon'
export { default as TokenMasterIcon } from './token-master-icon'
@@ -343,7 +280,6 @@ export { default as TokenSalesIcon } from './token-sales-icon'
export { default as TopbarDockIcon } from './topbar-dock-icon'
export { default as TopbarIcon } from './topbar-icon'
export { default as TouchIdBigIcon } from './touch-id-big-icon'
export { default as TranslationsIcon } from './translations-icon'
export { default as TrashIcon } from './trash-icon'
export { default as TravelIcon } from './travel-icon'
export { default as TumblrIcon } from './tumblr-icon'
@@ -352,24 +288,17 @@ export { default as TwitterIcon } from './twitter-icon'
export { default as UblockUserIcon } from './ublock-user-icon'
export { default as UnblockIcon } from './unblock-icon'
export { default as UnderlineIcon } from './underline-icon'
export { default as UnitedArabEmiratesIcon } from './united-arab-emirates-icon'
export { default as UnitedKingdomIcon } from './united-kingdom-icon'
export { default as UnitedStatesIcon } from './united-states-icon'
export { default as UnlockedIcon } from './unlocked-icon'
export { default as UnpinIcon } from './unpin-icon'
export { default as UnreadIcon } from './unread-icon'
export { default as UntrustworthyIcon } from './untrustworthy-icon'
export { default as UpToDateIcon } from './up-to-date-icon'
export { default as UpvoteIcon } from './upvote-icon'
export { default as UsbIcon } from './usb-icon'
export { default as VerifiedIcon } from './verified-icon'
export { default as VideoIcon } from './video-icon'
export { default as WaffleIcon } from './waffle-icon'
export { default as WalletIcon } from './wallet-icon'
export { default as WarningIcon } from './warning-icon'
export { default as WebIcon } from './web-icon'
export { default as WindowsIcon } from './windows-icon'
export { default as WorkstreamsIcon } from './workstreams-icon'
export { default as WorldIcon } from './world-icon'
export { default as YoutubeIcon } from './youtube-icon'
export { default as ZoomInIcon } from './zoom-in-icon'
+1 -1
View File
@@ -15,7 +15,7 @@ const SvgInfoBadgeIcon = createIcon(props => {
<path
fill={props.color}
fillRule="evenodd"
d="M10 17a7 7 0 1 0 0-14 7 7 0 0 0 0 14Zm-.55-8.5-.2 6h1.5l-.2-6h-1.1Zm-.2-2.25a.75.75 0 1 0 1.5 0 .75.75 0 0 0-1.5 0Z"
d="M10 17.5a7.5 7.5 0 1 0 0-15 7.5 7.5 0 0 0 0 15Zm-.55-9-.2 6h1.5l-.2-6h-1.1Zm-.2-2.25a.75.75 0 1 0 1.5 0 .75.75 0 0 0-1.5 0Z"
clipRule="evenodd"
/>
</svg>
+1 -1
View File
@@ -15,7 +15,7 @@ const SvgInfoIcon = createIcon(props => {
<path
fill={props.color}
fillRule="evenodd"
d="M3.6 10a6.4 6.4 0 1 1 12.8 0 6.4 6.4 0 0 1-12.8 0ZM10 2.4a7.6 7.6 0 1 0 0 15.2 7.6 7.6 0 0 0 0-15.2Zm-.55 6.1-.2 6h1.5l-.2-6h-1.1Zm-.2-2.25a.75.75 0 1 0 1.5 0 .75.75 0 0 0-1.5 0Z"
d="M3.1 10a6.9 6.9 0 1 1 13.8 0 6.9 6.9 0 0 1-13.8 0ZM10 1.9a8.1 8.1 0 1 0 0 16.2 8.1 8.1 0 0 0 0-16.2Zm-.55 6.6-.2 6h1.5l-.2-6h-1.1Zm-.2-2.25a.75.75 0 1 0 1.5 0 .75.75 0 0 0-1.5 0Z"
clipRule="evenodd"
/>
</svg>
-25
View File
@@ -1,25 +0,0 @@
import { createIcon } from '../lib/create-icon'
const SvgInsightsIcon = createIcon(props => {
return (
<svg
{...props}
xmlns="http://www.w3.org/2000/svg"
width={props.width}
height={props.height}
fill="none"
viewBox="0 0 20 20"
focusable={false}
aria-hidden={true}
>
<path
fill={props.color}
fillRule="evenodd"
d="M13.143 2.4c1.064 0 2.024.637 2.436 1.618l3.086 7.327.006.014c.068.164.11.264.148.367.16.438.254.897.276 1.364.005.109.005.218.005.395v.015a4.1 4.1 0 0 1-7.956 1.396A3.18 3.18 0 0 1 10 15.1c-.463 0-.845-.09-1.144-.204A4.102 4.102 0 0 1 .9 13.5v-.015c0-.177 0-.286.005-.395a4.6 4.6 0 0 1 .276-1.364c.037-.103.08-.203.148-.367l.006-.014L4.42 4.018a2.644 2.644 0 0 1 5.077 1.151l-.037.776c.162-.029.342-.045.54-.045s.377.016.54.045l-.037-.776a2.644 2.644 0 0 1 2.64-2.77ZM9.096 13.688l.047.025c.177.089.46.187.857.187a1.899 1.899 0 0 0 .904-.212 4.169 4.169 0 0 1-.004-.173l-.3-6.304c-.104-.051-.29-.111-.6-.111s-.496.06-.6.11l-.3 6.305c0 .058-.002.116-.004.173Zm2.873-2.95-.19-4.003.007-.004V6.73l-.001-.002-.002-.003-.004-.008-.002-.003-.076-1.602a1.443 1.443 0 0 1 2.772-.629l2.225 5.284A4.085 4.085 0 0 0 15 9.4a4.09 4.09 0 0 0-3.03 1.339Zm-3.748-4.02.001-.003.077-1.602a1.444 1.444 0 0 0-2.773-.629L3.302 9.767A4.085 4.085 0 0 1 5 9.4c1.2 0 2.28.516 3.03 1.339l.191-4.004a.034.034 0 0 1-.007-.004V6.73l.001-.002.002-.003.004-.008ZM17.9 13.5a2.9 2.9 0 1 0-5.8 0 2.9 2.9 0 0 0 5.8 0ZM5 16.4a2.9 2.9 0 1 1 0-5.8 2.9 2.9 0 0 1 0 5.8Z"
clipRule="evenodd"
/>
</svg>
)
})
export default SvgInsightsIcon
-28
View File
@@ -1,28 +0,0 @@
import { createIcon } from '../lib/create-icon'
const SvgItalyIcon = createIcon(props => {
return (
<svg
{...props}
xmlns="http://www.w3.org/2000/svg"
width={props.width}
height={props.height}
fill="none"
viewBox="0 0 20 20"
focusable={false}
aria-hidden={true}
>
<path
fill="#CE2B37"
d="M20 15a2.222 2.222 0 0 1-2.222 2.222h-4.445V2.778h4.445C19.005 2.778 20 3.773 20 5v10Z"
/>
<path
fill="#009246"
d="M2.222 2.778A2.222 2.222 0 0 0 0 5v10c0 1.227.995 2.222 2.222 2.222h4.445V2.778H2.222Z"
/>
<path fill="#EEE" d="M6.667 2.778h6.666v14.444H6.667V2.778Z" />
</svg>
)
})
export default SvgItalyIcon
-25
View File
@@ -1,25 +0,0 @@
import { createIcon } from '../lib/create-icon'
const SvgKeycardProIcon = createIcon(props => {
return (
<svg
{...props}
xmlns="http://www.w3.org/2000/svg"
width={props.width}
height={props.height}
fill="none"
viewBox="0 0 20 20"
focusable={false}
aria-hidden={true}
>
<path
fill={props.color}
fillRule="evenodd"
d="M4.266 5.956C4.132 6.942 4.1 8.246 4.1 10c0 1.753.032 3.058.167 4.044.134.988.362 1.567.685 1.936.311.356.784.597 1.605.741.832.146 1.938.179 3.443.179 1.505 0 2.611-.033 3.443-.179.822-.144 1.294-.385 1.606-.741.322-.369.55-.948.685-1.936.134-.986.166-2.291.166-4.044 0-1.753-.032-3.058-.166-4.044-.135-.989-.363-1.567-.685-1.936-.312-.356-.785-.598-1.606-.742C12.611 3.132 11.505 3.1 10 3.1c-1.505 0-2.611.032-3.443.178-.821.144-1.294.386-1.605.742-.323.369-.55.947-.686 1.936Zm2.084-3.86C7.299 1.93 8.505 1.9 10 1.9s2.701.03 3.65.196c.96.169 1.738.49 2.302 1.134.552.631.824 1.49.97 2.564.148 1.077.178 2.459.178 4.206 0 1.747-.03 3.129-.177 4.206-.147 1.074-.419 1.933-.971 2.564-.564.644-1.341.965-2.301 1.133-.95.167-2.156.197-3.65.197-1.496 0-2.702-.03-3.651-.197-.96-.168-1.738-.49-2.301-1.133-.553-.631-.825-1.49-.971-2.564C2.93 13.129 2.9 11.746 2.9 10c0-1.747.03-3.13.177-4.206.147-1.074.419-1.933.972-2.564.563-.644 1.34-.965 2.3-1.134Zm-.295 3.369C6.004 5.672 6 5.973 6 6.5c0 .526.004.828.055 1.035.023.09.049.135.07.162.022.026.059.06.14.096.188.083.526.145 1.158.176C8.041 8 8.87 8 10 8s1.96 0 2.577-.03c.632-.031.97-.093 1.157-.176a.355.355 0 0 0 .14-.096.405.405 0 0 0 .07-.162c.052-.207.056-.509.056-1.035 0-.527-.004-.828-.055-1.035a.405.405 0 0 0-.07-.162.355.355 0 0 0-.14-.096c-.188-.084-.526-.145-1.158-.177C11.959 5 11.13 5 10 5s-1.96 0-2.577.03c-.632.032-.97.093-1.157.177a.354.354 0 0 0-.14.096.405.405 0 0 0-.07.162ZM9.985 4h.03c1.112 0 1.966 0 2.611.032.633.031 1.14.094 1.515.26.199.09.373.212.51.381a1.4 1.4 0 0 1 .264.55c.085.341.085.77.085 1.224v.106c0 .454 0 .882-.085 1.224a1.406 1.406 0 0 1-.264.55 1.351 1.351 0 0 1-.51.38c-.375.166-.882.23-1.515.261C11.981 9 11.127 9 10.016 9h-.031c-1.112 0-1.966 0-2.611-.032-.634-.031-1.14-.095-1.515-.261a1.345 1.345 0 0 1-.51-.38 1.393 1.393 0 0 1-.264-.55C5 7.435 5 7.007 5 6.553v-.106c0-.454 0-.883.085-1.225.048-.192.128-.38.264-.549.137-.17.311-.291.51-.38.375-.167.881-.23 1.515-.261C8.019 4 8.873 4 9.984 4Zm2.265 6.75a.75.75 0 1 0 1.5 0 .75.75 0 0 0-1.5 0ZM13 13.5a.75.75 0 1 1 0-1.5.75.75 0 0 1 0 1.5Zm-.75 1.25a.75.75 0 1 0 1.5 0 .75.75 0 0 0-1.5 0ZM10 11.5a.75.75 0 1 1 0-1.5.75.75 0 0 1 0 1.5Zm-.754 1.25a.75.75 0 1 0 1.5 0 .75.75 0 0 0-1.5 0ZM7 11.5A.75.75 0 1 1 7 10a.75.75 0 0 1 0 1.5Zm-.754 1.25a.75.75 0 1 0 1.5 0 .75.75 0 0 0-1.5 0ZM10 15.5a.75.75 0 1 1 0-1.5.75.75 0 0 1 0 1.5Zm-3.75-.75a.75.75 0 1 0 1.5 0 .75.75 0 0 0-1.5 0Z"
clipRule="evenodd"
/>
</svg>
)
})
export default SvgKeycardProIcon
-32
View File
@@ -1,32 +0,0 @@
import { createIcon } from '../lib/create-icon'
const SvgLabelsIcon = createIcon(props => {
return (
<svg
{...props}
xmlns="http://www.w3.org/2000/svg"
width={props.width}
height={props.height}
fill="none"
viewBox="0 0 20 20"
focusable={false}
aria-hidden={true}
>
<g clipPath="url(#labels-icon_svg__a)">
<path
fill={props.color}
fillRule="evenodd"
d="M8.18 5.087c-.285.216-.519.449-1.058.988-1.233 1.233-2.111 2.2-2.695 3.006-.587.808-.838 1.402-.889 1.891-.048.466.079.917.432 1.464.364.564.94 1.186 1.738 1.983.797.798 1.42 1.374 1.983 1.738.547.354.997.48 1.464.432.488-.05 1.083-.302 1.89-.888.806-.585 1.774-1.463 3.006-2.696.54-.54.773-.774.989-1.058.644-.847 1.084-2.119 1.1-3.183.007-.359-.024-.618-.096-1.224a23.256 23.256 0 0 0-.31-1.989 5.716 5.716 0 0 0-.181-.678c-.046-.13-.08-.19-.09-.209-.019-.01-.08-.044-.209-.09-.17-.06-.399-.12-.678-.18a23.264 23.264 0 0 0-1.99-.31c-.605-.073-.864-.104-1.223-.098-1.064.017-2.336.457-3.184 1.101Zm-1.907.14.028-.028c.504-.504.796-.796 1.152-1.067 1.051-.8 2.57-1.325 3.891-1.346.447-.007.783.033 1.36.103l.025.003c.74.088 1.487.197 2.098.328.304.065.588.139.826.223.214.075.477.187.66.37.184.184.296.447.372.661.083.238.157.522.222.826.13.61.24 1.358.328 2.098l.003.025c.07.577.11.913.103 1.36-.021 1.32-.547 2.84-1.346 3.89-.27.356-.563.648-1.067 1.152l-.029.029c-1.242 1.243-2.264 2.176-3.148 2.818-.883.64-1.68 1.029-2.473 1.11-.815.085-1.536-.164-2.238-.617-.684-.442-1.387-1.104-2.18-1.897-.794-.793-1.456-1.497-1.898-2.181-.453-.702-.702-1.423-.618-2.238.082-.793.471-1.591 1.111-2.473.642-.885 1.575-1.906 2.818-3.149Zm5.056 2.228a.95.95 0 1 1 1.343 1.343.95.95 0 0 1-1.343-1.343Zm2.121-.778a2.05 2.05 0 1 0-2.9 2.9 2.05 2.05 0 0 0 2.9-2.9Z"
clipRule="evenodd"
/>
</g>
<defs>
<clipPath id="labels-icon_svg__a">
<path fill="#fff" d="M0 0h20v20H0z" />
</clipPath>
</defs>
</svg>
)
})
export default SvgLabelsIcon
File diff suppressed because one or more lines are too long
+10 -2
View File
@@ -12,7 +12,11 @@ const SvgLoadingIcon = createIcon(props => {
focusable={false}
aria-hidden={true}
>
<path stroke={props.color} strokeWidth={1.2} d="M17 10a7 7 0 1 1-7-7" />
<path
stroke={props.color}
strokeWidth={1.2}
d="M10.1 2.6a7.5 7.5 0 1 0 7.5 7.5"
/>
<mask
id="loading-icon_svg__b"
width={10}
@@ -27,7 +31,11 @@ const SvgLoadingIcon = createIcon(props => {
<path fill="url(#loading-icon_svg__a)" d="M9 1h10v10H9z" />
</mask>
<g mask="url(#loading-icon_svg__b)">
<path stroke={props.color} strokeWidth={1.2} d="M10 3a7 7 0 0 1 7 7" />
<path
stroke={props.color}
strokeWidth={1.2}
d="M17.6 10.1a7.5 7.5 0 0 0-7.5-7.5"
/>
</g>
<defs>
<linearGradient
+1 -1
View File
@@ -15,7 +15,7 @@ const SvgLockedIcon = createIcon(props => {
<path
fill={props.color}
fillRule="evenodd"
d="M10 2.4c-.798 0-1.732.129-2.461.777-.69.613-1.082 1.586-1.133 2.998-.577.15-1.068.388-1.455.776-.5.5-.752 1.173-.886 1.982C3.93 9.737 3.9 10.75 3.9 12s.03 2.263.165 3.067c.134.81.385 1.482.886 1.982.5.5 1.173.752 1.982.887.804.134 1.818.164 3.067.164 1.25 0 2.263-.03 3.067-.164.81-.135 1.482-.386 1.982-.887.5-.5.752-1.173.887-1.982.134-.804.164-1.818.164-3.067s-.03-2.263-.164-3.067c-.135-.809-.386-1.482-.886-1.982-.388-.388-.879-.626-1.456-.776-.051-1.412-.444-2.386-1.133-2.998C11.732 2.529 10.797 2.4 10 2.4Zm2.382 3.578c-.076-1.061-.385-1.608-.718-1.905-.396-.351-.961-.473-1.664-.473s-1.268.122-1.664.473c-.333.297-.642.844-.718 1.905C8.292 5.916 9.082 5.9 10 5.9c.918 0 1.708.016 2.382.078ZM5.248 9.13C5.132 9.825 5.1 10.749 5.1 12c0 1.251.032 2.175.148 2.87.115.691.302 1.081.551 1.33.25.25.64.437 1.331.552.696.116 1.62.148 2.87.148 1.251 0 2.175-.032 2.87-.148.692-.115 1.081-.302 1.33-.551.25-.25.437-.64.552-1.33.116-.697.148-1.62.148-2.871s-.032-2.175-.148-2.87c-.115-.691-.302-1.081-.551-1.33-.25-.25-.64-.437-1.33-.552-.696-.116-1.62-.148-2.87-.148-1.252 0-2.175.032-2.871.148-.691.115-1.081.302-1.33.551-.25.25-.437.64-.552 1.33ZM8.5 11.4h3v1.2h-3v-1.2Z"
d="M10 2.4c-.798 0-1.733.129-2.462.777-.69.613-1.081 1.586-1.133 2.998-.577.15-1.067.388-1.454.776-.501.5-.752 1.173-.887 1.982C3.93 9.737 3.9 10.75 3.9 12s.03 2.263.164 3.067c.135.81.386 1.482.887 1.982.5.5 1.173.752 1.982.887.804.134 1.818.164 3.067.164s2.263-.03 3.067-.164c.809-.135 1.481-.386 1.982-.887.5-.5.752-1.173.886-1.982.135-.804.165-1.818.165-3.067s-.03-2.263-.165-3.067c-.134-.809-.385-1.482-.886-1.982-.387-.388-.878-.626-1.455-.776-.051-1.412-.444-2.386-1.133-2.998C11.73 2.529 10.797 2.4 10 2.4Zm2.382 3.578c-.076-1.061-.385-1.608-.718-1.905-.396-.351-.962-.473-1.664-.473-.703 0-1.268.122-1.664.473-.333.297-.643.844-.719 1.905C8.291 5.916 9.082 5.9 10 5.9c.917 0 1.708.016 2.382.078ZM5.248 9.13C5.132 9.825 5.1 10.749 5.1 12c0 1.251.032 2.175.148 2.87.115.691.302 1.081.551 1.33.25.25.64.437 1.33.552.696.116 1.62.148 2.87.148 1.252 0 2.175-.032 2.87-.148.692-.115 1.082-.302 1.332-.551.249-.25.435-.64.55-1.33.117-.697.149-1.62.149-2.871s-.032-2.175-.148-2.87c-.115-.691-.302-1.081-.551-1.33-.25-.25-.64-.437-1.33-.552C12.173 7.132 11.25 7.1 10 7.1s-2.175.032-2.87.148c-.692.115-1.082.302-1.33.551-.25.25-.437.64-.552 1.33ZM8.5 11.4h3v1.2h-3v-1.2Z"
clipRule="evenodd"
/>
</svg>
+1 -1
View File
@@ -15,7 +15,7 @@ const SvgMessagesIcon = createIcon(props => {
<path
fill={props.color}
fillRule="evenodd"
d="M1.9 8.5a6.6 6.6 0 0 1 6.6-6.6h2.638a6.962 6.962 0 0 1 3.53 12.962l-5.364 3.155-.904.532V15.1a6.6 6.6 0 0 1-6.5-6.6Zm6.6-5.4a5.4 5.4 0 0 0 0 10.8h1.1v2.551l4.46-2.623A5.761 5.761 0 0 0 11.138 3.1H8.5ZM7 6.4h6v1.2H7V6.4Zm4.5 3H7v1.2h4.5V9.4Z"
d="M7.3 2.4h-.026c-.818 0-1.469 0-1.993.043-.538.044-.996.136-1.415.35a3.6 3.6 0 0 0-1.574 1.573c-.213.42-.305.877-.35 1.415C1.9 6.306 1.9 6.956 1.9 7.774V9.1h10.35a3.35 3.35 0 1 0 0-6.7H7.3ZM4.41 3.862c.223-.114.505-.185.968-.223C5.848 3.6 6.45 3.6 7.3 3.6h4.95a2.15 2.15 0 0 1 0 4.3H3.1v-.1c0-.85 0-1.451.039-1.922.038-.463.11-.745.222-.968a2.4 2.4 0 0 1 1.05-1.048ZM12.7 10.9h.026c.818 0 1.468 0 1.993.043.538.044.996.136 1.415.35a3.6 3.6 0 0 1 1.573 1.573c.214.42.306.877.35 1.415.043.524.043 1.175.043 1.993V17.6H7.75a3.35 3.35 0 1 1 0-6.7h4.95Zm2.89 1.462c-.223-.114-.505-.185-.969-.223-.47-.038-1.071-.039-1.921-.039H7.75a2.15 2.15 0 0 0 0 4.3h9.15v-.1c0-.85 0-1.451-.039-1.921-.038-.464-.11-.746-.223-.969a2.4 2.4 0 0 0-1.049-1.048Z"
clipRule="evenodd"
/>
</svg>
-63
View File
@@ -1,63 +0,0 @@
import { createIcon } from '../lib/create-icon'
const SvgMexicoIcon = createIcon(props => {
return (
<svg
{...props}
xmlns="http://www.w3.org/2000/svg"
width={props.width}
height={props.height}
fill="none"
viewBox="0 0 20 20"
focusable={false}
aria-hidden={true}
>
<g clipPath="url(#mexico-icon_svg__a)">
<path
fill="#006847"
d="M2.222 2.778A2.222 2.222 0 0 0 0 5v10c0 1.227.995 2.222 2.222 2.222h3.89V2.778h-3.89Z"
/>
<path
fill="#CE1126"
d="M17.778 2.778h-3.89v14.444h3.89A2.222 2.222 0 0 0 20 15V5a2.222 2.222 0 0 0-2.222-2.222Z"
/>
<path fill="#EEE" d="M6.111 2.778h7.778v14.444H6.11V2.778Z" />
<path
fill="#A6D388"
d="M12.778 10a2.777 2.777 0 1 1-5.556 0h-.555a3.333 3.333 0 0 0 6.666 0h-.555Z"
/>
<path
fill="#5C913B"
d="M7.524 11.26a.277.277 0 0 0-.374-.12.278.278 0 0 0-.122.373c.05.099.105.195.165.287l.002.004.004.006.002.004v.002l.003.002.002.004.001.004.002.003.001.002.002.002v.001l.002.002v.002l.002.003.002.002.001.003v.001l.003.003v.001l.004.006.003.004c.029.043.058.084.09.126a.276.276 0 0 0 .387.056.277.277 0 0 0 .057-.388 3.313 3.313 0 0 1-.24-.394Zm-.276-.878a2.935 2.935 0 0 1-.026-.463.278.278 0 0 0-.27-.286h-.02a.277.277 0 0 0-.265.27 4.484 4.484 0 0 0 0 .173v.09l.001.002v.016l.001.005v.006c.005.09.014.178.026.265a.278.278 0 0 0 .312.237.28.28 0 0 0 .24-.315Zm2.94 2.389h-.003l-.068.004a2.83 2.83 0 0 1-.395-.011.278.278 0 0 0-.056.553l.07.006h.014l.002.001h.008l.003.001h.01l.004.001h.007c.084.006.17.008.255.007h.049l.004-.001h.028l.003-.002h.028l.07-.005a.274.274 0 0 0 .252-.292.274.274 0 0 0-.285-.262Zm-1.354-.25a2.809 2.809 0 0 1-.402-.228.274.274 0 0 0-.169-.048.278.278 0 0 0-.146.506l.004.002.003.004.004.002.003.003c.148.1.305.188.468.264a.277.277 0 0 0 .368-.135.277.277 0 0 0-.133-.37Zm2.794-.22a.277.277 0 0 0-.137.044c-.13.082-.268.155-.408.215a.277.277 0 0 0 .118.533.294.294 0 0 0 .096-.02l.075-.034.004-.002h.001l.002-.002h.003l.002-.001.001-.001h.003l.001-.002.002-.001.003-.001h.002l.002-.002h.001l.003-.002h.001l.003-.002h.001l.004-.002.004-.002.003-.001h.001l.003-.003h.001l.004-.002h.004l.004-.003h.001l.002-.002h.001l.004-.002.004-.002.004-.002.004-.002.008-.004.004-.002.008-.004.004-.002.004-.001.008-.005.003-.002.013-.006.004-.001.008-.005.004-.002.004-.001a.007.007 0 0 1 .004-.003l.004-.002.003-.002.008-.004.005-.002.003-.002.004-.002.004-.002.004-.002.004-.002.004-.003.003-.001h.001l.003-.003h.001l.003-.002h.001l.003-.002h.001l.003-.002.004-.002h.001l.002-.002h.002l.003-.002h.001c0-.002.001-.002.002-.002l.002-.001.002-.001.002-.001.002-.001.002-.002h.001l.002-.002h.003l.002-.001.001-.002h.002l.003-.002.003-.002.002-.002h.002l.003-.001v-.001l.003-.002h.002l.001-.002h.002l.003-.002v-.001c.002 0 .004 0 .005-.002l.003-.001.003-.003h.002l.003-.002.007-.004.005-.003a.047.047 0 0 1 .01-.006l.107-.065a.278.278 0 0 0 .084-.383.308.308 0 0 0-.254-.126Zm1.429-2.566h-.014a.278.278 0 0 0-.266.277c0 .154-.014.31-.04.46a.278.278 0 0 0 .549.094v-.008l.001-.001v-.008c.002 0 .002-.002.002-.002v-.004c.011-.071.021-.144.029-.217v-.011l.001-.002v-.007h.001v-.016l.002-.002c.007-.09.011-.183.011-.276a.278.278 0 0 0-.276-.277Zm-.247 1.498a.278.278 0 0 0-.377.109c-.075.134-.16.264-.258.384a.278.278 0 0 0 .435.346c.065-.081.127-.166.184-.253.001-.004.004-.008.006-.011l.003-.004.002-.005.002-.003.003-.003a.006.006 0 0 0 .002-.004l.003-.004.002-.003.002-.004.001-.001.001-.003.002-.001v-.003h.002l.001-.003v-.002l.003-.002.002-.004v-.001l.003-.002.001-.002v-.002h.002l.001-.004.003-.004v-.001l.002-.002v-.002l.002-.002.001-.002.002-.002v-.002l.001-.002.002-.001v-.002c.002 0 .002-.001.002-.002v-.002l.002-.002.002-.002v-.002l.001-.002.002-.002.002-.002v-.001l.002-.003v-.002c.001 0 .002 0 .002-.002l.002-.003.001-.002.002-.002v-.001l.002-.003v-.002l.001-.001.002-.003.001-.002.001-.001.001-.003h.002v-.004h.002v-.004h.002l.001-.003h.001l.001-.004h.001l.002-.004v-.001l.002-.003v-.001l.002-.003.002-.004h.001l.001-.004.003-.004.002-.003.002-.004h.001l.014-.027a.277.277 0 0 0-.11-.373Z"
/>
<path
fill="#55ACEE"
d="M10 12.222c.92 0 1.667-.248 1.667-.555 0-.307-.747-.556-1.667-.556s-1.667.249-1.667.556c0 .306.746.555 1.667.555Z"
/>
<path
fill="#FFCC4D"
d="M10.278 12.222c.46 0 .833-.248.833-.555 0-.307-.373-.556-.833-.556-.46 0-.834.249-.834.556 0 .306.373.555.834.555Z"
/>
<path
fill="#5C913B"
d="M10.62 11.819a.279.279 0 0 1-.244-.41c.089-.164.182-.312.279-.442a5.608 5.608 0 0 1-.239.005c-.153 0-.293-.125-.293-.279 0-.153.108-.277.262-.277h.046c.164 0 .333-.01.484-.024a.272.272 0 0 1 .228.087 1.334 1.334 0 0 1 .18-.107.271.271 0 0 1 .116-.052l.02-.004a.696.696 0 0 1 .208-.038.277.277 0 0 1 .265.36c-.046.147-.148.18-.326.216a.67.67 0 0 0-.132.07.282.282 0 0 1-.333-.018c.076.098.08.24-.001.341-.095.12-.187.264-.276.427a.276.276 0 0 1-.244.145Zm-.788-.883c-.012 0-.025 0-.037-.002a3.88 3.88 0 0 1-.587-.123.278.278 0 0 1-.187-.345l.003-.012-.006.013a.277.277 0 0 1-.379.107 2.289 2.289 0 0 1-.504-.379.278.278 0 0 1 .393-.392c.11.11.238.205.382.286.12.066.17.208.128.332a.278.278 0 0 1 .327-.143c.154.046.322.08.5.105a.278.278 0 0 1-.033.553Zm-1.363-1.3c-.236 0-.542-.091-.728-.31-.284-.335-.452-.766-.426-1.096.007-.088-.08-.16-.164-.182-.048-.012-.133-.02-.173.066a.14.14 0 0 1-.252-.117c.086-.188.28-.272.495-.218.199.052.39.23.37.473-.02.256.126.616.362.894.124.147.34.206.486.212.12.006.18-.021.193-.033-.032-.074-.443-.29-.619-.383-.15-.078-.194-.186-.205-.262-.037-.253.222-.509.474-.756.088-.087.172-.17.217-.23.052-.068.044-.114.034-.142-.039-.104-.205-.206-.405-.25-.185-.042-.31-.131-.37-.267-.081-.178-.039-.412.13-.714a.139.139 0 1 1 .243.135c-.16.284-.144.413-.12.465.023.051.082.087.177.108.235.053.518.192.605.426a.42.42 0 0 1-.071.406c-.058.077-.15.167-.245.262-.144.14-.411.404-.394.517.004.023.034.044.06.057.417.219.694.377.75.57a.253.253 0 0 1-.023.2c-.053.094-.166.152-.325.166a.836.836 0 0 1-.076.004Z"
/>
<path
fill="#FFCC4D"
d="M10.833 10.555c.154 0 .278-.248.278-.555 0-.307-.124-.556-.278-.556-.153 0-.277.25-.277.556 0 .307.124.555.277.555ZM9.607 9.549c0 .16-.192.29-.429.29-.236 0-.428-.13-.428-.29 0-.16.192-.29.428-.29s.429.13.429.29Zm-.66-2.57c.028.117-.126.255-.344.307-.218.051-.416-.003-.445-.12-.028-.119.126-.257.344-.308.218-.051.417.002.445.12Z"
/>
<path
fill="#C1694F"
d="M12.518 9.975c.05.039.135-.405.123-.543 0-.01-.017-.304.046-.514.038-.07.04-.601-.019-.74.047-.005.103-.02.11-.076-.216.08-.266-.454-.473-.76-.202-.308-.451-.487-.712-.674a.546.546 0 0 1 .09-.15c-.319.16-.817-.42-1.552-.376-.165.016-.244.026-.286.127-.137.012-.277.043-.277.223 0 .044.04.122.128.123.12.035.217.008.3.176l.02.173s-.106-.137-.165-.159l.036-.074c-.056-.032-.154-.006-.154-.006s-.214-.1-.386-.073l-.033-.14c-.03.086-.097.082-.107.162-.019-.057-.044-.129-.061-.187-.06.082-.043.171-.065.257-.023.02-.07.02-.083-.035-.006-.067-.015-.073-.015-.154-.043.076-.095.113-.112.244l-.046-.145c.001.171-.145.273-.284.393-.04.072.006.073.01.11l.072.037.132-.01c.022.028.004.03.061.047.154.043.345-.141.495.148-.07.058-.139.193-.116.219.027 0-.056.039.056.003a.987.987 0 0 0-.195.272c-.014.032.046-.005.034.054l.028-.004c-.266.288-.009.598-.037.764.044.071.05-.002.105-.01.047.205.181.33.264.49l-.174.002c.004.077.074.15.129.217l-.117.037a.626.626 0 0 0-.195.152c-.038.093.185.116.293.132l-.004.113a.88.88 0 0 0 .363-.043l.042-.033.095.052c.031 0 .08-.127.058-.224.061.073.119.19.18.264l.057-.008c.053.083.124.165.176.248l.059.022c.034-.012.063-.016.08-.083l.027.047.093-.063.064-.013.049.079c.028-.01.056-.072.057-.138.03.057.037.053.058.068l.043-.09.23.216.175.01c.062.042.233.068.261 0 .14.06.306-.008.297-.074a.592.592 0 0 0 .327.008c.024-.003.085-.063.028-.108-.427-.296-1.058-.788-1.302-.906 0-.088-.066-.404-.137-.49l.057-.097c.167.155.227.14.315.164.094.075.127.19.222.293l.084.016a1.434 1.434 0 0 0-.308-.485c.091.045.242.167.344.255.066.112.086.2.147.34.044.03.09.133.084.047-.01-.162-.125-.418-.125-.436.181.143.18.366.234.503.046.068.07.16.09.139l-.054-.42-.03-.154c.133.077.18.372.244.725 0 .056.022.118.02.154.028.036.06.134.06.076 0 0 0-.575-.04-.707-.01-.07.017-.185.017-.185l.151.735v.175l.073.074c.014-.145.03-.288.045-.431l-.055-.514V8.68c0-.052.047-.042.078.017.007.126.007.224.012.35.022.143.037.248.048.43.006.149.012.503.043.497Z"
/>
</g>
<defs>
<clipPath id="mexico-icon_svg__a">
<path fill="#fff" d="M0 0h20v20H0z" />
</clipPath>
</defs>
</svg>
)
})
export default SvgMexicoIcon
-25
View File
@@ -1,25 +0,0 @@
import { createIcon } from '../lib/create-icon'
const SvgMilestonesIcon = createIcon(props => {
return (
<svg
{...props}
xmlns="http://www.w3.org/2000/svg"
width={props.width}
height={props.height}
fill="none"
viewBox="0 0 20 20"
focusable={false}
aria-hidden={true}
>
<path
fill={props.color}
fillRule="evenodd"
d="M11.826 4.694c-.487-.092-.89-.094-1.825-.094-.39 0-.76.003-1.107.01.324.361.699.795 1.075 1.265.51.637 1.03 1.352 1.427 2.046.384.672.704 1.413.704 2.079 0 .666-.32 1.407-.704 2.079-.397.694-.918 1.409-1.427 2.046-.376.47-.751.904-1.075 1.265.347.007.716.01 1.106.01.936 0 1.338-.002 1.826-.094.81-.154 1.982-.732 2.596-1.282.375-.336.533-.54.902-1.023.436-.568.84-1.156 1.132-1.7.301-.563.444-1.005.444-1.301 0-.296-.143-.739-.444-1.3-.293-.545-.696-1.133-1.131-1.7-.37-.484-.528-.688-.903-1.024-.614-.55-1.786-1.128-2.596-1.282ZM7.32 15.324a30.19 30.19 0 0 0 1.711-1.949c.49-.613.97-1.273 1.323-1.892.366-.64.546-1.149.546-1.483 0-.334-.18-.843-.546-1.484-.353-.618-.832-1.278-1.323-1.891a29.783 29.783 0 0 0-1.711-1.95c-.506.036-.952.086-1.345.151-.982.164-1.574.418-1.954.75-.367.322-.603.775-.744 1.493-.143.732-.176 1.678-.176 2.93 0 1.254.033 2.2.176 2.932.14.718.377 1.171.744 1.493.38.332.972.586 1.953.75.394.066.84.115 1.346.15ZM10 3.4c-1.756 0-3.14.062-4.223.243-1.08.18-1.926.488-2.546 1.03-.633.554-.96 1.288-1.131 2.165-.17.86-.2 1.915-.2 3.162 0 1.247.03 2.301.2 3.162.171.877.498 1.61 1.13 2.164.62.543 1.466.851 2.547 1.032 1.082.18 2.467.242 4.224.242h.043c.883 0 1.396 0 2.006-.115 1.024-.194 2.396-.872 3.173-1.567.462-.413.677-.694 1.047-1.178l.007-.01c.456-.594.901-1.239 1.236-1.862.325-.606.587-1.265.587-1.868 0-.603-.262-1.262-.587-1.868-.335-.623-.78-1.268-1.236-1.862l-.007-.01c-.37-.484-.585-.765-1.047-1.178-.777-.695-2.148-1.372-3.173-1.567-.61-.115-1.123-.115-2.006-.115H10Z"
clipRule="evenodd"
/>
</svg>
)
})
export default SvgMilestonesIcon
-25
View File
@@ -1,25 +0,0 @@
import { createIcon } from '../lib/create-icon'
const SvgMoveBottomIcon = createIcon(props => {
return (
<svg
{...props}
xmlns="http://www.w3.org/2000/svg"
width={props.width}
height={props.height}
fill="none"
viewBox="0 0 20 20"
focusable={false}
aria-hidden={true}
>
<path
fill={props.color}
fillRule="evenodd"
d="M11.1 4.25c0-.77.095-.855.188-.914.092-.057.276-.126.656-.172.373-.046.874-.064 1.556-.064.683 0 1.184.018 1.556.064.38.046.565.115.657.172.093.059.187.144.187.914 0 .366-.016.582-.057.727-.031.112-.067.151-.125.188-.09.056-.272.125-.653.171-.373.046-.877.064-1.565.064-.687 0-1.19-.018-1.564-.064-.381-.046-.564-.115-.654-.171-.058-.037-.093-.076-.124-.188-.04-.145-.058-.361-.058-.727Zm2.4-2.35c-.692 0-1.253.018-1.701.073-.44.054-.834.15-1.149.347-.515.324-.677.821-.727 1.33H6.675c-.539 0-.98 0-1.338.03-.37.03-.705.094-1.017.253A2.6 2.6 0 0 0 3.183 5.07c-.159.312-.224.647-.254 1.018-.03.358-.03.798-.03 1.337v5.15c0 .539 0 .98.03 1.338.03.37.095.705.254 1.017a2.6 2.6 0 0 0 1.137 1.137c.312.159.647.224 1.017.254.33.027.732.029 1.215.029l-.976.976.849.848 2-2 .424-.424-.424-.424-2-2-.849.848.976.976c-.491 0-.84-.003-1.117-.025-.296-.024-.455-.069-.57-.128a1.4 1.4 0 0 1-.613-.611c-.058-.116-.103-.275-.127-.571C4.1 13.51 4.1 13.12 4.1 12.55v-5.1c0-.57 0-.961.025-1.265.024-.296.069-.455.127-.57a1.4 1.4 0 0 1 .612-.612c.116-.06.275-.104.571-.128.304-.025.695-.025 1.265-.025h3.223c.015.156.04.308.079.45.098.353.293.66.64.88.314.198.708.293 1.149.347.449.055 1.012.073 1.71.073.697 0 1.26-.018 1.71-.073.44-.054.834-.15 1.148-.348.346-.218.541-.526.64-.879.09-.32.101-.686.101-1.05 0-.688-.03-1.478-.75-1.93-.314-.198-.708-.293-1.148-.347-.448-.055-1.01-.073-1.702-.073ZM11.1 10c0-.77.095-.855.188-.914.092-.057.276-.126.656-.172.373-.046.874-.064 1.556-.064.683 0 1.184.018 1.556.064.38.046.565.115.657.172.093.059.187.144.187.914 0 .366-.016.582-.057.727-.031.112-.067.151-.125.188-.09.056-.272.125-.653.171-.373.046-.877.064-1.565.064-.687 0-1.19-.018-1.564-.064-.381-.046-.564-.115-.654-.171-.058-.037-.093-.076-.124-.188-.04-.145-.058-.361-.058-.727Zm2.4-2.35c-.692 0-1.253.018-1.701.073-.44.054-.834.15-1.149.347-.72.452-.75 1.242-.75 1.93 0 .364.012.73.102 1.05.098.353.293.66.64.88.314.198.708.293 1.149.347.449.055 1.012.073 1.71.073.697 0 1.26-.018 1.71-.073.44-.053.834-.15 1.148-.348.346-.219.541-.526.64-.879.09-.32.101-.686.101-1.05 0-.688-.03-1.478-.75-1.93-.314-.198-.708-.293-1.148-.347-.448-.055-1.01-.073-1.702-.073Zm-1.7 5.823c.448-.055 1.009-.073 1.701-.073.693 0 1.254.018 1.702.073.44.054.834.15 1.149.347.719.452.75 1.242.75 1.93 0 .364-.013.73-.102 1.05-.099.353-.294.66-.64.88-.314.198-.708.294-1.149.347-.449.055-1.013.073-1.71.073-.697 0-1.26-.018-1.71-.073-.44-.053-.834-.15-1.149-.348a1.463 1.463 0 0 1-.64-.879c-.089-.32-.1-.686-.1-1.05 0-.688.03-1.478.749-1.93.315-.198.708-.293 1.149-.347Z"
clipRule="evenodd"
/>
</svg>
)
})
export default SvgMoveBottomIcon
-25
View File
@@ -1,25 +0,0 @@
import { createIcon } from '../lib/create-icon'
const SvgMoveDownIcon = createIcon(props => {
return (
<svg
{...props}
xmlns="http://www.w3.org/2000/svg"
width={props.width}
height={props.height}
fill="none"
viewBox="0 0 20 20"
focusable={false}
aria-hidden={true}
>
<path
fill={props.color}
fillRule="evenodd"
d="M11.748 17.97c.474.1 1.056.13 1.753.13.696 0 1.278-.03 1.751-.13.48-.1.902-.282 1.22-.624.314-.34.462-.767.538-1.224.076-.453.09-.997.09-1.622 0-.624-.013-1.168-.087-1.62-.074-.457-.22-.885-.533-1.225-.317-.343-.739-.525-1.22-.625-.474-.1-1.059-.13-1.76-.13-.7 0-1.285.03-1.76.13-.48.1-.902.282-1.219.625-.314.34-.459.768-.533 1.225-.074.452-.088.996-.088 1.62 0 .625.015 1.17.09 1.622.077.457.225.885.54 1.224.317.341.738.523 1.219.624Zm-6.172-1.894.976-.976c-.483 0-.884-.002-1.214-.03-.37-.03-.705-.094-1.018-.254a2.6 2.6 0 0 1-1.136-1.136c-.16-.312-.224-.647-.254-1.018-.03-.358-.03-.798-.03-1.337v-2.65c0-.54 0-.98.03-1.338.03-.37.095-.705.254-1.018A2.6 2.6 0 0 1 4.32 5.183c.313-.16.647-.224 1.018-.254.358-.03.798-.03 1.337-.03h3.232c.01-.377.032-.719.08-1.019.075-.457.22-.885.534-1.225.317-.343.738-.525 1.22-.625.474-.1 1.059-.13 1.76-.13.7 0 1.285.03 1.76.13.48.1.902.282 1.219.625.314.34.459.768.533 1.225.074.452.087.996.087 1.62 0 .625-.014 1.17-.09 1.622-.076.458-.224.885-.539 1.224-.317.341-.738.523-1.219.624-.473.1-1.055.13-1.752.13-.696 0-1.278-.03-1.752-.13-.48-.1-.901-.283-1.218-.624-.315-.34-.463-.766-.54-1.224A7.54 7.54 0 0 1 9.908 6.1H6.7c-.57 0-.96 0-1.264.025-.297.024-.456.069-.571.127a1.4 1.4 0 0 0-.612.612c-.059.115-.103.275-.127.571C4.1 7.738 4.1 8.13 4.1 8.7v2.6c0 .57 0 .961.026 1.264.024.297.068.456.127.571a1.4 1.4 0 0 0 .612.612c.115.059.274.103.57.127.277.023.626.025 1.117.026l-.976-.976.849-.848 2 2 .424.424-.424.424-2 2-.849-.848ZM11.101 5.5c0 .625.016 1.08.073 1.425.057.339.144.506.235.604.089.096.246.195.586.266.347.073.827.105 1.506.105.678 0 1.158-.032 1.505-.105.34-.07.497-.17.586-.266.091-.098.178-.265.235-.604.057-.345.073-.8.073-1.425 0-.626-.015-1.082-.071-1.427-.055-.34-.141-.506-.23-.604-.088-.094-.243-.193-.584-.265-.348-.072-.83-.104-1.514-.104s-1.167.032-1.515.104c-.34.072-.496.171-.583.265-.09.098-.176.264-.231.604-.056.345-.072.8-.072 1.427Z"
clipRule="evenodd"
/>
</svg>
)
})
export default SvgMoveDownIcon
-25
View File
@@ -1,25 +0,0 @@
import { createIcon } from '../lib/create-icon'
const SvgMoveTopIcon = createIcon(props => {
return (
<svg
{...props}
xmlns="http://www.w3.org/2000/svg"
width={props.width}
height={props.height}
fill="none"
viewBox="0 0 20 20"
focusable={false}
aria-hidden={true}
>
<path
fill={props.color}
fillRule="evenodd"
d="M11.1 15.824c0 .77.095.856.188.914.092.058.276.126.656.172.373.046.874.064 1.556.064.683 0 1.184-.018 1.556-.064.38-.046.565-.114.657-.172.093-.058.187-.143.187-.914 0-.365-.016-.582-.057-.727-.031-.111-.067-.15-.125-.187-.09-.057-.272-.125-.653-.172-.373-.045-.877-.064-1.565-.064-.687 0-1.19.019-1.564.064-.381.047-.564.115-.654.172-.058.036-.093.075-.124.187-.04.145-.058.362-.058.727Zm2.4 2.35c-.692 0-1.253-.018-1.701-.072-.44-.054-.834-.15-1.149-.348-.515-.323-.677-.82-.727-1.33H6.675c-.539 0-.98 0-1.338-.029-.37-.03-.705-.095-1.017-.254a2.6 2.6 0 0 1-1.137-1.136c-.159-.313-.224-.648-.254-1.018-.03-.358-.03-.799-.03-1.338V7.5c0-.539 0-.98.03-1.337.03-.37.095-.705.254-1.018A2.6 2.6 0 0 1 4.32 4.008c.312-.16.647-.224 1.017-.254.33-.027.732-.03 1.215-.03l-.976-.975.849-.849 2 2 .424.424-.424.425-2 2-.849-.849.976-.976c-.491 0-.84.003-1.117.026-.296.024-.455.068-.57.127a1.4 1.4 0 0 0-.613.612c-.058.115-.103.274-.127.57-.025.304-.025.695-.025 1.265v5.1c0 .57 0 .962.025 1.265.024.296.069.456.127.57a1.4 1.4 0 0 0 .612.613c.116.058.275.103.571.127.304.025.695.025 1.265.025h3.223c.015-.156.04-.307.079-.45.098-.353.293-.66.64-.879.314-.198.708-.294 1.149-.348.449-.055 1.012-.073 1.71-.073.697 0 1.26.018 1.71.073.44.054.834.15 1.148.348.346.219.541.526.64.88.09.32.101.686.101 1.05 0 .687-.03 1.477-.75 1.93-.314.197-.708.293-1.148.347-.448.054-1.01.072-1.702.072Zm-2.4-8.1c0 .77.095.856.188.914.092.058.276.126.656.172.373.046.874.064 1.556.064.683 0 1.184-.018 1.556-.064.38-.046.565-.114.657-.172.093-.058.187-.143.187-.914 0-.365-.016-.582-.057-.727-.031-.111-.067-.15-.125-.187-.09-.057-.272-.125-.653-.172-.373-.045-.877-.064-1.565-.064-.687 0-1.19.019-1.564.064-.381.047-.564.115-.654.172-.058.036-.093.076-.124.187-.04.145-.058.362-.058.727Zm2.4 2.35c-.692 0-1.253-.018-1.701-.072-.44-.054-.834-.15-1.149-.348-.72-.451-.75-1.242-.75-1.93 0-.363.012-.73.102-1.05.098-.353.293-.66.64-.879.314-.198.708-.294 1.149-.348.449-.055 1.012-.073 1.71-.073.697 0 1.26.018 1.71.073.44.054.834.15 1.148.348.346.219.541.526.64.88.09.32.101.686.101 1.05 0 .687-.03 1.478-.75 1.93-.314.197-.708.293-1.148.346-.448.055-1.01.073-1.702.073Zm-1.7-5.822c.448.054 1.009.072 1.701.072.693 0 1.254-.018 1.702-.072.44-.054.834-.15 1.149-.348.719-.451.75-1.242.75-1.93 0-.363-.013-.73-.102-1.05a1.463 1.463 0 0 0-.64-.879c-.314-.198-.708-.294-1.149-.348-.449-.055-1.013-.073-1.71-.073-.697 0-1.26.018-1.71.073-.44.054-.834.15-1.149.348-.345.219-.54.526-.64.88-.089.32-.1.686-.1 1.05 0 .687.03 1.478.749 1.93.315.197.708.293 1.149.347Z"
clipRule="evenodd"
/>
</svg>
)
})
export default SvgMoveTopIcon
-25
View File
@@ -1,25 +0,0 @@
import { createIcon } from '../lib/create-icon'
const SvgMoveUpIcon = createIcon(props => {
return (
<svg
{...props}
xmlns="http://www.w3.org/2000/svg"
width={props.width}
height={props.height}
fill="none"
viewBox="0 0 20 20"
focusable={false}
aria-hidden={true}
>
<path
fill={props.color}
fillRule="evenodd"
d="M11.748 2.03c.474-.1 1.056-.13 1.753-.13.696 0 1.278.03 1.751.13.48.1.902.282 1.22.624.314.34.462.766.538 1.224.076.452.09.997.09 1.622 0 .624-.013 1.168-.087 1.62-.074.456-.22.884-.533 1.224-.317.343-.739.525-1.22.626-.474.1-1.059.13-1.76.13-.7 0-1.285-.03-1.76-.13-.48-.1-.902-.283-1.219-.626-.314-.34-.459-.768-.533-1.224-.074-.452-.088-.996-.088-1.62 0-.625.015-1.17.09-1.622.077-.458.225-.885.54-1.224.317-.342.738-.524 1.219-.624ZM5.577 3.924l.976.976c-.483 0-.884.002-1.214.03-.37.03-.705.094-1.018.253A2.6 2.6 0 0 0 3.184 6.32c-.16.312-.224.647-.254 1.018-.03.358-.03.798-.03 1.337v2.65c0 .539 0 .98.03 1.337.03.371.095.706.254 1.018a2.6 2.6 0 0 0 1.136 1.137c.313.159.647.223 1.018.254.358.029.798.029 1.337.029h3.232c.01.378.032.72.08 1.02.075.456.22.884.534 1.224.317.343.738.525 1.22.626.474.1 1.059.13 1.76.13.7 0 1.285-.03 1.76-.13.48-.1.902-.282 1.219-.626.314-.34.459-.768.533-1.224.074-.452.087-.996.087-1.62 0-.625-.014-1.17-.09-1.622-.076-.458-.224-.885-.539-1.224-.317-.342-.738-.524-1.219-.624-.473-.1-1.055-.13-1.752-.13-.696 0-1.278.03-1.752.13-.48.1-.901.282-1.218.624-.315.34-.463.766-.54 1.224a7.54 7.54 0 0 0-.083 1.022H6.7c-.57 0-.96 0-1.264-.025-.297-.024-.456-.069-.571-.128a1.4 1.4 0 0 1-.612-.611c-.059-.116-.103-.275-.127-.571C4.1 12.26 4.1 11.87 4.1 11.3V8.7c0-.57 0-.961.026-1.265.024-.296.068-.455.127-.57a1.4 1.4 0 0 1 .612-.612c.115-.06.274-.104.57-.128.277-.022.626-.025 1.117-.025l-.976.976.849.848 2-2 .424-.424-.424-.424-2-2-.849.848ZM11.101 14.5c0-.625.016-1.08.073-1.425.057-.34.144-.506.235-.604.089-.096.246-.195.586-.267.347-.072.827-.104 1.506-.104.678 0 1.158.032 1.505.104.34.072.497.171.586.267.091.098.178.265.235.604.057.344.073.8.073 1.425 0 .626-.015 1.082-.071 1.427-.055.34-.141.506-.23.603-.088.095-.243.194-.584.265-.348.073-.83.105-1.514.105s-1.167-.032-1.515-.105c-.34-.07-.496-.17-.583-.265-.09-.097-.176-.263-.231-.603-.056-.345-.072-.8-.072-1.427Z"
clipRule="evenodd"
/>
</svg>
)
})
export default SvgMoveUpIcon
-28
View File
@@ -1,28 +0,0 @@
import { createIcon } from '../lib/create-icon'
const SvgNetherlandsIcon = createIcon(props => {
return (
<svg
{...props}
xmlns="http://www.w3.org/2000/svg"
width={props.width}
height={props.height}
fill="none"
viewBox="0 0 20 20"
focusable={false}
aria-hidden={true}
>
<path fill="#fff" d="M0 7.778h20v4.444H0V7.778Z" />
<path
fill="#AE1F28"
d="M17.778 2.778H2.222A2.222 2.222 0 0 0 0 5v2.778h20V5a2.222 2.222 0 0 0-2.222-2.222Z"
/>
<path
fill="#20478B"
d="M2.222 17.222h15.556A2.222 2.222 0 0 0 20 15v-2.778H0V15c0 1.227.995 2.222 2.222 2.222Z"
/>
</svg>
)
})
export default SvgNetherlandsIcon
-21
View File
@@ -1,21 +0,0 @@
import { createIcon } from '../lib/create-icon'
const SvgNeutralIcon = createIcon(props => {
return (
<svg
{...props}
xmlns="http://www.w3.org/2000/svg"
width={props.width}
height={props.height}
fill="none"
viewBox="0 0 20 20"
focusable={false}
aria-hidden={true}
>
<circle cx={10} cy={10} r={7.5} fill={props.color} />
<path stroke="#fff" strokeWidth={1.2} d="M7 10h6" />
</svg>
)
})
export default SvgNeutralIcon
+1 -1
View File
@@ -16,7 +16,7 @@ const SvgNftIcon = createIcon(props => {
<path
fill={props.color}
fillRule="evenodd"
d="M13.286 3.6h.009c.01.002.094.018.265.137.176.121.388.312.625.568.474.51.996 1.221 1.485 1.992.488.767.93 1.575 1.248 2.269.16.347.284.658.367.916.087.27.115.439.115.518 0 .08-.028.248-.115.518a8.675 8.675 0 0 1-.367.916 19.78 19.78 0 0 1-1.248 2.27 18.49 18.49 0 0 1-.554.825 5.02 5.02 0 0 0-.58-.653C13.243 12.654 11.549 12.4 10 12.4c-1.549 0-3.243.254-4.537 1.476a5.032 5.032 0 0 0-.596.675c-.19-.268-.38-.553-.563-.846a19.346 19.346 0 0 1-1.23-2.267 8.718 8.718 0 0 1-.36-.917c-.086-.27-.114-.44-.114-.521 0-.08.028-.248.115-.518a8.69 8.69 0 0 1 .367-.916c.318-.694.76-1.502 1.248-2.27.49-.77 1.011-1.48 1.485-1.991.238-.256.449-.447.625-.568.171-.119.255-.135.265-.137h6.581ZM5.645 15.542l.137.152c.239.255.452.444.631.566.09.06.16.097.215.118.054.022.078.022.078.022h6.589c.01-.002.094-.018.265-.137.176-.122.388-.312.625-.568a9.45 9.45 0 0 0 .157-.174 3.944 3.944 0 0 0-.63-.772c-.955-.903-2.26-1.15-3.712-1.15-1.452 0-2.758.247-3.713 1.15a3.954 3.954 0 0 0-.642.793ZM18.6 10c0-.27-.075-.584-.173-.887a9.866 9.866 0 0 0-.418-1.047 20.971 20.971 0 0 0-1.326-2.413c-.51-.805-1.077-1.581-1.618-2.164a5.217 5.217 0 0 0-.822-.74c-.26-.18-.59-.35-.949-.35H6.706c-.36 0-.689.17-.949.35a5.25 5.25 0 0 0-.822.74c-.54.583-1.107 1.36-1.618 2.164a20.985 20.985 0 0 0-1.326 2.413c-.171.374-.315.73-.417 1.047-.099.303-.174.616-.174.887 0 .269.073.58.17.884.1.316.24.672.41 1.047.337.75.8 1.605 1.308 2.413.507.806 1.071 1.584 1.617 2.169a5.1 5.1 0 0 0 .836.74c.27.183.603.347.965.347h6.588c.36 0 .689-.17.95-.35a5.22 5.22 0 0 0 .821-.739c.541-.583 1.107-1.36 1.618-2.164.513-.808.982-1.663 1.326-2.413.171-.374.316-.73.418-1.047.098-.304.173-.616.173-.887ZM3.4 20.5c0-.17.002-.337.006-.5h13.188c.004.163.006.33.006.5v.6H3.4v-.6ZM8.1 8a1.9 1.9 0 1 1 3.8 0 1.9 1.9 0 0 1-3.8 0ZM10 4.9a3.1 3.1 0 1 0 0 6.2 3.1 3.1 0 0 0 0-6.2Z"
d="M13.491 3.1h.008c.003 0 .027.003.077.023.056.023.132.064.226.13.19.132.417.339.67.614.506.55 1.062 1.314 1.583 2.14.518.824.99 1.691 1.328 2.437.17.373.303.708.392.986.094.291.125.478.125.57 0 .093-.031.279-.125.57-.09.278-.222.613-.392.986a21.252 21.252 0 0 1-1.976 3.405 5.171 5.171 0 0 0-.87-1.085C13.242 12.654 11.548 12.4 10 12.4s-3.243.254-4.537 1.476a5.198 5.198 0 0 0-.886 1.111 20.846 20.846 0 0 1-1.97-3.427 9.44 9.44 0 0 1-.385-.987c-.09-.29-.122-.478-.122-.573 0-.093.031-.279.125-.57.089-.278.222-.613.391-.986.34-.746.81-1.613 1.33-2.437.52-.826 1.076-1.59 1.581-2.14a4.36 4.36 0 0 1 .67-.614c.095-.066.17-.107.227-.13A.284.284 0 0 1 6.5 3.1h6.992ZM5.387 16.015c.035.04.07.078.106.116.254.275.483.48.677.613.206.14.31.156.33.156h6.999s.024-.001.077-.023a1.21 1.21 0 0 0 .226-.13 4.33 4.33 0 0 0 .67-.614c.043-.046.086-.094.129-.143a4.21 4.21 0 0 0-.888-1.241C12.757 13.846 11.452 13.6 10 13.6s-2.758.246-3.713 1.149a4.227 4.227 0 0 0-.9 1.266ZM19.1 10c0-.282-.078-.612-.182-.936a10.52 10.52 0 0 0-.442-1.117 22.484 22.484 0 0 0-1.406-2.58c-.542-.86-1.142-1.69-1.715-2.312a5.517 5.517 0 0 0-.866-.786c-.274-.192-.618-.369-.99-.369H6.5c-.372 0-.715.177-.989.369a5.521 5.521 0 0 0-.867.786c-.572.622-1.172 1.452-1.714 2.313a22.5 22.5 0 0 0-1.406 2.579c-.182.4-.334.78-.442 1.117C.978 9.388.9 9.718.9 10c0 .28.076.608.178.933.105.336.254.716.433 1.116a22.01 22.01 0 0 0 1.388 2.581c.537.862 1.135 1.693 1.713 2.317.289.311.586.586.881.788.284.194.632.365 1.007.365h7c.371 0 .715-.177.989-.369.288-.201.581-.475.866-.786.573-.622 1.173-1.452 1.715-2.313a22.483 22.483 0 0 0 1.406-2.579c.182-.4.334-.78.442-1.117.104-.324.182-.653.182-.936ZM3.4 20.5c0-.17.002-.337.006-.5h13.188c.004.163.006.33.006.5v.6H3.4v-.6ZM8.1 8a1.9 1.9 0 1 1 3.8 0 1.9 1.9 0 0 1-3.8 0ZM10 4.9a3.1 3.1 0 1 0 0 6.2 3.1 3.1 0 0 0 0-6.2Z"
clipRule="evenodd"
/>
</g>
-25
View File
@@ -1,25 +0,0 @@
import { createIcon } from '../lib/create-icon'
const SvgOrgIcon = createIcon(props => {
return (
<svg
{...props}
xmlns="http://www.w3.org/2000/svg"
width={props.width}
height={props.height}
fill="none"
viewBox="0 0 20 20"
focusable={false}
aria-hidden={true}
>
<path
fill={props.color}
fillRule="evenodd"
d="M5.6 4.75c0-.466.03-.745.1-.934.053-.147.136-.254.343-.354.24-.117.635-.214 1.298-.277C7.996 3.123 8.858 3.1 10 3.1s2.004.023 2.658.085c.664.063 1.059.16 1.299.277.206.1.29.207.343.354.07.189.1.468.1.934 0 .468-.028.748-.097.938-.052.146-.133.252-.335.35-.238.116-.63.214-1.296.277-.656.061-1.522.085-2.672.085-1.15 0-2.017-.024-2.672-.085-.665-.063-1.059-.16-1.296-.276-.202-.099-.283-.205-.336-.35-.069-.19-.096-.47-.096-.94ZM10 1.9c-1.15 0-2.058.023-2.771.09-.704.067-1.272.18-1.71.392-.47.228-.778.566-.945 1.017-.151.409-.174.88-.174 1.35 0 .47.02.94.168 1.348.163.451.468.79.938 1.02.436.213 1.004.326 1.71.392.585.056 1.305.081 2.184.089V9.65H6.962c-.439 0-.827 0-1.14.042-.338.046-.677.15-.953.427-.277.276-.382.615-.427.954-.042.312-.042.7-.042 1.14v.692a9.93 9.93 0 0 0-1.112.078c-.448.062-.85.174-1.17.404-.343.246-.526.58-.618.95-.086.345-.1.745-.1 1.162 0 .415.012.815.096 1.158.09.37.27.705.614.953.319.23.722.343 1.17.405.454.063 1.022.084 1.72.084s1.266-.02 1.72-.084c.448-.062.85-.174 1.17-.405.343-.248.523-.584.613-.953.084-.343.097-.743.097-1.158 0-.417-.014-.817-.1-1.161-.093-.37-.275-.705-.619-.951-.32-.23-.722-.342-1.17-.404a9.93 9.93 0 0 0-1.111-.078v-.656c0-.488.001-.794.031-1.017.028-.206.07-.25.086-.266.016-.016.06-.058.266-.086.223-.03.529-.031 1.017-.031h6c.488 0 .794.001 1.017.031.206.028.25.07.266.086.016.017.058.06.086.266.03.223.031.529.031 1.017v.656a9.93 9.93 0 0 0-1.112.078c-.448.062-.85.174-1.17.404-.343.246-.526.58-.618.95-.086.345-.1.745-.1 1.162 0 .415.012.815.096 1.158.09.37.27.705.614.953.319.23.722.343 1.17.405.454.063 1.022.084 1.72.084s1.266-.02 1.72-.084c.448-.062.85-.174 1.17-.405.343-.248.523-.584.613-.953.084-.343.097-.743.097-1.158 0-.417-.014-.817-.1-1.161-.093-.37-.275-.705-.619-.951-.32-.23-.722-.342-1.17-.404a9.926 9.926 0 0 0-1.111-.078v-.693c0-.439 0-.827-.042-1.14-.046-.338-.15-.677-.427-.953-.276-.277-.615-.381-.954-.427-.312-.042-.7-.042-1.14-.042H10.6V7.598a26.526 26.526 0 0 0 2.184-.089c.705-.066 1.274-.18 1.71-.392.47-.23.774-.569.938-1.02.147-.408.168-.878.168-1.347 0-.471-.023-.942-.174-1.351-.167-.451-.475-.79-.946-1.017-.437-.212-1.005-.325-1.709-.392-.713-.067-1.622-.09-2.771-.09ZM2.6 15.5c0-.416.017-.683.064-.87.04-.161.092-.223.155-.268.086-.062.262-.138.635-.19.367-.05.864-.072 1.546-.072s1.179.021 1.546.072c.373.052.548.128.635.19.063.045.114.107.155.268.046.187.064.454.064.87 0 .418-.016.685-.062.873-.04.162-.09.222-.15.266-.086.061-.26.137-.634.189-.368.05-.867.072-1.554.072s-1.186-.021-1.554-.072c-.374-.052-.548-.128-.633-.19-.06-.043-.111-.103-.15-.265-.047-.188-.063-.455-.063-.873Zm10.064-.87c-.047.187-.064.454-.064.87 0 .418.016.685.062.873.04.162.09.222.15.266.086.061.26.137.634.189.368.05.867.072 1.554.072s1.186-.021 1.554-.072c.374-.052.548-.128.633-.19.06-.043.111-.103.15-.265.047-.188.063-.455.063-.873 0-.416-.017-.683-.064-.87-.04-.161-.092-.223-.155-.268-.087-.062-.262-.138-.635-.19-.367-.05-.864-.072-1.546-.072s-1.179.021-1.546.072c-.373.052-.549.128-.635.19-.063.045-.115.107-.155.268Z"
clipRule="evenodd"
/>
</svg>
)
})
export default SvgOrgIcon
+1 -1
View File
@@ -15,7 +15,7 @@ const SvgPasswordIcon = createIcon(props => {
<path
fill={props.color}
fillRule="evenodd"
d="M16.856 3.23a6.1 6.1 0 0 0-9.815 6.95l-3.76 3.718-.177.176v2.908h2.902l.177-.18 1.432-1.47.082-.084.044-.109.313-.772.77-.314.11-.046.086-.085.883-.88a6.1 6.1 0 0 0 6.953-9.812Zm-3.993-.576a4.9 4.9 0 1 1-2.77 9.133l-.399-.23-.325.324-1.11 1.106-.893.365-.235.096-.095.234-.363.897L5.5 15.782H4.304v-1.207L8.2 10.72l.33-.326-.232-.4a4.9 4.9 0 0 1 4.564-7.34Zm-.25 3.546a.9.9 0 1 1 1.273 1.273.9.9 0 0 1-1.273-1.273Zm2.122-.849a2.1 2.1 0 1 0-2.97 2.97 2.1 2.1 0 0 0 2.97-2.97Z"
d="M16.856 3.23a6.1 6.1 0 0 0-9.815 6.95l-3.76 3.718-.177.176v2.908h2.902l.177-.18 1.432-1.47.082-.084.044-.109.313-.772.77-.314.11-.046.086-.085.883-.88a6.1 6.1 0 0 0 6.953-9.812Zm-3.993-.576a4.9 4.9 0 1 1-2.77 9.133l-.398-.23-.326.324-1.11 1.106-.893.365-.235.096-.095.234-.363.897L5.5 15.782H4.304v-1.207L8.2 10.72l.33-.326-.232-.4a4.9 4.9 0 0 1 4.564-7.34Zm-.25 3.546a.9.9 0 1 1 1.273 1.273.9.9 0 0 1-1.273-1.273Zm2.122-.849a2.1 2.1 0 1 0-2.97 2.97 2.1 2.1 0 0 0 2.97-2.97Z"
clipRule="evenodd"
/>
</svg>
+1 -1
View File
@@ -15,7 +15,7 @@ const SvgPauseIcon = createIcon(props => {
<path
fill={props.color}
fillRule="evenodd"
d="M10 3.6a6.4 6.4 0 1 0 0 12.8 6.4 6.4 0 0 0 0-12.8ZM2.4 10a7.6 7.6 0 1 1 15.2 0 7.6 7.6 0 0 1-15.2 0Zm5 3V7h1.2v6H7.4Zm4-6v6h1.2V7h-1.2Z"
d="M15.839 4.276c.661.493.661 1.873.661 5.724 0 6 0 6-2.5 6s-2.5 0-2.5-6c0-3.851 0-5.23.661-5.724C12.531 4 13.105 4 14 4s1.47 0 1.839.276Zm-8 0C8.5 4.769 8.5 6.149 8.5 10c0 6 0 6-2.5 6s-2.5 0-2.5-6c0-3.851 0-5.23.661-5.724C4.531 4 5.105 4 6 4s1.47 0 1.839.276Z"
clipRule="evenodd"
/>
</svg>
-25
View File
@@ -1,25 +0,0 @@
import { createIcon } from '../lib/create-icon'
const SvgPauseMediaIcon = createIcon(props => {
return (
<svg
{...props}
xmlns="http://www.w3.org/2000/svg"
width={props.width}
height={props.height}
fill="none"
viewBox="0 0 20 20"
focusable={false}
aria-hidden={true}
>
<path
fill={props.color}
fillRule="evenodd"
d="M15.839 4.276c.661.493.661 1.873.661 5.724 0 6 0 6-2.5 6s-2.5 0-2.5-6c0-3.851 0-5.23.661-5.724C12.531 4 13.105 4 14 4s1.47 0 1.839.276Zm-8 0C8.5 4.769 8.5 6.149 8.5 10c0 6 0 6-2.5 6s-2.5 0-2.5-6c0-3.851 0-5.23.661-5.724C4.531 4 5.105 4 6 4s1.47 0 1.839.276Z"
clipRule="evenodd"
/>
</svg>
)
})
export default SvgPauseMediaIcon
+1 -1
View File
@@ -15,7 +15,7 @@ const SvgPendingIcon = createIcon(props => {
<path
fill={props.color}
fillRule="evenodd"
d="M3.6 10a6.4 6.4 0 1 1 12.8 0 6.4 6.4 0 0 1-12.8 0ZM10 2.4a7.6 7.6 0 1 0 0 15.2 7.6 7.6 0 0 0 0-15.2Zm.6 3.6v3.4h2.9v1.2H9.4V6h1.2Z"
d="M3.1 10a6.9 6.9 0 1 1 13.8 0 6.9 6.9 0 0 1-13.8 0ZM10 1.9a8.1 8.1 0 1 0 0 16.2 8.1 8.1 0 0 0 0-16.2Zm.6 4.1v3.4h2.9v1.2H9.4V6h1.2Z"
clipRule="evenodd"
/>
</svg>
-24
View File
@@ -1,24 +0,0 @@
import { createIcon } from '../lib/create-icon'
const SvgPeopleIcon = createIcon(props => {
return (
<svg
{...props}
xmlns="http://www.w3.org/2000/svg"
width={props.width}
height={props.height}
fill="none"
viewBox="0 0 20 20"
focusable={false}
aria-hidden={true}
>
<path
stroke={props.color}
strokeWidth={1.2}
d="M2.5 11c0 2.157 1.034 3.797 1.615 4.548.11.143.165.214.437.434.273.22.336.25.463.312C6.486 17 8.657 17 14 17c0 0 4 0 4-3.5C18 9 13 9 11.5 12c-2.5-2-4.167-.333-5 .5 0 0-1-2-1-4 0-1.22.559-2.069.994-2.544.124-.136.186-.203.349-.286.061-.03.189-.075.256-.088.18-.036.311-.014.574.03l.278.046c.632.106.948.158 1.184.079a1 1 0 0 0 .622-.608c.085-.234.04-.552-.05-1.186-.067-.462-.1-.694-.204-.867a1 1 0 0 0-.563-.441c-.193-.06-.426-.036-.89.01l-1.135.114c-1.188.118-1.782.178-2.246.551-.463.374-.636.908-.983 1.976C3.133 6.993 2.5 9.313 2.5 11Z"
/>
</svg>
)
})
export default SvgPeopleIcon
-25
View File
@@ -1,25 +0,0 @@
import { createIcon } from '../lib/create-icon'
const SvgPercentageIcon = createIcon(props => {
return (
<svg
{...props}
xmlns="http://www.w3.org/2000/svg"
width={props.width}
height={props.height}
fill="none"
viewBox="0 0 20 20"
focusable={false}
aria-hidden={true}
>
<path
fill={props.color}
fillRule="evenodd"
d="M5.22 4.026C5.741 3.547 6.41 3.4 7 3.4c.59 0 1.257.147 1.78.626.534.49.82 1.234.82 2.224 0 .99-.286 1.735-.82 2.224-.523.479-1.19.626-1.78.626-.59 0-1.258-.147-1.78-.626-.534-.49-.82-1.234-.82-2.224 0-.99.286-1.735.82-2.224Zm.81.885c-.216.199-.43.58-.43 1.339 0 .76.214 1.14.43 1.339.227.208.56.311.97.311.41 0 .742-.103.97-.311.216-.199.43-.579.43-1.339s-.214-1.14-.43-1.339C7.741 4.703 7.41 4.6 7 4.6c-.41 0-.743.103-.97.311ZM5.116 16l8.308-12h1.46L6.575 16h-1.46ZM13 10.9c-.59 0-1.258.147-1.78.627-.534.488-.82 1.233-.82 2.223 0 .99.286 1.735.82 2.224.522.479 1.19.626 1.78.626.59 0 1.257-.147 1.78-.626.534-.49.82-1.234.82-2.224 0-.99-.286-1.735-.82-2.223-.523-.48-1.19-.627-1.78-.627Zm-1.4 2.85c0-.76.214-1.14.43-1.339.227-.208.56-.311.97-.311.41 0 .742.103.97.311.216.199.43.58.43 1.339 0 .76-.214 1.14-.43 1.339-.228.208-.56.311-.97.311-.41 0-.743-.103-.97-.311-.216-.199-.43-.579-.43-1.339Z"
clipRule="evenodd"
/>
</svg>
)
})
export default SvgPercentageIcon
-25
View File
@@ -1,25 +0,0 @@
import { createIcon } from '../lib/create-icon'
const SvgPiggyBankIcon = createIcon(props => {
return (
<svg
{...props}
xmlns="http://www.w3.org/2000/svg"
width={props.width}
height={props.height}
fill="none"
viewBox="0 0 20 20"
focusable={false}
aria-hidden={true}
>
<path
fill={props.color}
fillRule="evenodd"
d="m5.4 2.114.823.329 2.29.916.024-.007a8.558 8.558 0 0 1 2.861-.389c1.773.068 3.972.76 5.601 3.204.814 1.22 1.107 2.377 1.053 3.434-.054 1.05-.448 1.949-.928 2.67a7.897 7.897 0 0 1-1.506 1.65 7.64 7.64 0 0 1-.518.4V17.6h-3.533l-.136-.41-.364-1.09H9.432l-.363 1.09-.137.41H5.4v-1.516a4.63 4.63 0 0 0-3.507-4.492l-.039-.01-.454-.114V8.033l.454-.114.039-.01A4.63 4.63 0 0 0 5.4 3.416V2.114Zm8.791 11.372.007-.005.016-.01.017-.01c.03-.02.077-.05.136-.092.118-.082.288-.206.483-.369a6.7 6.7 0 0 0 1.276-1.395c.394-.593.688-1.286.728-2.065.04-.772-.167-1.677-.853-2.707-1.371-2.057-3.172-2.614-4.65-2.671a7.358 7.358 0 0 0-2.447.332 4.182 4.182 0 0 0-.176.06l-.006.003-.222.09-.223-.09-1.695-.678A5.83 5.83 0 0 1 2.6 8.952v1.596a5.83 5.83 0 0 1 4 5.536v.316h1.467l.364-1.09.136-.41h3.365l.137.41.363 1.09H13.9v-2.74l.29-.174h.001ZM8.867 5.601c1.19-.27 2.44-.27 3.63 0l-.265 1.17a7.045 7.045 0 0 0-3.1 0l-.265-1.17ZM7 9.5a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z"
clipRule="evenodd"
/>
</svg>
)
})
export default SvgPiggyBankIcon
+1 -1
View File
@@ -15,7 +15,7 @@ const SvgPlaceholderIcon = createIcon(props => {
<path
fill={props.color}
fillRule="evenodd"
d="M10 3.6c-1.533 0-2.94.54-4.043 1.438L10 9.081l4.043-4.043A6.374 6.374 0 0 0 10 3.6Zm4.962 2.357L10.919 10l4.043 4.043A6.373 6.373 0 0 0 16.4 10c0-1.533-.539-2.94-1.438-4.043ZM9.08 10 5.038 5.957A6.374 6.374 0 0 0 3.6 10c0 1.533.54 2.94 1.438 4.043L9.081 10Zm-3.124 4.962L10 10.919l4.043 4.043A6.374 6.374 0 0 1 10 16.4c-1.533 0-2.94-.54-4.043-1.438ZM2.4 10a7.6 7.6 0 1 1 15.2 0 7.6 7.6 0 0 1-15.2 0Z"
d="M10 3.1a6.872 6.872 0 0 0-4.398 1.583L10 9.08l4.398-4.398A6.872 6.872 0 0 0 10 3.1Zm5.317 2.502L10.919 10l4.398 4.398A6.872 6.872 0 0 0 16.9 10a6.872 6.872 0 0 0-1.583-4.398ZM9.081 10 4.683 5.602A6.872 6.872 0 0 0 3.1 10c0 1.671.594 3.204 1.583 4.398L9.08 10Zm-3.479 5.317L10 10.919l4.398 4.398A6.872 6.872 0 0 1 10 16.9a6.872 6.872 0 0 1-4.398-1.583ZM1.9 10a8.1 8.1 0 1 1 16.2 0 8.1 8.1 0 0 1-16.2 0Z"
clipRule="evenodd"
/>
</svg>
-23
View File
@@ -1,23 +0,0 @@
import { createIcon } from '../lib/create-icon'
const SvgPlayMediaIcon = createIcon(props => {
return (
<svg
{...props}
xmlns="http://www.w3.org/2000/svg"
width={props.width}
height={props.height}
fill="none"
viewBox="0 0 20 20"
focusable={false}
aria-hidden={true}
>
<path
fill={props.color}
d="M7.193 16c-1.807 0-1.808-12 0-12C9 4 16.5 8.5 16.5 10S9 16 7.193 16Z"
/>
</svg>
)
})
export default SvgPlayMediaIcon
-25
View File
@@ -1,25 +0,0 @@
import { createIcon } from '../lib/create-icon'
const SvgPlugIcon = createIcon(props => {
return (
<svg
{...props}
xmlns="http://www.w3.org/2000/svg"
width={props.width}
height={props.height}
fill="none"
viewBox="0 0 20 20"
focusable={false}
aria-hidden={true}
>
<path
fill={props.color}
fillRule="evenodd"
d="M8.6 4.9h2.8V2.5h1.2v2.407c.262.006.497.016.707.035.479.044.907.136 1.276.373a2.6 2.6 0 0 1 1.12 1.583c.101.426.045.861-.073 1.327-.117.457-.315 1.017-.56 1.712l-.01.028-.74 2.1-.037.103c-.235.668-.406 1.154-.724 1.524a2.6 2.6 0 0 1-1.035.733c-.455.176-.97.175-1.678.175H10.6v2.9H9.4v-2.9h-.246c-.708 0-1.223 0-1.678-.175a2.601 2.601 0 0 1-1.035-.733c-.318-.37-.489-.856-.724-1.524l-.036-.103-.741-2.1-.01-.028c-.246-.695-.443-1.255-.56-1.712-.118-.466-.174-.9-.072-1.327a2.6 2.6 0 0 1 1.12-1.583c.368-.237.796-.33 1.275-.373.21-.019.446-.03.707-.035V2.5h1.2v2.4Zm-3.074 3c-.094-.377-.095-.581-.061-.724a1.4 1.4 0 0 1 .603-.852c.126-.082.326-.15.733-.186.41-.037.949-.038 1.722-.038h2.954c.773 0 1.313 0 1.722.038.407.036.607.104.733.186a1.4 1.4 0 0 1 .603.852c.034.143.033.347-.061.724H5.526Zm.381 1.2c.05.145.105.3.164.465l.741 2.1c.288.816.388 1.068.54 1.246a1.4 1.4 0 0 0 .557.395c.22.084.49.094 1.355.094h1.472c.865 0 1.136-.01 1.354-.095a1.4 1.4 0 0 0 .558-.394c.152-.178.252-.43.54-1.246l.74-2.1c.06-.166.114-.32.165-.465H5.907Z"
clipRule="evenodd"
/>
</svg>
)
})
export default SvgPlugIcon
-45
View File
@@ -1,45 +0,0 @@
import { createIcon } from '../lib/create-icon'
const SvgPortugalIcon = createIcon(props => {
return (
<svg
{...props}
xmlns="http://www.w3.org/2000/svg"
width={props.width}
height={props.height}
fill="none"
viewBox="0 0 20 20"
focusable={false}
aria-hidden={true}
>
<path
fill="#060"
d="M20 15a2.222 2.222 0 0 1-2.222 2.222H2.222A2.222 2.222 0 0 1 0 15V5c0-1.227.995-2.222 2.222-2.222h15.556C19.005 2.778 20 3.773 20 5v10Z"
/>
<path
fill="#D52B1E"
d="M17.778 2.778H8.333v14.444h9.445A2.222 2.222 0 0 0 20 15V5a2.222 2.222 0 0 0-2.222-2.222Z"
/>
<path
fill="#FFCC4D"
d="M8.333 5.556a4.445 4.445 0 1 0 0 8.889 4.445 4.445 0 0 0 0-8.89Zm2.22 3.299 1.16-.774c.273.48.446 1.021.493 1.6l-1.654-.826Zm-1.664 4.478h1.44c-.433.26-.92.437-1.44.512v-.512ZM4.46 9.681a3.859 3.859 0 0 1 .476-1.573l.89.89-1.366.683Zm0 .637 2.081 1.042.249-.498L5.066 10l1.175-.588.785.785.392-.393-.653-.653.026-.013-.249-.497-.19.095-.543-.541.812.135.091-.548-1.396-.232a3.88 3.88 0 0 1 2.462-1.394v6.622H6.056l1.32-.88-.308-.462-1.667 1.11.008.012a3.87 3.87 0 0 1-.948-2.24Zm3.317 3.527a3.867 3.867 0 0 1-1.44-.512h1.44v.512Zm3.493-1.3-1.63-1.63-.393.393.262.262-.22.328 1.32.88H8.89V6.156a3.865 3.865 0 0 1 1.944.867l-1.476.492.175.527 1.667-.556-.057-.17c.093.096.18.197.261.304L9.846 8.658l.154.231-.124.248L11.6 10l-1.725.863.248.497 2.082-1.041a3.87 3.87 0 0 1-.935 2.226Z"
/>
<path
fill="#D52B1E"
d="M6.111 7.222v3.89a2.222 2.222 0 0 0 4.445 0v-3.89H6.11Z"
/>
<path
fill="#fff"
d="M6.667 7.778v3.333a1.667 1.667 0 0 0 3.333 0V7.778H6.667Z"
/>
<path fill="#829ACD" d="M7.222 9.444h2.222v1.111H7.222v-1.11Z" />
<path fill="#829ACD" d="M7.778 8.889h1.11v2.222h-1.11V8.89Z" />
<path
fill="#039"
d="M6.667 9.444h.555v1.112h-.555V9.445Zm1.11 0H8.89v1.112H7.778V9.445Zm1.668 0H10v1.112h-.555V9.445Zm-1.667 1.667h1.111v1.111H7.778v-1.11Zm0-3.333h1.111v1.11H7.778v-1.11Z"
/>
</svg>
)
})
export default SvgPortugalIcon
+1 -1
View File
@@ -16,7 +16,7 @@ const SvgProfileIcon = createIcon(props => {
<path
fill={props.color}
fillRule="evenodd"
d="M3.6 10a6.4 6.4 0 1 1 11.24 4.188 4.914 4.914 0 0 0-.303-.312C13.242 12.654 11.548 12.4 10 12.4s-3.243.254-4.537 1.476a4.91 4.91 0 0 0-.302.312A6.375 6.375 0 0 1 3.6 10Zm2.429 5.019A6.373 6.373 0 0 0 10 16.4c1.5 0 2.88-.516 3.972-1.38a3.692 3.692 0 0 0-.259-.271C12.757 13.846 11.452 13.6 10 13.6s-2.758.246-3.713 1.149a3.697 3.697 0 0 0-.258.27ZM10 2.4a7.6 7.6 0 1 0 0 15.2 7.6 7.6 0 0 0 0-15.2ZM3.4 20.5c0-.17.002-.337.006-.5h13.188c.004.163.006.33.006.5v.6H3.4v-.6ZM8.1 8a1.9 1.9 0 1 1 3.8 0 1.9 1.9 0 0 1-3.8 0ZM10 4.9a3.1 3.1 0 1 0 0 6.2 3.1 3.1 0 0 0 0-6.2Z"
d="M3.1 10a6.9 6.9 0 1 1 12.057 4.584 5.04 5.04 0 0 0-.62-.708C13.242 12.654 11.548 12.4 10 12.4s-3.243.254-4.537 1.476c-.223.21-.43.446-.62.708A6.874 6.874 0 0 1 3.1 10Zm2.626 5.417A6.87 6.87 0 0 0 10 16.9a6.87 6.87 0 0 0 4.274-1.483 3.89 3.89 0 0 0-.561-.668C12.757 13.846 11.452 13.6 10 13.6s-2.758.246-3.713 1.149a3.892 3.892 0 0 0-.561.668ZM10 1.9a8.1 8.1 0 1 0 0 16.2 8.1 8.1 0 0 0 0-16.2ZM3.4 20.5c0-.17.002-.337.006-.5h13.188c.004.163.006.33.006.5v.6H3.4v-.6ZM8.1 8a1.9 1.9 0 1 1 3.8 0 1.9 1.9 0 0 1-3.8 0ZM10 4.9a3.1 3.1 0 1 0 0 6.2 3.1 3.1 0 0 0 0-6.2Z"
clipRule="evenodd"
/>
</g>
-25
View File
@@ -1,25 +0,0 @@
import { createIcon } from '../lib/create-icon'
const SvgPuzzleIcon = createIcon(props => {
return (
<svg
{...props}
xmlns="http://www.w3.org/2000/svg"
width={props.width}
height={props.height}
fill="none"
viewBox="0 0 20 20"
focusable={false}
aria-hidden={true}
>
<path
fill={props.color}
fillRule="evenodd"
d="M9.5 2.4a2.6 2.6 0 0 0-2.53 2H6.5v1.2h1.6V5a1.4 1.4 0 1 1 2.8 0v.6h1.6c.479 0 .797 0 1.04.023.237.021.343.059.41.098a.9.9 0 0 1 .33.329c.039.068.076.174.098.41A13 13 0 0 1 14.4 7.5v1.6h.6a1.4 1.4 0 0 1 0 2.8h-.6V13c0 .724-.001 1.207-.05 1.566-.045.342-.124.48-.213.57-.09.09-.229.169-.57.215-.36.048-.843.049-1.567.049H6.5c-.478 0-.797 0-1.04-.023-.236-.021-.343-.059-.41-.098a.9.9 0 0 1-.33-.329c-.038-.067-.076-.173-.097-.41A12.908 12.908 0 0 1 4.6 13.5v-.47a2.595 2.595 0 0 0 1.802-1.535A2.6 2.6 0 0 0 4.6 7.97V7.5c0-.478 0-.797.023-1.04.021-.236.059-.343.098-.41a.9.9 0 0 1 .329-.33c.067-.038.174-.076.41-.097A12.91 12.91 0 0 1 6.5 5.6V4.4h-.027c-.444 0-.818 0-1.122.028-.319.029-.62.091-.901.253a2.1 2.1 0 0 0-.768.769c-.163.28-.225.582-.254.9-.028.305-.028.679-.028 1.123V7.5h.605H3.4v1.6H4a1.4 1.4 0 0 1 0 2.8h-.6v1.6h.59-.59v.027c0 .444 0 .818.028 1.122.029.32.091.62.254.901a2.1 2.1 0 0 0 .768.769c.28.162.582.225.9.253.305.028.679.028 1.123.028h5.568c.672 0 1.236 0 1.685-.06.475-.064.91-.205 1.26-.555.349-.35.49-.784.554-1.26.06-.448.06-1.012.06-1.684v-.011a2.6 2.6 0 0 0 0-5.06v-.497c0-.444 0-.818-.027-1.122-.03-.319-.092-.62-.254-.901a2.1 2.1 0 0 0-.769-.769c-.28-.162-.582-.225-.9-.253-.305-.028-.679-.028-1.123-.028h-.497a2.606 2.606 0 0 0-1.535-1.802A2.6 2.6 0 0 0 9.5 2.4Z"
clipRule="evenodd"
/>
</svg>
)
})
export default SvgPuzzleIcon
-30
View File
@@ -1,30 +0,0 @@
import { createIcon } from '../lib/create-icon'
const SvgQuillPenIcon = createIcon(props => {
return (
<svg
{...props}
xmlns="http://www.w3.org/2000/svg"
width={props.width}
height={props.height}
fill="none"
viewBox="0 0 20 20"
focusable={false}
aria-hidden={true}
>
<path
stroke={props.color}
strokeWidth={1.2}
d="M10 14c5 0-.243 3.5 2 3.5 2.242 0 2-1.5 3.5-1.5s1 1.5 2 1.5S19 16 19 16"
/>
<path
fill={props.color}
fillRule="evenodd"
d="M13.213 3.352a6.114 6.114 0 0 1 1.974 1.382c.183.192.267.283.32.363a.29.29 0 0 1 .053.16c.004.05-.001.094-.046.185a4.737 4.737 0 0 1-.34.523l-.677.967-3.113-2.18.677-.966c.183-.262.284-.403.375-.499.07-.074.11-.093.16-.107a.285.285 0 0 1 .168-.004c.092.022.207.07.45.176Zm-2.517 2.384-4.81 6.867c-.433.62-.455 1.492-.31 2.317.07.397.174.75.26 1.005l.015.042h.044c.269-.006.637-.03 1.034-.1.825-.146 1.637-.465 2.07-1.084l4.81-6.868-3.113-2.18ZM4.888 16.804l.548-.244-.548.244.146.329.36.025.042-.598-.042.598h.004l.01.001.03.002.107.004a8.115 8.115 0 0 0 1.592-.117c.917-.161 2.132-.558 2.846-1.577l6.174-8.817.056-.08c.291-.414.587-.833.543-1.408-.043-.573-.352-.896-.654-1.212l-.046-.048a7.315 7.315 0 0 0-2.362-1.654l-.06-.026c-.4-.176-.81-.356-1.363-.2-.556.155-.848.576-1.137.99l-.056.081-6.174 8.818c-.714 1.02-.671 2.297-.51 3.213a8.122 8.122 0 0 0 .476 1.635l.012.028.004.009.001.002v.002Z"
clipRule="evenodd"
/>
</svg>
)
})
export default SvgQuillPenIcon
-57
View File
@@ -1,57 +0,0 @@
import { createIcon } from '../lib/create-icon'
const SvgReceiveBlurIcon = createIcon(props => {
return (
<svg
{...props}
xmlns="http://www.w3.org/2000/svg"
width={props.width}
height={props.height}
fill="none"
viewBox="0 0 20 20"
focusable={false}
aria-hidden={true}
>
<mask
id="receive-blur-icon_svg__b"
width={14}
height={17}
x={3}
y={2}
maskUnits="userSpaceOnUse"
style={{
maskType: 'alpha',
}}
>
<path
fill="url(#receive-blur-icon_svg__a)"
d="M0 0h13v17H0z"
transform="matrix(-1 0 0 1 16.5 2)"
/>
</mask>
<g mask="url(#receive-blur-icon_svg__b)">
<path
fill={props.color}
fillRule="evenodd"
d="M9.4 13.147 4.904 9.06l-.807.888 5.5 5 .404.367.403-.367 5.5-5-.807-.888-4.497 4.088V2.5H9.4v10.647Z"
clipRule="evenodd"
/>
</g>
<defs>
<linearGradient
id="receive-blur-icon_svg__a"
x1={6.5}
x2={6.5}
y1={0.708}
y2={8.5}
gradientUnits="userSpaceOnUse"
>
<stop stopColor={props.color} stopOpacity={0} />
<stop offset={1} stopColor={props.color} />
</linearGradient>
</defs>
</svg>
)
})
export default SvgReceiveBlurIcon
+4 -4
View File
@@ -15,7 +15,7 @@ const SvgReceiveIcon = createIcon(props => {
<path
fill={props.color}
fillRule="evenodd"
d="m9.597 14.948-5.5-5 .807-.888 5.097 4.633 5.096-4.633.807.888-5.5 5-.403.367-.404-.367Z"
d="m9.597 15.948-5.5-5 .807-.888 5.097 4.633 5.096-4.633.807.888-5.5 5-.403.367-.404-.367Z"
clipRule="evenodd"
/>
<mask
@@ -23,7 +23,7 @@ const SvgReceiveIcon = createIcon(props => {
width={2}
height={13}
x={9}
y={2}
y={3}
maskUnits="userSpaceOnUse"
style={{
maskType: 'alpha',
@@ -32,11 +32,11 @@ const SvgReceiveIcon = createIcon(props => {
<path
fill="url(#receive-icon_svg__a)"
d="M0 0h2v12H0z"
transform="matrix(-1 0 0 1 11 2.5)"
transform="matrix(-1 0 0 1 11 3.5)"
/>
</mask>
<g mask="url(#receive-icon_svg__b)">
<path stroke={props.color} strokeWidth={1.2} d="M10 2.5V14" />
<path stroke={props.color} strokeWidth={1.2} d="M10 3.5V15" />
</g>
<defs>
<linearGradient
+1 -1
View File
@@ -15,7 +15,7 @@ const SvgRefreshIcon = createIcon(props => {
<path
fill={props.color}
fillRule="evenodd"
d="M8.031 2.659a7.6 7.6 0 0 1 7.87 2.553V3.5h1.2v4.1H13V6.4h2.289a6.4 6.4 0 1 0 .25 6.8l1.04.6A7.6 7.6 0 1 1 8.03 2.659Z"
d="M12.64 3.625a6.9 6.9 0 1 0 3.336 9.825l1.039.6a8.1 8.1 0 1 1-1.115-9.6V3h1.2v4.1H13V5.9h2.55a6.9 6.9 0 0 0-2.91-2.275Z"
clipRule="evenodd"
/>
</svg>

Some files were not shown because too many files have changed in this diff Show More