Fix packages/ui lint issues
Signed-off-by: Émile Ré <emile@getprobo.com>
This commit is contained in:
13
package-lock.json
generated
13
package-lock.json
generated
@@ -12040,6 +12040,16 @@
|
||||
"url": "https://github.com/sponsors/ljharb"
|
||||
}
|
||||
},
|
||||
"node_modules/tailwind-merge": {
|
||||
"version": "3.4.0",
|
||||
"resolved": "https://registry.npmjs.org/tailwind-merge/-/tailwind-merge-3.4.0.tgz",
|
||||
"integrity": "sha512-uSaO4gnW+b3Y2aWoWfFpX62vn2sR3skfhbjsEnaBI81WD1wBLlHZe5sWf0AqjksNdYTbGBEd0UasQMT3SNV15g==",
|
||||
"license": "MIT",
|
||||
"funding": {
|
||||
"type": "github",
|
||||
"url": "https://github.com/sponsors/dcastil"
|
||||
}
|
||||
},
|
||||
"node_modules/tailwind-variants": {
|
||||
"version": "1.0.0",
|
||||
"license": "MIT",
|
||||
@@ -13846,6 +13856,7 @@
|
||||
"react-markdown": "^10.1.0",
|
||||
"rehype-raw": "^7.0.0",
|
||||
"remark-gfm": "^4.0.1",
|
||||
"tailwind-merge": "^3.4.0",
|
||||
"tailwind-variants": "^1.0.0",
|
||||
"tailwindcss": "^4.1.7",
|
||||
"tw-animate-css": "^1.3.0",
|
||||
@@ -13868,7 +13879,7 @@
|
||||
"@vitejs/plugin-react": "^4.4.1",
|
||||
"@vitest/browser": "^3.1.3",
|
||||
"@vitest/coverage-v8": "^3.1.3",
|
||||
"eslint": "^9.25.0",
|
||||
"eslint": "^9.39.2",
|
||||
"playwright": "^1.55.1",
|
||||
"react": "^19.1.0",
|
||||
"react-docgen": "^7.1.1",
|
||||
|
||||
@@ -23,7 +23,7 @@ export const stylisticConfigs = [
|
||||
tabWidth: 2,
|
||||
ignoreStrings: true,
|
||||
ignoreTemplateLiterals: true,
|
||||
ignoreTrailingComments: true,
|
||||
ignoreComments: true,
|
||||
ignoreUrls: true,
|
||||
},
|
||||
],
|
||||
|
||||
@@ -7,18 +7,18 @@ import { join, dirname } from "path";
|
||||
* It is needed in projects that use Yarn PnP or are set up within a monorepo.
|
||||
*/
|
||||
function getAbsolutePath(value: string): string {
|
||||
return dirname(require.resolve(join(value, "package.json")));
|
||||
return dirname(require.resolve(join(value, "package.json")));
|
||||
}
|
||||
const config: StorybookConfig = {
|
||||
stories: ["../src/**/*.stories.@(js|jsx|mjs|ts|tsx)"],
|
||||
addons: [
|
||||
getAbsolutePath("@storybook/addon-essentials"),
|
||||
getAbsolutePath("@chromatic-com/storybook"),
|
||||
getAbsolutePath("@storybook/experimental-addon-test"),
|
||||
],
|
||||
framework: {
|
||||
name: getAbsolutePath("@storybook/react-vite"),
|
||||
options: {},
|
||||
},
|
||||
stories: ["../src/**/*.stories.@(js|jsx|mjs|ts|tsx)"],
|
||||
addons: [
|
||||
getAbsolutePath("@storybook/addon-essentials"),
|
||||
getAbsolutePath("@chromatic-com/storybook"),
|
||||
getAbsolutePath("@storybook/experimental-addon-test"),
|
||||
],
|
||||
framework: {
|
||||
name: getAbsolutePath("@storybook/react-vite"),
|
||||
options: {},
|
||||
},
|
||||
};
|
||||
export default config;
|
||||
|
||||
@@ -4,31 +4,30 @@ import "../src/theme.css";
|
||||
import "./preview.css";
|
||||
import { BrowserRouter } from "react-router";
|
||||
import { useEffect } from "react";
|
||||
import React from "react";
|
||||
|
||||
const preview: Preview = {
|
||||
parameters: {
|
||||
controls: {
|
||||
matchers: {
|
||||
color: /(background|color)$/i,
|
||||
date: /Date$/i,
|
||||
},
|
||||
},
|
||||
parameters: {
|
||||
controls: {
|
||||
matchers: {
|
||||
color: /(background|color)$/i,
|
||||
date: /Date$/i,
|
||||
},
|
||||
},
|
||||
decorators: [
|
||||
(Story) => {
|
||||
useEffect(() => {
|
||||
document.body.classList.add("bg-level-0");
|
||||
}, []);
|
||||
return (
|
||||
<BrowserRouter>
|
||||
<div className="text-txt-primary">
|
||||
<Story />
|
||||
</div>
|
||||
</BrowserRouter>
|
||||
);
|
||||
},
|
||||
],
|
||||
},
|
||||
decorators: [
|
||||
(Story) => {
|
||||
useEffect(() => {
|
||||
document.body.classList.add("bg-level-0");
|
||||
}, []);
|
||||
return (
|
||||
<BrowserRouter>
|
||||
<div className="text-txt-primary">
|
||||
<Story />
|
||||
</div>
|
||||
</BrowserRouter>
|
||||
);
|
||||
},
|
||||
],
|
||||
};
|
||||
|
||||
export default preview;
|
||||
|
||||
@@ -1,14 +1,27 @@
|
||||
import { browser } from "@probo/eslint-config";
|
||||
import { defineConfig } from "eslint/config";
|
||||
import { configs } from "@probo/eslint-config";
|
||||
|
||||
export default [
|
||||
{
|
||||
ignores: [
|
||||
"dist",
|
||||
"eslint.config.mjs",
|
||||
"*.config.{js,mjs,ts}",
|
||||
".storybook/**",
|
||||
"src/Atoms/Icons/**/*.tsx", // Icon files have parsing issues, likely auto-generated
|
||||
],
|
||||
export default defineConfig([
|
||||
...configs.base,
|
||||
...configs.ts,
|
||||
...configs.react,
|
||||
...configs.stylistic,
|
||||
{
|
||||
ignores: ["./tailwind.config.js"],
|
||||
...configs.languageOptions.browser,
|
||||
},
|
||||
{
|
||||
files: ["./tailwind.config.js"],
|
||||
languageOptions: {
|
||||
...configs.languageOptions.node.languageOptions,
|
||||
sourceType: "commonjs",
|
||||
},
|
||||
...browser(["./tsconfig.app.json", "./tsconfig.node.json"], import.meta.dirname),
|
||||
];
|
||||
},
|
||||
{
|
||||
languageOptions: {
|
||||
parserOptions: {
|
||||
tsConfigRootDir: import.meta.dirname,
|
||||
},
|
||||
},
|
||||
},
|
||||
]);
|
||||
|
||||
@@ -29,6 +29,7 @@
|
||||
"react-markdown": "^10.1.0",
|
||||
"rehype-raw": "^7.0.0",
|
||||
"remark-gfm": "^4.0.1",
|
||||
"tailwind-merge": "^3.4.0",
|
||||
"tailwind-variants": "^1.0.0",
|
||||
"tailwindcss": "^4.1.7",
|
||||
"tw-animate-css": "^1.3.0",
|
||||
@@ -51,7 +52,7 @@
|
||||
"@vitejs/plugin-react": "^4.4.1",
|
||||
"@vitest/browser": "^3.1.3",
|
||||
"@vitest/coverage-v8": "^3.1.3",
|
||||
"eslint": "^9.25.0",
|
||||
"eslint": "^9.39.2",
|
||||
"playwright": "^1.55.1",
|
||||
"react": "^19.1.0",
|
||||
"react-docgen": "^7.1.1",
|
||||
|
||||
@@ -2,15 +2,15 @@ import { Avatar } from "./Avatar";
|
||||
import type { Meta, StoryObj } from "@storybook/react";
|
||||
|
||||
export default {
|
||||
title: "Atoms/Avatar",
|
||||
component: Avatar,
|
||||
argTypes: {},
|
||||
title: "Atoms/Avatar",
|
||||
component: Avatar,
|
||||
argTypes: {},
|
||||
} satisfies Meta<typeof Avatar>;
|
||||
|
||||
type Story = StoryObj<typeof Avatar>;
|
||||
|
||||
export const Default: Story = {
|
||||
args: {
|
||||
name: "John Doe",
|
||||
},
|
||||
args: {
|
||||
name: "John Doe",
|
||||
},
|
||||
};
|
||||
|
||||
@@ -1,42 +1,42 @@
|
||||
import { tv } from "tailwind-variants";
|
||||
|
||||
type Props = {
|
||||
name: string;
|
||||
src?: string | null;
|
||||
size?: "s" | "m" | "l" | "xl";
|
||||
className?: string;
|
||||
name: string;
|
||||
src?: string | null;
|
||||
size?: "s" | "m" | "l" | "xl";
|
||||
className?: string;
|
||||
};
|
||||
|
||||
const avatar = tv({
|
||||
base: "bg-txt-success text-txt-invert rounded-full font-semibold flex items-center justify-center flex-none",
|
||||
variants: {
|
||||
size: {
|
||||
s: "size-5 text-xss",
|
||||
m: "size-6 text-xxs",
|
||||
l: "size-8 text-sm",
|
||||
xl: "size-16 text-3xl",
|
||||
},
|
||||
},
|
||||
defaultVariants: {
|
||||
size: "m",
|
||||
base: "bg-txt-success text-txt-invert rounded-full font-semibold flex items-center justify-center flex-none",
|
||||
variants: {
|
||||
size: {
|
||||
s: "size-5 text-xss",
|
||||
m: "size-6 text-xxs",
|
||||
l: "size-8 text-sm",
|
||||
xl: "size-16 text-3xl",
|
||||
},
|
||||
},
|
||||
defaultVariants: {
|
||||
size: "m",
|
||||
},
|
||||
});
|
||||
|
||||
export function Avatar(props: Props) {
|
||||
const className = avatar(props);
|
||||
if (props.src) {
|
||||
return <img className={className} src={props.src} alt={props.name} />;
|
||||
}
|
||||
return <div className={className}>{extractInitials(props.name ?? "")}</div>;
|
||||
const className = avatar(props);
|
||||
if (props.src) {
|
||||
return <img className={className} src={props.src} alt={props.name} />;
|
||||
}
|
||||
return <div className={className}>{extractInitials(props.name ?? "")}</div>;
|
||||
}
|
||||
|
||||
function extractInitials(name: string) {
|
||||
const words = name.split(" ");
|
||||
if (words.length === 2) {
|
||||
return words
|
||||
.map((word) => word[0])
|
||||
.join("")
|
||||
.toUpperCase();
|
||||
}
|
||||
return name.substring(0, 2).toUpperCase();
|
||||
const words = name.split(" ");
|
||||
if (words.length === 2) {
|
||||
return words
|
||||
.map(word => word[0])
|
||||
.join("")
|
||||
.toUpperCase();
|
||||
}
|
||||
return name.substring(0, 2).toUpperCase();
|
||||
}
|
||||
|
||||
@@ -2,41 +2,43 @@ import { Badge } from "./Badge";
|
||||
import type { Meta, StoryObj } from "@storybook/react";
|
||||
|
||||
export default {
|
||||
title: "Atoms/Badge",
|
||||
component: Badge,
|
||||
argTypes: {},
|
||||
title: "Atoms/Badge",
|
||||
component: Badge,
|
||||
argTypes: {},
|
||||
} satisfies Meta<typeof Badge>;
|
||||
|
||||
type Story = StoryObj<typeof Badge>;
|
||||
|
||||
const sizes = ["sm", "md"] as const;
|
||||
const variants = [
|
||||
"success",
|
||||
"warning",
|
||||
"danger",
|
||||
"info",
|
||||
"neutral",
|
||||
"outline",
|
||||
"highlight",
|
||||
"success",
|
||||
"warning",
|
||||
"danger",
|
||||
"info",
|
||||
"neutral",
|
||||
"outline",
|
||||
"highlight",
|
||||
] as const;
|
||||
|
||||
export const Default: Story = {
|
||||
render: () => (
|
||||
<div className="space-y-4">
|
||||
{sizes.map((size) => (
|
||||
<div key={size} className="space-y-1">
|
||||
<div className="text-xs text-txt-secondary">
|
||||
Size : {size}
|
||||
</div>
|
||||
<div className="flex gap-2">
|
||||
{variants.map((variant) => (
|
||||
<Badge key={variant} variant={variant} size={size}>
|
||||
{variant}
|
||||
</Badge>
|
||||
))}
|
||||
</div>
|
||||
</div>
|
||||
render: () => (
|
||||
<div className="space-y-4">
|
||||
{sizes.map(size => (
|
||||
<div key={size} className="space-y-1">
|
||||
<div className="text-xs text-txt-secondary">
|
||||
Size :
|
||||
{" "}
|
||||
{size}
|
||||
</div>
|
||||
<div className="flex gap-2">
|
||||
{variants.map(variant => (
|
||||
<Badge key={variant} variant={variant} size={size}>
|
||||
{variant}
|
||||
</Badge>
|
||||
))}
|
||||
</div>
|
||||
</div>
|
||||
),
|
||||
))}
|
||||
</div>
|
||||
),
|
||||
};
|
||||
|
||||
@@ -2,28 +2,28 @@ import { Breadcrumb } from "./Breadcrumb";
|
||||
import type { Meta, StoryObj } from "@storybook/react";
|
||||
|
||||
export default {
|
||||
title: "Atoms/Breadcrumb",
|
||||
component: Breadcrumb,
|
||||
argTypes: {},
|
||||
title: "Atoms/Breadcrumb",
|
||||
component: Breadcrumb,
|
||||
argTypes: {},
|
||||
} satisfies Meta<typeof Breadcrumb>;
|
||||
|
||||
type Story = StoryObj<typeof Breadcrumb>;
|
||||
|
||||
export const Default: Story = {
|
||||
args: {
|
||||
items: [
|
||||
{
|
||||
label: "Home",
|
||||
to: "/",
|
||||
},
|
||||
{
|
||||
label: "Library",
|
||||
to: "/library",
|
||||
},
|
||||
{
|
||||
label: "Data",
|
||||
to: "/data",
|
||||
},
|
||||
],
|
||||
},
|
||||
args: {
|
||||
items: [
|
||||
{
|
||||
label: "Home",
|
||||
to: "/",
|
||||
},
|
||||
{
|
||||
label: "Library",
|
||||
to: "/library",
|
||||
},
|
||||
{
|
||||
label: "Data",
|
||||
to: "/data",
|
||||
},
|
||||
],
|
||||
},
|
||||
};
|
||||
|
||||
@@ -4,48 +4,48 @@ import { IconChevronRight } from "../Icons";
|
||||
import { Fragment } from "react/jsx-runtime";
|
||||
|
||||
type Props = {
|
||||
items: (ItemProps | string)[];
|
||||
items: (ItemProps | string)[];
|
||||
};
|
||||
|
||||
type ItemProps = {
|
||||
label: string;
|
||||
to?: string;
|
||||
active?: boolean;
|
||||
label: string;
|
||||
to?: string;
|
||||
active?: boolean;
|
||||
};
|
||||
|
||||
export function Breadcrumb({ items }: Props) {
|
||||
return (
|
||||
<div className="flex items-center gap-[6px] text-txt-tertiary">
|
||||
{items.map((item, k) => (
|
||||
<Fragment key={k}>
|
||||
{k > 0 && <IconChevronRight size={12} />}
|
||||
<BreadcrumbItem
|
||||
{...(typeof item === "string" ? { label: item } : item)}
|
||||
active={k === items.length - 1}
|
||||
/>
|
||||
</Fragment>
|
||||
))}
|
||||
</div>
|
||||
);
|
||||
return (
|
||||
<div className="flex items-center gap-[6px] text-txt-tertiary">
|
||||
{items.map((item, k) => (
|
||||
<Fragment key={k}>
|
||||
{k > 0 && <IconChevronRight size={12} />}
|
||||
<BreadcrumbItem
|
||||
{...(typeof item === "string" ? { label: item } : item)}
|
||||
active={k === items.length - 1}
|
||||
/>
|
||||
</Fragment>
|
||||
))}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
function BreadcrumbItem({ label, to, active }: ItemProps) {
|
||||
const className = clsx(
|
||||
"text-sm px-1 rounded-sm h-5",
|
||||
active && "text-txt-primary font-medium",
|
||||
const className = clsx(
|
||||
"text-sm px-1 rounded-sm h-5",
|
||||
active && "text-txt-primary font-medium",
|
||||
);
|
||||
if (to) {
|
||||
return (
|
||||
<Link
|
||||
to={to}
|
||||
className={clsx(
|
||||
className,
|
||||
"hover:bg-tertiary-hover active:bg-tertiary-pressed",
|
||||
)}
|
||||
>
|
||||
{label}
|
||||
</Link>
|
||||
);
|
||||
if (to) {
|
||||
return (
|
||||
<Link
|
||||
to={to}
|
||||
className={clsx(
|
||||
className,
|
||||
"hover:bg-tertiary-hover active:bg-tertiary-pressed",
|
||||
)}
|
||||
>
|
||||
{label}
|
||||
</Link>
|
||||
);
|
||||
}
|
||||
return <span className={className}>{label}</span>;
|
||||
}
|
||||
return <span className={className}>{label}</span>;
|
||||
}
|
||||
|
||||
@@ -3,52 +3,52 @@ import { Button } from "./Button";
|
||||
import type { Meta, StoryObj } from "@storybook/react";
|
||||
|
||||
export default {
|
||||
title: "Atoms/Button",
|
||||
component: Button,
|
||||
argTypes: {},
|
||||
title: "Atoms/Button",
|
||||
component: Button,
|
||||
argTypes: {},
|
||||
} satisfies Meta<typeof Button>;
|
||||
|
||||
type Story = StoryObj<typeof Button>;
|
||||
|
||||
const variants = [
|
||||
"primary",
|
||||
"secondary",
|
||||
"tertiary",
|
||||
"quaternary",
|
||||
"danger",
|
||||
"primary",
|
||||
"secondary",
|
||||
"tertiary",
|
||||
"quaternary",
|
||||
"danger",
|
||||
] as const;
|
||||
|
||||
export const Default: Story = {
|
||||
render() {
|
||||
return (
|
||||
<div className="space-y-4">
|
||||
{variants.map((variant) => (
|
||||
<div className="flex gap-4" key={variant}>
|
||||
<Button
|
||||
key={variant}
|
||||
variant={variant}
|
||||
icon={IconPlusLarge}
|
||||
iconAfter={IconPlusLarge}
|
||||
>
|
||||
Button
|
||||
</Button>
|
||||
<Button
|
||||
key={variant}
|
||||
disabled
|
||||
variant={variant}
|
||||
icon={IconPlusLarge}
|
||||
iconAfter={IconPlusLarge}
|
||||
>
|
||||
Button
|
||||
</Button>
|
||||
<Button
|
||||
key={variant}
|
||||
variant={variant}
|
||||
icon={IconPlusLarge}
|
||||
/>
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
);
|
||||
},
|
||||
render() {
|
||||
return (
|
||||
<div className="space-y-4">
|
||||
{variants.map(variant => (
|
||||
<div className="flex gap-4" key={variant}>
|
||||
<Button
|
||||
key={variant}
|
||||
variant={variant}
|
||||
icon={IconPlusLarge}
|
||||
iconAfter={IconPlusLarge}
|
||||
>
|
||||
Button
|
||||
</Button>
|
||||
<Button
|
||||
key={variant}
|
||||
disabled
|
||||
variant={variant}
|
||||
icon={IconPlusLarge}
|
||||
iconAfter={IconPlusLarge}
|
||||
>
|
||||
Button
|
||||
</Button>
|
||||
<Button
|
||||
key={variant}
|
||||
variant={variant}
|
||||
icon={IconPlusLarge}
|
||||
/>
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
);
|
||||
},
|
||||
};
|
||||
|
||||
@@ -1,96 +1,96 @@
|
||||
import type {
|
||||
AnchorHTMLAttributes,
|
||||
ButtonHTMLAttributes,
|
||||
FC,
|
||||
PropsWithChildren,
|
||||
AnchorHTMLAttributes,
|
||||
ButtonHTMLAttributes,
|
||||
FC,
|
||||
PropsWithChildren,
|
||||
} from "react";
|
||||
import { Link } from "react-router";
|
||||
import { tv, type VariantProps } from "tailwind-variants";
|
||||
import { Slot } from "../Slot";
|
||||
|
||||
export const button = tv({
|
||||
base: "flex items-center justify-center gap-[6px] px-3 py-2 rounded-full cursor-pointer text-sm font-medium h-8 focus:outline-none whitespace-nowrap w-max",
|
||||
variants: {
|
||||
variant: {
|
||||
primary:
|
||||
base: "flex items-center justify-center gap-[6px] px-3 py-2 rounded-full cursor-pointer text-sm font-medium h-8 focus:outline-none whitespace-nowrap w-max",
|
||||
variants: {
|
||||
variant: {
|
||||
primary:
|
||||
"bg-primary text-invert hover:bg-primary-hover shadow-base hover:shadow-hover active:bg-primary-pressed",
|
||||
secondary:
|
||||
secondary:
|
||||
"bg-secondary text-txt-primary hover:bg-secondary-hover shadow-base hover:shadow-hover active:bg-secondary-pressed border border-border-low",
|
||||
tertiary:
|
||||
tertiary:
|
||||
"bg-tertiary text-txt-primary hover:bg-tertiary-hover active:bg-tertiary-pressed",
|
||||
quaternary:
|
||||
quaternary:
|
||||
"bg-highlight text-txt-primary hover:bg-highlight-hover active:bg-highlight-pressed",
|
||||
danger: "bg-danger-plain text-txt-invert hover:bg-danger-hover shadow-base hover:shadow-hover active:bg-danger-pressed border border-border-danger",
|
||||
},
|
||||
disabled: {
|
||||
true: "opacity-60 cursor-default",
|
||||
},
|
||||
empty: {
|
||||
true: "p-2 size-8",
|
||||
},
|
||||
danger: "bg-danger-plain text-txt-invert hover:bg-danger-hover shadow-base hover:shadow-hover active:bg-danger-pressed border border-border-danger",
|
||||
},
|
||||
defaultVariants: {
|
||||
variant: "primary",
|
||||
icon: false,
|
||||
children: undefined,
|
||||
disabled: {
|
||||
true: "opacity-60 cursor-default",
|
||||
},
|
||||
empty: {
|
||||
true: "p-2 size-8",
|
||||
},
|
||||
},
|
||||
defaultVariants: {
|
||||
variant: "primary",
|
||||
icon: false,
|
||||
children: undefined,
|
||||
},
|
||||
});
|
||||
|
||||
type Props = PropsWithChildren<
|
||||
{
|
||||
icon?: FC<{ size: number; className?: string }>;
|
||||
iconAfter?: FC<{ size: number; className?: string }>;
|
||||
disabled?: boolean;
|
||||
onClick?: () => void;
|
||||
variant?:
|
||||
| "primary"
|
||||
| "secondary"
|
||||
| "tertiary"
|
||||
| "quaternary"
|
||||
| "danger";
|
||||
to?: string;
|
||||
asChild?: boolean;
|
||||
} & VariantProps<typeof button>
|
||||
> &
|
||||
(
|
||||
| ButtonHTMLAttributes<HTMLButtonElement>
|
||||
| AnchorHTMLAttributes<HTMLAnchorElement>
|
||||
{
|
||||
icon?: FC<{ size: number; className?: string }>;
|
||||
iconAfter?: FC<{ size: number; className?: string }>;
|
||||
disabled?: boolean;
|
||||
onClick?: () => void;
|
||||
variant?:
|
||||
| "primary"
|
||||
| "secondary"
|
||||
| "tertiary"
|
||||
| "quaternary"
|
||||
| "danger";
|
||||
to?: string;
|
||||
asChild?: boolean;
|
||||
} & VariantProps<typeof button>
|
||||
>
|
||||
& (
|
||||
| ButtonHTMLAttributes<HTMLButtonElement>
|
||||
| AnchorHTMLAttributes<HTMLAnchorElement>
|
||||
);
|
||||
|
||||
export const Button = (props: Props) => {
|
||||
const {
|
||||
icon: IconComponent,
|
||||
iconAfter: IconAfterComponent,
|
||||
children,
|
||||
onClick,
|
||||
variant,
|
||||
asChild,
|
||||
...componentProps
|
||||
} = props;
|
||||
if (asChild) {
|
||||
return (
|
||||
<Slot
|
||||
{...componentProps}
|
||||
className={button({ ...props, variant, empty: !children })}
|
||||
>
|
||||
{children}
|
||||
</Slot>
|
||||
);
|
||||
}
|
||||
|
||||
const Component = props.to ? Link : "button";
|
||||
const {
|
||||
icon: IconComponent,
|
||||
iconAfter: IconAfterComponent,
|
||||
children,
|
||||
onClick,
|
||||
variant,
|
||||
asChild,
|
||||
...componentProps
|
||||
} = props;
|
||||
if (asChild) {
|
||||
return (
|
||||
// @ts-expect-error Component is too dynamic
|
||||
<Component
|
||||
{...componentProps}
|
||||
onClick={onClick}
|
||||
className={button({ ...props, variant, empty: !children })}
|
||||
>
|
||||
{IconComponent && <IconComponent size={16} className="flex-none" />}
|
||||
{children}
|
||||
{IconAfterComponent && (
|
||||
<IconAfterComponent size={16} className="flex-none" />
|
||||
)}
|
||||
</Component>
|
||||
<Slot
|
||||
{...componentProps}
|
||||
className={button({ ...props, variant, empty: !children })}
|
||||
>
|
||||
{children}
|
||||
</Slot>
|
||||
);
|
||||
}
|
||||
|
||||
const Component = props.to ? Link : "button";
|
||||
return (
|
||||
// @ts-expect-error Component is too dynamic
|
||||
<Component
|
||||
{...componentProps}
|
||||
onClick={onClick}
|
||||
className={button({ ...props, variant, empty: !children })}
|
||||
>
|
||||
{IconComponent && <IconComponent size={16} className="flex-none" />}
|
||||
{children}
|
||||
{IconAfterComponent && (
|
||||
<IconAfterComponent size={16} className="flex-none" />
|
||||
)}
|
||||
</Component>
|
||||
);
|
||||
};
|
||||
|
||||
@@ -2,16 +2,16 @@ import { Card } from "./Card";
|
||||
import type { Meta, StoryObj } from "@storybook/react";
|
||||
|
||||
export default {
|
||||
title: "Atoms/Card",
|
||||
component: Card,
|
||||
argTypes: {},
|
||||
title: "Atoms/Card",
|
||||
component: Card,
|
||||
argTypes: {},
|
||||
} satisfies Meta<typeof Card>;
|
||||
|
||||
type Story = StoryObj<typeof Card>;
|
||||
|
||||
export const Default: Story = {
|
||||
args: {
|
||||
padded: true,
|
||||
children: "lorem ipsum",
|
||||
},
|
||||
args: {
|
||||
padded: true,
|
||||
children: "lorem ipsum",
|
||||
},
|
||||
};
|
||||
|
||||
@@ -3,32 +3,32 @@ import { tv } from "tailwind-variants";
|
||||
import { Slot } from "../Slot";
|
||||
|
||||
type Props = PropsWithChildren<{
|
||||
padded?: boolean;
|
||||
className?: string;
|
||||
style?: CSSProperties;
|
||||
asChild?: boolean;
|
||||
padded?: boolean;
|
||||
className?: string;
|
||||
style?: CSSProperties;
|
||||
asChild?: boolean;
|
||||
}>;
|
||||
|
||||
const card = tv({
|
||||
base: "border border-border-low bg-level-1 rounded-2xl",
|
||||
variants: {
|
||||
padded: {
|
||||
true: "p-4",
|
||||
},
|
||||
base: "border border-border-low bg-level-1 rounded-2xl",
|
||||
variants: {
|
||||
padded: {
|
||||
true: "p-4",
|
||||
},
|
||||
},
|
||||
});
|
||||
|
||||
export function Card({
|
||||
padded = false,
|
||||
children,
|
||||
className,
|
||||
asChild,
|
||||
style,
|
||||
padded = false,
|
||||
children,
|
||||
className,
|
||||
asChild,
|
||||
style,
|
||||
}: Props) {
|
||||
const Component = asChild ? Slot : "div";
|
||||
return (
|
||||
<Component style={style} className={card({ padded, className })}>
|
||||
{children}
|
||||
</Component>
|
||||
);
|
||||
const Component = asChild ? Slot : "div";
|
||||
return (
|
||||
<Component style={style} className={card({ padded, className })}>
|
||||
{children}
|
||||
</Component>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -2,9 +2,9 @@ import { Checkbox } from "./Checkbox";
|
||||
import type { Meta, StoryObj } from "@storybook/react";
|
||||
|
||||
export default {
|
||||
title: "Atoms/Checkbox",
|
||||
component: Checkbox,
|
||||
argTypes: {},
|
||||
title: "Atoms/Checkbox",
|
||||
component: Checkbox,
|
||||
argTypes: {},
|
||||
} satisfies Meta<typeof Checkbox>;
|
||||
|
||||
type Story = StoryObj<typeof Checkbox>;
|
||||
|
||||
@@ -3,40 +3,40 @@ import { tv } from "tailwind-variants";
|
||||
import { IconCheckmark1 } from "../Icons";
|
||||
|
||||
type Props = {
|
||||
checked: boolean;
|
||||
onChange: (checked: boolean) => void;
|
||||
disabled?: boolean;
|
||||
checked: boolean;
|
||||
onChange: (checked: boolean) => void;
|
||||
disabled?: boolean;
|
||||
};
|
||||
|
||||
const checkbox = tv({
|
||||
base: "size-4 border border-border-mid relative rounded-sm flex items-center justify-center",
|
||||
variants: {
|
||||
isFocused: {
|
||||
true: "shadow shadow-focus",
|
||||
},
|
||||
checked: {
|
||||
true: "bg-accent text-invert",
|
||||
},
|
||||
disabled: {
|
||||
true: "opacity-50 cursor-not-allowed",
|
||||
},
|
||||
base: "size-4 border border-border-mid relative rounded-sm flex items-center justify-center",
|
||||
variants: {
|
||||
isFocused: {
|
||||
true: "shadow shadow-focus",
|
||||
},
|
||||
checked: {
|
||||
true: "bg-accent text-invert",
|
||||
},
|
||||
disabled: {
|
||||
true: "opacity-50 cursor-not-allowed",
|
||||
},
|
||||
},
|
||||
});
|
||||
|
||||
export function Checkbox({ checked, onChange, disabled = false }: Props) {
|
||||
const [isFocused, setFocus] = useState(false);
|
||||
return (
|
||||
<div className={checkbox({ isFocused, checked, disabled })}>
|
||||
<input
|
||||
className="absolute inset-0 opacity-0"
|
||||
type="checkbox"
|
||||
checked={checked}
|
||||
disabled={disabled}
|
||||
onChange={(e) => !disabled && onChange(e.target.checked)}
|
||||
onFocus={() => !disabled && setFocus(true)}
|
||||
onBlur={() => setFocus(false)}
|
||||
/>
|
||||
{checked && <IconCheckmark1 size={12} />}
|
||||
</div>
|
||||
);
|
||||
const [isFocused, setFocus] = useState(false);
|
||||
return (
|
||||
<div className={checkbox({ isFocused, checked, disabled })}>
|
||||
<input
|
||||
className="absolute inset-0 opacity-0"
|
||||
type="checkbox"
|
||||
checked={checked}
|
||||
disabled={disabled}
|
||||
onChange={e => !disabled && onChange(e.target.checked)}
|
||||
onFocus={() => !disabled && setFocus(true)}
|
||||
onBlur={() => setFocus(false)}
|
||||
/>
|
||||
{checked && <IconCheckmark1 size={12} />}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -2,26 +2,26 @@ import { ControlItem } from "./ControlItem";
|
||||
import type { Meta, StoryObj } from "@storybook/react";
|
||||
|
||||
export default {
|
||||
title: "Atoms/ControlItem",
|
||||
component: ControlItem,
|
||||
argTypes: {},
|
||||
title: "Atoms/ControlItem",
|
||||
component: ControlItem,
|
||||
argTypes: {},
|
||||
} satisfies Meta<typeof ControlItem>;
|
||||
|
||||
type Story = StoryObj<typeof ControlItem>;
|
||||
|
||||
export const Default: Story = {
|
||||
args: {
|
||||
id: "CC1.1",
|
||||
description:
|
||||
args: {
|
||||
id: "CC1.1",
|
||||
description:
|
||||
"The entity obtains privacy commitments from vendors and other third parties who have access to personal information to meet the entity’s objectives related to privacy. The entity assesses those parties’ compliance on a periodic and as-needed basis and takes corrective action, if necessary.",
|
||||
},
|
||||
render: (args) => (
|
||||
<div className="p-4 space-y-2" style={{ width: "240px" }}>
|
||||
<ControlItem {...args} />
|
||||
<ControlItem {...args} active />
|
||||
<ControlItem {...args} />
|
||||
<ControlItem {...args} />
|
||||
<ControlItem {...args} />
|
||||
</div>
|
||||
),
|
||||
},
|
||||
render: args => (
|
||||
<div className="p-4 space-y-2" style={{ width: "240px" }}>
|
||||
<ControlItem {...args} />
|
||||
<ControlItem {...args} active />
|
||||
<ControlItem {...args} />
|
||||
<ControlItem {...args} />
|
||||
<ControlItem {...args} />
|
||||
</div>
|
||||
),
|
||||
};
|
||||
|
||||
@@ -3,78 +3,78 @@ import { Link } from "react-router";
|
||||
import { tv } from "tailwind-variants";
|
||||
|
||||
type Props = {
|
||||
active?: boolean;
|
||||
id: string;
|
||||
description?: string;
|
||||
excluded?: boolean;
|
||||
to: string;
|
||||
active?: boolean;
|
||||
id: string;
|
||||
description?: string;
|
||||
excluded?: boolean;
|
||||
to: string;
|
||||
} & HTMLAttributes<HTMLAnchorElement>;
|
||||
|
||||
const classNames = tv({
|
||||
slots: {
|
||||
wrapper: "block p-4 space-y-[6px] rounded-xl cursor-pointer text-start",
|
||||
id: "px-[6px] py-[2px] text-base font-medium border border-border-low rounded-lg w-max",
|
||||
description: "text-sm text-txt-tertiary line-clamp-3",
|
||||
slots: {
|
||||
wrapper: "block p-4 space-y-[6px] rounded-xl cursor-pointer text-start",
|
||||
id: "px-[6px] py-[2px] text-base font-medium border border-border-low rounded-lg w-max",
|
||||
description: "text-sm text-txt-tertiary line-clamp-3",
|
||||
},
|
||||
variants: {
|
||||
active: {
|
||||
true: {
|
||||
wrapper: "bg-tertiary-pressed",
|
||||
id: "bg-active",
|
||||
},
|
||||
false: {
|
||||
wrapper: "hover:bg-tertiary-hover",
|
||||
id: "bg-highlight",
|
||||
},
|
||||
},
|
||||
variants: {
|
||||
active: {
|
||||
true: {
|
||||
wrapper: "bg-tertiary-pressed",
|
||||
id: "bg-active",
|
||||
},
|
||||
false: {
|
||||
wrapper: "hover:bg-tertiary-hover",
|
||||
id: "bg-highlight",
|
||||
},
|
||||
},
|
||||
excluded: {
|
||||
true: {
|
||||
wrapper: "opacity-60",
|
||||
},
|
||||
false: {
|
||||
wrapper: "",
|
||||
},
|
||||
},
|
||||
excluded: {
|
||||
true: {
|
||||
wrapper: "opacity-60",
|
||||
},
|
||||
false: {
|
||||
wrapper: "",
|
||||
},
|
||||
},
|
||||
compoundVariants: [
|
||||
{
|
||||
active: true,
|
||||
excluded: true,
|
||||
class: {
|
||||
wrapper: "bg-tertiary-pressed opacity-60",
|
||||
id: "bg-active",
|
||||
},
|
||||
},
|
||||
],
|
||||
defaultVariants: {
|
||||
active: false,
|
||||
excluded: false,
|
||||
},
|
||||
compoundVariants: [
|
||||
{
|
||||
active: true,
|
||||
excluded: true,
|
||||
class: {
|
||||
wrapper: "bg-tertiary-pressed opacity-60",
|
||||
id: "bg-active",
|
||||
},
|
||||
},
|
||||
],
|
||||
defaultVariants: {
|
||||
active: false,
|
||||
excluded: false,
|
||||
},
|
||||
});
|
||||
|
||||
export function ControlItem({ active, id, description, excluded, to, ...props }: Props) {
|
||||
const {
|
||||
wrapper,
|
||||
id: idCls,
|
||||
description: descriptionCls,
|
||||
} = classNames({
|
||||
active,
|
||||
excluded,
|
||||
});
|
||||
const {
|
||||
wrapper,
|
||||
id: idCls,
|
||||
description: descriptionCls,
|
||||
} = classNames({
|
||||
active,
|
||||
excluded,
|
||||
});
|
||||
|
||||
const ref = useRef<HTMLAnchorElement>(null);
|
||||
const ref = useRef<HTMLAnchorElement>(null);
|
||||
|
||||
// Make the active element scroll into view when selected
|
||||
useEffect(() => {
|
||||
if (ref.current && active) {
|
||||
ref.current.scrollIntoView({ behavior: "smooth", block: "center" });
|
||||
}
|
||||
}, [active]);
|
||||
// Make the active element scroll into view when selected
|
||||
useEffect(() => {
|
||||
if (ref.current && active) {
|
||||
ref.current.scrollIntoView({ behavior: "smooth", block: "center" });
|
||||
}
|
||||
}, [active]);
|
||||
|
||||
return (
|
||||
<Link className={wrapper()} to={to} {...props} ref={ref}>
|
||||
<div className={idCls()}>{id}</div>
|
||||
<div className={descriptionCls()}>{description}</div>
|
||||
</Link>
|
||||
);
|
||||
return (
|
||||
<Link className={wrapper()} to={to} {...props} ref={ref}>
|
||||
<div className={idCls()}>{id}</div>
|
||||
<div className={descriptionCls()}>{description}</div>
|
||||
</Link>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
import {
|
||||
type ComponentPropsWithRef,
|
||||
type FC,
|
||||
type PropsWithChildren,
|
||||
type ReactNode,
|
||||
type ComponentPropsWithRef,
|
||||
type FC,
|
||||
type PropsWithChildren,
|
||||
type ReactNode,
|
||||
} from "react";
|
||||
import { Card } from "../Card/Card";
|
||||
import clsx from "clsx";
|
||||
@@ -10,100 +10,100 @@ import { type AsChildProps, Slot } from "../Slot.tsx";
|
||||
import { IconPlusLarge } from "../Icons";
|
||||
|
||||
export function DataTable({
|
||||
children,
|
||||
className,
|
||||
columns,
|
||||
children,
|
||||
className,
|
||||
columns,
|
||||
}: PropsWithChildren<{ className?: string; columns: number | string[] }>) {
|
||||
const style = () => {
|
||||
if (typeof columns === "number") {
|
||||
return {
|
||||
gridTemplateColumns: `repeat(${columns}, minmax(0, 1fr))`,
|
||||
};
|
||||
}
|
||||
return {
|
||||
gridTemplateColumns: columns.join(" "),
|
||||
};
|
||||
const style = () => {
|
||||
if (typeof columns === "number") {
|
||||
return {
|
||||
gridTemplateColumns: `repeat(${columns}, minmax(0, 1fr))`,
|
||||
};
|
||||
}
|
||||
return {
|
||||
gridTemplateColumns: columns.join(" "),
|
||||
};
|
||||
};
|
||||
|
||||
return (
|
||||
<div className="overflow-auto relative w-full p-1 -m-1">
|
||||
<Card
|
||||
className={clsx(
|
||||
className,
|
||||
"min-w-min text-left grid overflow-hidden",
|
||||
)}
|
||||
style={style()}
|
||||
>
|
||||
{children}
|
||||
</Card>
|
||||
</div>
|
||||
);
|
||||
return (
|
||||
<div className="overflow-auto relative w-full p-1 -m-1">
|
||||
<Card
|
||||
className={clsx(
|
||||
className,
|
||||
"min-w-min text-left grid overflow-hidden",
|
||||
)}
|
||||
style={style()}
|
||||
>
|
||||
{children}
|
||||
</Card>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
export function CellHead({
|
||||
children,
|
||||
className,
|
||||
...props
|
||||
children,
|
||||
className,
|
||||
...props
|
||||
}: ComponentPropsWithRef<"div">) {
|
||||
return (
|
||||
<div
|
||||
{...props}
|
||||
className={clsx(
|
||||
"text-xs text-txt-tertiary font-semibold ",
|
||||
"first:pl-6 p-3 whitespace-nowrap",
|
||||
className,
|
||||
)}
|
||||
>
|
||||
{children}
|
||||
</div>
|
||||
);
|
||||
return (
|
||||
<div
|
||||
{...props}
|
||||
className={clsx(
|
||||
"text-xs text-txt-tertiary font-semibold ",
|
||||
"first:pl-6 p-3 whitespace-nowrap",
|
||||
className,
|
||||
)}
|
||||
>
|
||||
{children}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
export function Row(props: ComponentPropsWithRef<"div">) {
|
||||
return <div {...props} className={clsx("contents", props.className)} />;
|
||||
return <div {...props} className={clsx("contents", props.className)} />;
|
||||
}
|
||||
|
||||
export function Cell({
|
||||
asChild,
|
||||
...props
|
||||
asChild,
|
||||
...props
|
||||
}: AsChildProps<ComponentPropsWithRef<"div">>) {
|
||||
const Component = asChild ? Slot : "div";
|
||||
return (
|
||||
<Component
|
||||
data-cell
|
||||
{...props}
|
||||
className={clsx(
|
||||
"first:pl-6 p-3 text-sm text-txt-primary bg-tertiary border-t border-border-low flex flex-col justify-center",
|
||||
props.className,
|
||||
)}
|
||||
/>
|
||||
);
|
||||
const Component = asChild ? Slot : "div";
|
||||
return (
|
||||
<Component
|
||||
data-cell
|
||||
{...props}
|
||||
className={clsx(
|
||||
"first:pl-6 p-3 text-sm text-txt-primary bg-tertiary border-t border-border-low flex flex-col justify-center",
|
||||
props.className,
|
||||
)}
|
||||
/>
|
||||
);
|
||||
}
|
||||
|
||||
export function RowButton({
|
||||
icon = IconPlusLarge,
|
||||
children,
|
||||
...props
|
||||
icon = IconPlusLarge,
|
||||
children,
|
||||
...props
|
||||
}: {
|
||||
children: ReactNode;
|
||||
icon?: FC<{ size: number; className?: string }>;
|
||||
children: ReactNode;
|
||||
icon?: FC<{ size: number; className?: string }>;
|
||||
} & ComponentPropsWithRef<"button">) {
|
||||
const IconComponent = icon;
|
||||
return (
|
||||
<button
|
||||
{...props}
|
||||
className={clsx(
|
||||
"py-2 bg-highlight hover:bg-highlight-hover active:bg-highlight-pressed cursor-pointer w-full flex gap-2 items-center justify-center text-sm text-txt-secondary",
|
||||
props.className,
|
||||
)}
|
||||
style={{
|
||||
gridColumnEnd: -1,
|
||||
gridColumnStart: 1,
|
||||
...props.style,
|
||||
}}
|
||||
>
|
||||
<IconComponent size={16} />
|
||||
{children}
|
||||
</button>
|
||||
);
|
||||
const IconComponent = icon;
|
||||
return (
|
||||
<button
|
||||
{...props}
|
||||
className={clsx(
|
||||
"py-2 bg-highlight hover:bg-highlight-hover active:bg-highlight-pressed cursor-pointer w-full flex gap-2 items-center justify-center text-sm text-txt-secondary",
|
||||
props.className,
|
||||
)}
|
||||
style={{
|
||||
gridColumnEnd: -1,
|
||||
gridColumnStart: 1,
|
||||
...props.style,
|
||||
}}
|
||||
>
|
||||
<IconComponent size={16} />
|
||||
{children}
|
||||
</button>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -4,32 +4,32 @@ import { Dropdown, DropdownItem, DropdownSeparator } from "./Dropdown";
|
||||
import type { Meta, StoryObj } from "@storybook/react";
|
||||
|
||||
export default {
|
||||
title: "Atoms/Dropdown",
|
||||
component: Dropdown,
|
||||
argTypes: {},
|
||||
subcomponents: {
|
||||
DropdownItem,
|
||||
DropdownSeparator,
|
||||
},
|
||||
title: "Atoms/Dropdown",
|
||||
component: Dropdown,
|
||||
argTypes: {},
|
||||
subcomponents: {
|
||||
DropdownItem,
|
||||
DropdownSeparator,
|
||||
},
|
||||
} satisfies Meta<typeof Dropdown>;
|
||||
|
||||
type Story = StoryObj<typeof Dropdown>;
|
||||
|
||||
export const Default: Story = {
|
||||
render: () => {
|
||||
return (
|
||||
<Dropdown toggle={<Button variant="tertiary">Dropdown</Button>}>
|
||||
<DropdownItem icon={IconCircleQuestionmark1}>
|
||||
Item 1
|
||||
</DropdownItem>
|
||||
<DropdownSeparator />
|
||||
<DropdownItem icon={IconCircleQuestionmark1}>
|
||||
Item 2
|
||||
</DropdownItem>
|
||||
<DropdownItem icon={IconCircleQuestionmark1}>
|
||||
Item 3
|
||||
</DropdownItem>
|
||||
</Dropdown>
|
||||
);
|
||||
},
|
||||
render: () => {
|
||||
return (
|
||||
<Dropdown toggle={<Button variant="tertiary">Dropdown</Button>}>
|
||||
<DropdownItem icon={IconCircleQuestionmark1}>
|
||||
Item 1
|
||||
</DropdownItem>
|
||||
<DropdownSeparator />
|
||||
<DropdownItem icon={IconCircleQuestionmark1}>
|
||||
Item 2
|
||||
</DropdownItem>
|
||||
<DropdownItem icon={IconCircleQuestionmark1}>
|
||||
Item 3
|
||||
</DropdownItem>
|
||||
</Dropdown>
|
||||
);
|
||||
},
|
||||
};
|
||||
|
||||
@@ -7,111 +7,113 @@ import { IconDotGrid1x3Horizontal } from "../Icons";
|
||||
import { Button } from "../Button/Button.tsx";
|
||||
|
||||
type Props = PropsWithChildren<{
|
||||
toggle?: ReactNode;
|
||||
className?: string;
|
||||
open?: boolean;
|
||||
onOpenChange?: (open: boolean) => void;
|
||||
toggle?: ReactNode;
|
||||
className?: string;
|
||||
open?: boolean;
|
||||
onOpenChange?: (open: boolean) => void;
|
||||
}>;
|
||||
|
||||
export const dropdown = tv({
|
||||
base: "z-50 p-2 shadow-mid min-w-[8rem] bg-level-1 overflow-y-auto overflow-x-hidden rounded-2xl border-border-low",
|
||||
base: "z-50 p-2 shadow-mid min-w-[8rem] bg-level-1 overflow-y-auto overflow-x-hidden rounded-2xl border-border-low",
|
||||
});
|
||||
|
||||
export function Dropdown({ children, toggle, className, open, onOpenChange }: Props) {
|
||||
return (
|
||||
<DropdownMenu.Root open={open} onOpenChange={onOpenChange}>
|
||||
{toggle && (
|
||||
<DropdownMenu.Trigger asChild>{toggle}</DropdownMenu.Trigger>
|
||||
)}
|
||||
<DropdownMenu.Portal>
|
||||
<DropdownMenu.Content
|
||||
style={{
|
||||
maxHeight:
|
||||
return (
|
||||
<DropdownMenu.Root open={open} onOpenChange={onOpenChange}>
|
||||
{toggle && (
|
||||
<DropdownMenu.Trigger asChild>{toggle}</DropdownMenu.Trigger>
|
||||
)}
|
||||
<DropdownMenu.Portal>
|
||||
<DropdownMenu.Content
|
||||
style={{
|
||||
maxHeight:
|
||||
"var(--radix-dropdown-menu-content-available-height)",
|
||||
}}
|
||||
className={dropdown({ className })}
|
||||
sideOffset={5}
|
||||
>
|
||||
{children}
|
||||
</DropdownMenu.Content>
|
||||
</DropdownMenu.Portal>
|
||||
</DropdownMenu.Root>
|
||||
);
|
||||
}}
|
||||
className={dropdown({ className })}
|
||||
sideOffset={5}
|
||||
>
|
||||
{children}
|
||||
</DropdownMenu.Content>
|
||||
</DropdownMenu.Portal>
|
||||
</DropdownMenu.Root>
|
||||
);
|
||||
}
|
||||
|
||||
export function DropdownSeparator({ className }: { className?: string }) {
|
||||
return (
|
||||
<DropdownMenu.Separator
|
||||
className={clsx("h-[1px] bg-border-low my-2", className)}
|
||||
/>
|
||||
);
|
||||
return (
|
||||
<DropdownMenu.Separator
|
||||
className={clsx("h-[1px] bg-border-low my-2", className)}
|
||||
/>
|
||||
);
|
||||
}
|
||||
|
||||
type DropdownItemProps = PropsWithChildren<{
|
||||
className?: string;
|
||||
icon?: FC<IconProps>;
|
||||
asChild?: boolean;
|
||||
variant?: "primary" | "tertiary" | "danger";
|
||||
}> &
|
||||
ComponentProps<typeof DropdownMenu.Item>;
|
||||
className?: string;
|
||||
icon?: FC<IconProps>;
|
||||
asChild?: boolean;
|
||||
variant?: "primary" | "tertiary" | "danger";
|
||||
}>
|
||||
& ComponentProps<typeof DropdownMenu.Item>;
|
||||
|
||||
export const dropdownItem = tv({
|
||||
base: "text-txt-primary flex items-center gap-2 hover:bg-tertiary-hover active:bg-tertiary-pressed data-active-item:bg-tertiary-pressed cursor-pointer p-2",
|
||||
variants: {
|
||||
variant: {
|
||||
primary: "text-txt-primary",
|
||||
tertiary: "text-txt-tertiary",
|
||||
danger: "text-txt-danger",
|
||||
},
|
||||
},
|
||||
defaultVariants: {
|
||||
variant: "primary",
|
||||
base: "text-txt-primary flex items-center gap-2 hover:bg-tertiary-hover active:bg-tertiary-pressed data-active-item:bg-tertiary-pressed cursor-pointer p-2",
|
||||
variants: {
|
||||
variant: {
|
||||
primary: "text-txt-primary",
|
||||
tertiary: "text-txt-tertiary",
|
||||
danger: "text-txt-danger",
|
||||
},
|
||||
},
|
||||
defaultVariants: {
|
||||
variant: "primary",
|
||||
},
|
||||
});
|
||||
|
||||
export function ActionDropdown(
|
||||
props: Omit<Props, "toggle"> & {
|
||||
variant?: ComponentProps<typeof Button>["variant"];
|
||||
},
|
||||
props: Omit<Props, "toggle"> & {
|
||||
variant?: ComponentProps<typeof Button>["variant"];
|
||||
},
|
||||
) {
|
||||
return (
|
||||
<Dropdown
|
||||
{...props}
|
||||
toggle={
|
||||
<Button
|
||||
className="inline-flex isolate z-5"
|
||||
variant={props.variant ?? "tertiary"}
|
||||
icon={IconDotGrid1x3Horizontal}
|
||||
/>
|
||||
}
|
||||
return (
|
||||
<Dropdown
|
||||
{...props}
|
||||
toggle={(
|
||||
<Button
|
||||
className="inline-flex isolate z-5"
|
||||
variant={props.variant ?? "tertiary"}
|
||||
icon={IconDotGrid1x3Horizontal}
|
||||
/>
|
||||
);
|
||||
)}
|
||||
/>
|
||||
);
|
||||
}
|
||||
|
||||
export function DropdownItem({
|
||||
icon: IconComponent,
|
||||
variant,
|
||||
className,
|
||||
children,
|
||||
asChild,
|
||||
...props
|
||||
icon: IconComponent,
|
||||
variant,
|
||||
className,
|
||||
children,
|
||||
asChild,
|
||||
...props
|
||||
}: DropdownItemProps) {
|
||||
return (
|
||||
<DropdownMenu.Item
|
||||
{...props}
|
||||
className={clsx(dropdownItem({ variant }), className)}
|
||||
asChild={asChild}
|
||||
>
|
||||
{asChild ? (
|
||||
children
|
||||
) : (
|
||||
<>
|
||||
{IconComponent && (
|
||||
<IconComponent size={16} className="flex-none" />
|
||||
)}
|
||||
{children}
|
||||
</>
|
||||
)}
|
||||
</DropdownMenu.Item>
|
||||
);
|
||||
return (
|
||||
<DropdownMenu.Item
|
||||
{...props}
|
||||
className={clsx(dropdownItem({ variant }), className)}
|
||||
asChild={asChild}
|
||||
>
|
||||
{asChild
|
||||
? (
|
||||
children
|
||||
)
|
||||
: (
|
||||
<>
|
||||
{IconComponent && (
|
||||
<IconComponent size={16} className="flex-none" />
|
||||
)}
|
||||
{children}
|
||||
</>
|
||||
)}
|
||||
</DropdownMenu.Item>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -2,31 +2,31 @@ import { Dropzone } from "./Dropzone";
|
||||
import type { Meta, StoryObj } from "@storybook/react";
|
||||
|
||||
export default {
|
||||
title: "Atoms/Dropzone",
|
||||
component: Dropzone,
|
||||
argTypes: {},
|
||||
title: "Atoms/Dropzone",
|
||||
component: Dropzone,
|
||||
argTypes: {},
|
||||
} satisfies Meta<typeof Dropzone>;
|
||||
|
||||
type Story = StoryObj<typeof Dropzone>;
|
||||
|
||||
export const Default: Story = {
|
||||
args: {
|
||||
description: "Maximum 500 MB file size",
|
||||
isUploading: false,
|
||||
disabled: false,
|
||||
},
|
||||
args: {
|
||||
description: "Maximum 500 MB file size",
|
||||
isUploading: false,
|
||||
disabled: false,
|
||||
},
|
||||
};
|
||||
|
||||
export const Disabled: Story = {
|
||||
args: {
|
||||
...Default.args,
|
||||
disabled: true,
|
||||
},
|
||||
args: {
|
||||
...Default.args,
|
||||
disabled: true,
|
||||
},
|
||||
};
|
||||
|
||||
export const Uploading: Story = {
|
||||
args: {
|
||||
...Default.args,
|
||||
isUploading: true,
|
||||
},
|
||||
args: {
|
||||
...Default.args,
|
||||
isUploading: true,
|
||||
},
|
||||
};
|
||||
|
||||
@@ -7,121 +7,125 @@ import { IconPageCross, IconUpload } from "../Icons";
|
||||
import { Spinner } from "../Spinner/Spinner";
|
||||
|
||||
type Props = {
|
||||
description: string;
|
||||
isUploading: boolean;
|
||||
disabled?: boolean;
|
||||
accept?: Record<string, string[]>;
|
||||
maxSize?: number; // maxSize in MB
|
||||
onDrop: (acceptedFiles: File[]) => void;
|
||||
description: string;
|
||||
isUploading: boolean;
|
||||
disabled?: boolean;
|
||||
accept?: Record<string, string[]>;
|
||||
maxSize?: number; // maxSize in MB
|
||||
onDrop: (acceptedFiles: File[]) => void;
|
||||
};
|
||||
|
||||
export const dropzone = tv({
|
||||
slots: {
|
||||
wrapper:
|
||||
slots: {
|
||||
wrapper:
|
||||
"bg-subtle border border border-border-low p-2 rounded-[20px] outline-none focus-visible:shadow-focus",
|
||||
zone: "bg-secondary min-h-46 border border-border-low border-dashed rounded-2xl flex items-center justify-center",
|
||||
title: "flex gap-2 text-sm font-medium text-center justify-center",
|
||||
description: "text-xs text-txt-tertiary text-center",
|
||||
zone: "bg-secondary min-h-46 border border-border-low border-dashed rounded-2xl flex items-center justify-center",
|
||||
title: "flex gap-2 text-sm font-medium text-center justify-center",
|
||||
description: "text-xs text-txt-tertiary text-center",
|
||||
},
|
||||
variants: {
|
||||
isDragActive: {
|
||||
true: {
|
||||
wrapper: "border-border-success shadow-focus",
|
||||
zone: "border-border-success",
|
||||
},
|
||||
},
|
||||
variants: {
|
||||
isDragActive: {
|
||||
true: {
|
||||
wrapper: "border-border-success shadow-focus",
|
||||
zone: "border-border-success",
|
||||
},
|
||||
},
|
||||
hasError: {
|
||||
true: {
|
||||
wrapper: "bg-danger",
|
||||
zone: "bg-invert",
|
||||
title: "text-txt-danger",
|
||||
description: "text-txt-danger",
|
||||
},
|
||||
},
|
||||
disabled: {
|
||||
true: {
|
||||
wrapper: "opacity-60 cursor-default",
|
||||
zone: "bg-highlight",
|
||||
},
|
||||
false: {
|
||||
zone: "hover:bg-secondary-hover",
|
||||
},
|
||||
},
|
||||
hasError: {
|
||||
true: {
|
||||
wrapper: "bg-danger",
|
||||
zone: "bg-invert",
|
||||
title: "text-txt-danger",
|
||||
description: "text-txt-danger",
|
||||
},
|
||||
},
|
||||
defaultVariants: {
|
||||
isDragActive: false,
|
||||
disabled: false,
|
||||
hasError: false,
|
||||
disabled: {
|
||||
true: {
|
||||
wrapper: "opacity-60 cursor-default",
|
||||
zone: "bg-highlight",
|
||||
},
|
||||
false: {
|
||||
zone: "hover:bg-secondary-hover",
|
||||
},
|
||||
},
|
||||
},
|
||||
defaultVariants: {
|
||||
isDragActive: false,
|
||||
disabled: false,
|
||||
hasError: false,
|
||||
},
|
||||
});
|
||||
|
||||
const MB = 1024 * 1024;
|
||||
|
||||
export function Dropzone(props: Props) {
|
||||
const { __ } = useTranslate();
|
||||
const onDropRef = useRefSync(props.onDrop);
|
||||
const onDrop = useCallback(
|
||||
(files: File[]) => {
|
||||
onDropRef.current(files);
|
||||
},
|
||||
[onDropRef],
|
||||
);
|
||||
const { getRootProps, getInputProps, isDragActive, fileRejections } =
|
||||
useDropzone({
|
||||
disabled: props.disabled || props.isUploading,
|
||||
accept: props.accept,
|
||||
onDrop,
|
||||
maxSize: props.maxSize ? props.maxSize * MB : undefined,
|
||||
});
|
||||
const error = getDropzoneError(__, fileRejections);
|
||||
const { wrapper, zone, title, description } = dropzone({
|
||||
...props,
|
||||
isDragActive,
|
||||
hasError: !!error,
|
||||
const { __ } = useTranslate();
|
||||
const onDropRef = useRefSync(props.onDrop);
|
||||
const onDrop = useCallback(
|
||||
(files: File[]) => {
|
||||
onDropRef.current(files);
|
||||
},
|
||||
[onDropRef],
|
||||
);
|
||||
const { getRootProps, getInputProps, isDragActive, fileRejections }
|
||||
= useDropzone({
|
||||
disabled: props.disabled || props.isUploading,
|
||||
accept: props.accept,
|
||||
onDrop,
|
||||
maxSize: props.maxSize ? props.maxSize * MB : undefined,
|
||||
});
|
||||
const error = getDropzoneError(__, fileRejections);
|
||||
const { wrapper, zone, title, description } = dropzone({
|
||||
...props,
|
||||
isDragActive,
|
||||
hasError: !!error,
|
||||
});
|
||||
|
||||
return (
|
||||
<div {...getRootProps()} className={wrapper()}>
|
||||
<div className={zone()}>
|
||||
<input {...getInputProps({ max: 10 })} />
|
||||
{props.isUploading ? (
|
||||
<div className={title({ isDragActive: true })}>
|
||||
<Spinner />
|
||||
{__("Uploading file")}
|
||||
</div>
|
||||
) : (
|
||||
<div className="space-y-2">
|
||||
<div className={title()}>
|
||||
{error ? (
|
||||
<IconPageCross size={20} />
|
||||
) : (
|
||||
<IconUpload size={20} />
|
||||
)}
|
||||
{error ?? __("Drag and drop or browse files")}
|
||||
</div>
|
||||
<div className={description()}>{props.description}</div>
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
return (
|
||||
<div {...getRootProps()} className={wrapper()}>
|
||||
<div className={zone()}>
|
||||
<input {...getInputProps({ max: 10 })} />
|
||||
{props.isUploading
|
||||
? (
|
||||
<div className={title({ isDragActive: true })}>
|
||||
<Spinner />
|
||||
{__("Uploading file")}
|
||||
</div>
|
||||
)
|
||||
: (
|
||||
<div className="space-y-2">
|
||||
<div className={title()}>
|
||||
{error
|
||||
? (
|
||||
<IconPageCross size={20} />
|
||||
)
|
||||
: (
|
||||
<IconUpload size={20} />
|
||||
)}
|
||||
{error ?? __("Drag and drop or browse files")}
|
||||
</div>
|
||||
<div className={description()}>{props.description}</div>
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
function getDropzoneError(
|
||||
__: (s: string) => string,
|
||||
fileRejections: readonly FileRejection[],
|
||||
__: (s: string) => string,
|
||||
fileRejections: readonly FileRejection[],
|
||||
) {
|
||||
if (fileRejections.length === 0) {
|
||||
return null;
|
||||
}
|
||||
if (fileRejections.length === 0) {
|
||||
return null;
|
||||
}
|
||||
|
||||
const code = fileRejections[0].errors[0].code;
|
||||
switch (code) {
|
||||
case "file-invalid-type":
|
||||
return __("This file is not supported");
|
||||
case "file-too-large":
|
||||
return __("This file is too large");
|
||||
default:
|
||||
return __("Something went wrong");
|
||||
}
|
||||
const code = fileRejections[0].errors[0].code;
|
||||
switch (code) {
|
||||
case "file-invalid-type":
|
||||
return __("This file is not supported");
|
||||
case "file-too-large":
|
||||
return __("This file is too large");
|
||||
default:
|
||||
return __("Something went wrong");
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2,33 +2,35 @@ import clsx from "clsx";
|
||||
import { Avatar } from "../Avatar/Avatar";
|
||||
|
||||
interface FrameworkLogoProps {
|
||||
className?: string;
|
||||
darkLogoURL?: string | null;
|
||||
lightLogoURL?: string | null;
|
||||
name: string;
|
||||
className?: string;
|
||||
darkLogoURL?: string | null;
|
||||
lightLogoURL?: string | null;
|
||||
name: string;
|
||||
}
|
||||
|
||||
export function FrameworkLogo(props: FrameworkLogoProps) {
|
||||
const { className, lightLogoURL, darkLogoURL, name } = props;
|
||||
const { className, lightLogoURL, darkLogoURL, name } = props;
|
||||
|
||||
return lightLogoURL || darkLogoURL ? (
|
||||
return lightLogoURL || darkLogoURL
|
||||
? (
|
||||
<>
|
||||
{lightLogoURL && (
|
||||
<img
|
||||
src={lightLogoURL}
|
||||
className={clsx("size-12 block dark:hidden", className)}
|
||||
alt={name}
|
||||
/>
|
||||
)}
|
||||
{darkLogoURL && (
|
||||
<img
|
||||
src={darkLogoURL}
|
||||
className={clsx("size-12 hidden dark:block", className)}
|
||||
alt={name}
|
||||
/>
|
||||
)}
|
||||
{lightLogoURL && (
|
||||
<img
|
||||
src={lightLogoURL}
|
||||
className={clsx("size-12 block dark:hidden", className)}
|
||||
alt={name}
|
||||
/>
|
||||
)}
|
||||
{darkLogoURL && (
|
||||
<img
|
||||
src={darkLogoURL}
|
||||
className={clsx("size-12 hidden dark:block", className)}
|
||||
alt={name}
|
||||
/>
|
||||
)}
|
||||
</>
|
||||
) : (
|
||||
)
|
||||
: (
|
||||
<Avatar name={name} size="l" className={clsx("size-12", className)} />
|
||||
);
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1,39 +1,39 @@
|
||||
export function CASA(props: { className?: string }) {
|
||||
const { className } = props;
|
||||
const { className } = props;
|
||||
|
||||
return (
|
||||
<svg
|
||||
className={className}
|
||||
version="1.1"
|
||||
id="Layer_1"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlnsXlink="http://www.w3.org/1999/xlink"
|
||||
x="0px"
|
||||
y="0px"
|
||||
viewBox="0 0 60 60"
|
||||
enable-background="new 0 0 60 60"
|
||||
xmlSpace="preserve"
|
||||
>
|
||||
<path
|
||||
className="fill-none stroke-txt-primary"
|
||||
d="M30.294399,54.167702c-0.1752,0.127296-0.4126,0.127296-0.5879,0L4.55322,35.894299c-0.16498-0.1199-0.23997-0.328499-0.19043-0.526398L11.7466,5.87866c0.0557-0.22238,0.2551-0.37875,0.4844-0.3789h35.538002c0.229298,0.00009,0.428699,0.15647,0.484398,0.3789l7.383801,29.489241c0.049599,0.197899-0.025398,0.406498-0.190399,0.526398L30.294399,54.167702z"
|
||||
/>
|
||||
<path
|
||||
className="fill-none stroke-txt-primary"
|
||||
d="M30.293501,49.498001c-0.175301,0.1273-0.411701,0.1273-0.587002,0L9.00439,34.458c-0.164909-0.1199-0.23995-0.328499-0.19043-0.526402L14.8872,9.6748C14.943,9.45246,15.1433,9.29687,15.3726,9.29687l29.254799,0.00001c0.229301,0,0.4296,0.15557,0.485401,0.37792l6.0732,24.256798C51.2356,34.129398,51.1605,34.3381,50.995602,34.458L30.293501,49.498001z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M30,8.79663L30,8.79663c0.276142,0,0.5,0.223858,0.5,0.5v7.000001c0,0.276142-0.223858,0.5-0.5,0.5l0,0c-0.276142,0-0.5-0.223858-0.5-0.5V9.29663C29.5,9.020488,29.723858,8.79663,30,8.79663z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M19.1761,31.526899c-0.633299,0-1.190001-0.146599-1.67-0.439999c-0.48-0.300001-0.8533-0.726601-1.119999-1.280001c-0.266602-0.553301-0.400001-1.213301-0.400001-1.98c0-0.7666,0.133399-1.426601,0.400001-1.98C16.6528,25.2869,17.0261,24.856899,17.5061,24.5569s1.036701-0.450001,1.67-0.450001c0.860001,0,1.526701,0.216702,2,0.650002c0.4734,0.433399,0.7834,1.023399,0.93,1.769999l-0.91,0.060001c-0.1-0.506601-0.313301-0.906601-0.639999-1.200001c-0.326601-0.293301-0.7866-0.440001-1.380001-0.440001c-0.4533,0-0.8533,0.116701-1.199999,0.35c-0.34,0.2267-0.606602,0.5567-0.800001,0.99C16.9828,26.7136,16.886101,27.2269,16.886101,27.8269s0.096699,1.1134,0.289999,1.539999c0.193399,0.426701,0.460001,0.753401,0.800001,0.980001c0.346699,0.2267,0.746698,0.339998,1.199999,0.339998c0.620001,0,1.1-0.16,1.440001-0.48c0.34-0.326599,0.5534-0.7666,0.639999-1.32l0.91,0.059999c-0.086599,0.513401-0.256599,0.9634-0.51,1.35c-0.2533,0.3867-0.59,0.690001-1.01,0.91C20.2328,31.4203,19.7428,31.526899,19.1761,31.526899z M23.5135,31.366899l2.559999-7.1h1.16l2.560001,7.1H28.8535l-0.710001-2.019999h-2.98l-0.709999,2.019999H23.5135z M25.453501,28.506901h2.4L26.6535,25.016899L25.453501,28.506901zM34.0504,31.526899c-0.5466,0-1.0233-0.1033-1.43-0.309999c-0.406601-0.2066-0.73-0.49-0.969999-0.85c-0.233299-0.3666-0.370001-0.789999-0.41-1.269999l0.9-0.060001c0.0467,0.353401,0.150002,0.6534,0.310001,0.9c0.16,0.2467,0.373398,0.433401,0.639999,0.560001c0.273399,0.126699,0.599998,0.189999,0.98,0.189999c0.333401,0,0.616699-0.043299,0.849998-0.129999c0.233402-0.086599,0.41-0.213301,0.530003-0.379999C35.577099,30.0103,35.6404,29.8069,35.6404,29.5669c0-0.219999-0.053299-0.4133-0.16-0.58c-0.099998-0.1733-0.2966-0.33-0.59-0.470001c-0.286598-0.146599-0.713299-0.289999-1.279999-0.429998c-0.5466-0.140001-0.983299-0.293301-1.310001-0.460001c-0.32-0.166599-0.553299-0.369999-0.699999-0.610001c-0.140001-0.24-0.210001-0.536598-0.210001-0.889999c0-0.4,0.093401-0.75,0.280001-1.049999c0.193399-0.306601,0.4667-0.543301,0.819998-0.710001c0.353401-0.1733,0.773403-0.26,1.260002-0.26c0.52,0,0.966698,0.1,1.34,0.300001c0.373398,0.193399,0.669998,0.459999,0.889999,0.799999s0.356701,0.7267,0.41,1.16l-0.900002,0.060001c-0.039997-0.2866-0.133297-0.540001-0.279999-0.76C35.0704,25.4403,34.877102,25.263599,34.630402,25.1369c-0.246601-0.1266-0.5466-0.190001-0.900002-0.190001c-0.439999,0-0.790001,0.106701-1.049999,0.32c-0.260002,0.206701-0.389999,0.480001-0.389999,0.820002c0,0.219999,0.049999,0.403399,0.149998,0.549999c0.106701,0.139999,0.2934,0.266701,0.560001,0.379999c0.266701,0.106701,0.649998,0.2234,1.149998,0.35c0.593403,0.1467,1.0634,0.3234,1.41,0.530001c0.353401,0.200001,0.603401,0.433399,0.75,0.700001c0.1534,0.266699,0.230003,0.57,0.230003,0.91c0,0.413399-0.106602,0.773399-0.32,1.08c-0.213303,0.299999-0.506603,0.5334-0.880001,0.699999C34.967098,31.446899,34.537102,31.526899,34.0504,31.526899zM37.9842,31.366899l2.560001-7.1h1.16l2.559998,7.1H43.3242l-0.709999-2.019999h-2.98l-0.710003,2.019999H37.9842zM39.924198,28.506901H42.3242l-1.200001-3.490002L39.924198,28.506901z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M30,41.327599L30,41.327599c0.276142,0,0.5,0.223858,0.5,0.5v7c0,0.276142-0.223858,0.5-0.5,0.5l0,0c-0.276142,0-0.5-0.223858-0.5-0.5v-7C29.5,41.551456,29.723858,41.327599,30,41.327599z"
|
||||
/>
|
||||
</svg>
|
||||
);
|
||||
return (
|
||||
<svg
|
||||
className={className}
|
||||
version="1.1"
|
||||
id="Layer_1"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlnsXlink="http://www.w3.org/1999/xlink"
|
||||
x="0px"
|
||||
y="0px"
|
||||
viewBox="0 0 60 60"
|
||||
enable-background="new 0 0 60 60"
|
||||
xmlSpace="preserve"
|
||||
>
|
||||
<path
|
||||
className="fill-none stroke-txt-primary"
|
||||
d="M30.294399,54.167702c-0.1752,0.127296-0.4126,0.127296-0.5879,0L4.55322,35.894299c-0.16498-0.1199-0.23997-0.328499-0.19043-0.526398L11.7466,5.87866c0.0557-0.22238,0.2551-0.37875,0.4844-0.3789h35.538002c0.229298,0.00009,0.428699,0.15647,0.484398,0.3789l7.383801,29.489241c0.049599,0.197899-0.025398,0.406498-0.190399,0.526398L30.294399,54.167702z"
|
||||
/>
|
||||
<path
|
||||
className="fill-none stroke-txt-primary"
|
||||
d="M30.293501,49.498001c-0.175301,0.1273-0.411701,0.1273-0.587002,0L9.00439,34.458c-0.164909-0.1199-0.23995-0.328499-0.19043-0.526402L14.8872,9.6748C14.943,9.45246,15.1433,9.29687,15.3726,9.29687l29.254799,0.00001c0.229301,0,0.4296,0.15557,0.485401,0.37792l6.0732,24.256798C51.2356,34.129398,51.1605,34.3381,50.995602,34.458L30.293501,49.498001z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M30,8.79663L30,8.79663c0.276142,0,0.5,0.223858,0.5,0.5v7.000001c0,0.276142-0.223858,0.5-0.5,0.5l0,0c-0.276142,0-0.5-0.223858-0.5-0.5V9.29663C29.5,9.020488,29.723858,8.79663,30,8.79663z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M19.1761,31.526899c-0.633299,0-1.190001-0.146599-1.67-0.439999c-0.48-0.300001-0.8533-0.726601-1.119999-1.280001c-0.266602-0.553301-0.400001-1.213301-0.400001-1.98c0-0.7666,0.133399-1.426601,0.400001-1.98C16.6528,25.2869,17.0261,24.856899,17.5061,24.5569s1.036701-0.450001,1.67-0.450001c0.860001,0,1.526701,0.216702,2,0.650002c0.4734,0.433399,0.7834,1.023399,0.93,1.769999l-0.91,0.060001c-0.1-0.506601-0.313301-0.906601-0.639999-1.200001c-0.326601-0.293301-0.7866-0.440001-1.380001-0.440001c-0.4533,0-0.8533,0.116701-1.199999,0.35c-0.34,0.2267-0.606602,0.5567-0.800001,0.99C16.9828,26.7136,16.886101,27.2269,16.886101,27.8269s0.096699,1.1134,0.289999,1.539999c0.193399,0.426701,0.460001,0.753401,0.800001,0.980001c0.346699,0.2267,0.746698,0.339998,1.199999,0.339998c0.620001,0,1.1-0.16,1.440001-0.48c0.34-0.326599,0.5534-0.7666,0.639999-1.32l0.91,0.059999c-0.086599,0.513401-0.256599,0.9634-0.51,1.35c-0.2533,0.3867-0.59,0.690001-1.01,0.91C20.2328,31.4203,19.7428,31.526899,19.1761,31.526899z M23.5135,31.366899l2.559999-7.1h1.16l2.560001,7.1H28.8535l-0.710001-2.019999h-2.98l-0.709999,2.019999H23.5135z M25.453501,28.506901h2.4L26.6535,25.016899L25.453501,28.506901zM34.0504,31.526899c-0.5466,0-1.0233-0.1033-1.43-0.309999c-0.406601-0.2066-0.73-0.49-0.969999-0.85c-0.233299-0.3666-0.370001-0.789999-0.41-1.269999l0.9-0.060001c0.0467,0.353401,0.150002,0.6534,0.310001,0.9c0.16,0.2467,0.373398,0.433401,0.639999,0.560001c0.273399,0.126699,0.599998,0.189999,0.98,0.189999c0.333401,0,0.616699-0.043299,0.849998-0.129999c0.233402-0.086599,0.41-0.213301,0.530003-0.379999C35.577099,30.0103,35.6404,29.8069,35.6404,29.5669c0-0.219999-0.053299-0.4133-0.16-0.58c-0.099998-0.1733-0.2966-0.33-0.59-0.470001c-0.286598-0.146599-0.713299-0.289999-1.279999-0.429998c-0.5466-0.140001-0.983299-0.293301-1.310001-0.460001c-0.32-0.166599-0.553299-0.369999-0.699999-0.610001c-0.140001-0.24-0.210001-0.536598-0.210001-0.889999c0-0.4,0.093401-0.75,0.280001-1.049999c0.193399-0.306601,0.4667-0.543301,0.819998-0.710001c0.353401-0.1733,0.773403-0.26,1.260002-0.26c0.52,0,0.966698,0.1,1.34,0.300001c0.373398,0.193399,0.669998,0.459999,0.889999,0.799999s0.356701,0.7267,0.41,1.16l-0.900002,0.060001c-0.039997-0.2866-0.133297-0.540001-0.279999-0.76C35.0704,25.4403,34.877102,25.263599,34.630402,25.1369c-0.246601-0.1266-0.5466-0.190001-0.900002-0.190001c-0.439999,0-0.790001,0.106701-1.049999,0.32c-0.260002,0.206701-0.389999,0.480001-0.389999,0.820002c0,0.219999,0.049999,0.403399,0.149998,0.549999c0.106701,0.139999,0.2934,0.266701,0.560001,0.379999c0.266701,0.106701,0.649998,0.2234,1.149998,0.35c0.593403,0.1467,1.0634,0.3234,1.41,0.530001c0.353401,0.200001,0.603401,0.433399,0.75,0.700001c0.1534,0.266699,0.230003,0.57,0.230003,0.91c0,0.413399-0.106602,0.773399-0.32,1.08c-0.213303,0.299999-0.506603,0.5334-0.880001,0.699999C34.967098,31.446899,34.537102,31.526899,34.0504,31.526899zM37.9842,31.366899l2.560001-7.1h1.16l2.559998,7.1H43.3242l-0.709999-2.019999h-2.98l-0.710003,2.019999H37.9842zM39.924198,28.506901H42.3242l-1.200001-3.490002L39.924198,28.506901z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M30,41.327599L30,41.327599c0.276142,0,0.5,0.223858,0.5,0.5v7c0,0.276142-0.223858,0.5-0.5,0.5l0,0c-0.276142,0-0.5-0.223858-0.5-0.5v-7C29.5,41.551456,29.723858,41.327599,30,41.327599z"
|
||||
/>
|
||||
</svg>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1,48 +1,48 @@
|
||||
export function CCPA(props: { className?: string }) {
|
||||
const { className } = props;
|
||||
const { className } = props;
|
||||
|
||||
return (
|
||||
<svg
|
||||
className={className}
|
||||
version="1.1"
|
||||
id="Layer_1"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlnsXlink="http://www.w3.org/1999/xlink"
|
||||
x="0px"
|
||||
y="0px"
|
||||
viewBox="0 0 60 60"
|
||||
enable-background="new 0 0 60 60"
|
||||
xmlSpace="preserve"
|
||||
>
|
||||
<rect
|
||||
x="10.5"
|
||||
y="6.5"
|
||||
className="fill-none stroke-txt-primary"
|
||||
width="39"
|
||||
height="47"
|
||||
/>
|
||||
<path
|
||||
className="fill-none stroke-txt-primary"
|
||||
stroke-linecap="round"
|
||||
d="M37.612999,33.953899l3.472099,3.064301c0.019501,0.019299,0.032101,0.044498,0.035801,0.071602l0.495399,5.054699c0.002003,0.028198-0.006298,0.056099-0.0233,0.078598c-0.016998,0.022503-0.041599,0.038101-0.069199,0.0438l-7.0364,1.338802c-0.013599,0.002598-0.0275,0.003899-0.041401,0.003899c-0.0186-0.000599-0.0368-0.005901-0.052998-0.015301C34.3769,43.584999,34.3633,43.5718,34.3535,43.555901L32.8601,41.1959c-0.225998-0.356998-0.559101-0.633301-0.951799-0.7892l-6.157301-2.445599c-0.017899-0.008102-0.0336-0.0205-0.045599-0.036102c-0.0119-0.015598-0.019901-0.034-0.023001-0.053398l-0.252199-2.0219c-0.051401-0.412201-0.2299-0.798203-0.510801-1.104401l-3.2414-3.533701c-0.0149-0.017799-0.0242-0.039598-0.026899-0.0627l-0.3354-2.535c-0.0536-0.4049-0.2299-0.783699-0.5051-1.0854l-2.396999-2.6278c-0.018501-0.0205-0.029001-0.046999-0.0298-0.0746v-8.324999c0-0.014801,0.002899-0.0294,0.008699-0.043001c0.005699-0.013599,0.014101-0.0259,0.0247-0.0362c0.0105-0.0103,0.0231-0.018299,0.0368-0.023701c0.0138-0.0054,0.0284-0.007898,0.0432-0.0075h9.25c0.014799-0.000399,0.0294,0.0021,0.0432,0.0075c0.0137,0.005402,0.026201,0.013401,0.0368,0.023701s0.019001,0.0226,0.0247,0.0362c0.005699,0.013601,0.008699,0.0282,0.008699,0.043001V24.2633c0,0.548,0.2248,1.071899,0.622,1.449499L29.0972,26.2971"
|
||||
/>
|
||||
<rect
|
||||
x="31.3174"
|
||||
y="24.992399"
|
||||
className="fill-none stroke-txt-primary"
|
||||
width="8.875608"
|
||||
height="6.80295"
|
||||
/>
|
||||
<path
|
||||
className="fill-none stroke-txt-primary"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
d="M34.121101,28.5574l0.980297,0.980301l2.287502-2.2875"
|
||||
/>
|
||||
<path
|
||||
className="fill-none stroke-txt-primary"
|
||||
d="M38.3437,25.1182v-2.235901c0-1.429499-1.158802-2.5884-2.588299-2.5884c-1.4296,0-2.588402,1.158901-2.588402,2.5884V25.1182"
|
||||
/>
|
||||
</svg>
|
||||
);
|
||||
return (
|
||||
<svg
|
||||
className={className}
|
||||
version="1.1"
|
||||
id="Layer_1"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlnsXlink="http://www.w3.org/1999/xlink"
|
||||
x="0px"
|
||||
y="0px"
|
||||
viewBox="0 0 60 60"
|
||||
enable-background="new 0 0 60 60"
|
||||
xmlSpace="preserve"
|
||||
>
|
||||
<rect
|
||||
x="10.5"
|
||||
y="6.5"
|
||||
className="fill-none stroke-txt-primary"
|
||||
width="39"
|
||||
height="47"
|
||||
/>
|
||||
<path
|
||||
className="fill-none stroke-txt-primary"
|
||||
stroke-linecap="round"
|
||||
d="M37.612999,33.953899l3.472099,3.064301c0.019501,0.019299,0.032101,0.044498,0.035801,0.071602l0.495399,5.054699c0.002003,0.028198-0.006298,0.056099-0.0233,0.078598c-0.016998,0.022503-0.041599,0.038101-0.069199,0.0438l-7.0364,1.338802c-0.013599,0.002598-0.0275,0.003899-0.041401,0.003899c-0.0186-0.000599-0.0368-0.005901-0.052998-0.015301C34.3769,43.584999,34.3633,43.5718,34.3535,43.555901L32.8601,41.1959c-0.225998-0.356998-0.559101-0.633301-0.951799-0.7892l-6.157301-2.445599c-0.017899-0.008102-0.0336-0.0205-0.045599-0.036102c-0.0119-0.015598-0.019901-0.034-0.023001-0.053398l-0.252199-2.0219c-0.051401-0.412201-0.2299-0.798203-0.510801-1.104401l-3.2414-3.533701c-0.0149-0.017799-0.0242-0.039598-0.026899-0.0627l-0.3354-2.535c-0.0536-0.4049-0.2299-0.783699-0.5051-1.0854l-2.396999-2.6278c-0.018501-0.0205-0.029001-0.046999-0.0298-0.0746v-8.324999c0-0.014801,0.002899-0.0294,0.008699-0.043001c0.005699-0.013599,0.014101-0.0259,0.0247-0.0362c0.0105-0.0103,0.0231-0.018299,0.0368-0.023701c0.0138-0.0054,0.0284-0.007898,0.0432-0.0075h9.25c0.014799-0.000399,0.0294,0.0021,0.0432,0.0075c0.0137,0.005402,0.026201,0.013401,0.0368,0.023701s0.019001,0.0226,0.0247,0.0362c0.005699,0.013601,0.008699,0.0282,0.008699,0.043001V24.2633c0,0.548,0.2248,1.071899,0.622,1.449499L29.0972,26.2971"
|
||||
/>
|
||||
<rect
|
||||
x="31.3174"
|
||||
y="24.992399"
|
||||
className="fill-none stroke-txt-primary"
|
||||
width="8.875608"
|
||||
height="6.80295"
|
||||
/>
|
||||
<path
|
||||
className="fill-none stroke-txt-primary"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
d="M34.121101,28.5574l0.980297,0.980301l2.287502-2.2875"
|
||||
/>
|
||||
<path
|
||||
className="fill-none stroke-txt-primary"
|
||||
d="M38.3437,25.1182v-2.235901c0-1.429499-1.158802-2.5884-2.588299-2.5884c-1.4296,0-2.588402,1.158901-2.588402,2.5884V25.1182"
|
||||
/>
|
||||
</svg>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1,77 +1,77 @@
|
||||
export function DORA(props: { className?: string }) {
|
||||
const { className } = props;
|
||||
const { className } = props;
|
||||
|
||||
return (
|
||||
<svg
|
||||
className={className}
|
||||
version="1.1"
|
||||
id="Layer_1"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlnsXlink="http://www.w3.org/1999/xlink"
|
||||
x="0px"
|
||||
y="0px"
|
||||
viewBox="0 0 60 60"
|
||||
enable-background="new 0 0 60 60"
|
||||
xmlSpace="preserve"
|
||||
>
|
||||
<path
|
||||
className="fill-none stroke-txt-primary"
|
||||
d="M53.749001,16.288099v27.4228L30,57.422897L6.25098,43.710899v-27.4228L30,2.576169L53.749001,16.288099z"
|
||||
/>
|
||||
<g>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M29.909,9.4694c0.0355-0.07827,0.1467-0.07827,0.1821,0l0.3678,0.8111c0.014601,0.0321,0.045,0.0542,0.08,0.0581L31.424,10.4378c0.0854,0.0095,0.119699,0.1152,0.056299,0.1732l-0.657801,0.6004c-0.025999,0.0238-0.0376,0.0595-0.0305,0.094l0.179199,0.8724c0.0173,0.0842-0.072701,0.1495-0.1474,0.1071l-0.7743-0.44c-0.030701-0.0175-0.068199-0.0175-0.098801,0l-0.774401,0.44c-0.074699,0.0424-0.1646-0.0229-0.147301-0.1071l0.179199-0.8724c0.007099-0.0345-0.004499-0.0702-0.0305-0.094l-0.657801-0.6004c-0.063499-0.058-0.0291-0.1637,0.056299-0.1732l0.885099-0.0992c0.035-0.0039,0.0653-0.026,0.079901-0.0581L29.909,9.4694z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M29.909,47.680504c0.0355-0.07827,0.1467-0.07827,0.1821,0l0.3678,0.8111c0.014601,0.032101,0.045,0.054203,0.08,0.058102L31.424,48.648907c0.0854,0.009499,0.119699,0.1152,0.056299,0.173199l-0.657801,0.600399c-0.025999,0.0238-0.0376,0.059502-0.0305,0.094002l0.179199,0.872398c0.0173,0.084202-0.072701,0.149502-0.1474,0.107101l-0.7743-0.440002c-0.030701-0.017498-0.068199-0.017498-0.098801,0l-0.774401,0.440002c-0.074699,0.0424-0.1646-0.0229-0.147301-0.107101l0.179199-0.872398c0.007099-0.0345-0.004499-0.070202-0.0305-0.094002l-0.657801-0.600399c-0.063499-0.057999-0.0291-0.1637,0.056299-0.173199l0.885099-0.099201c0.035-0.003899,0.0653-0.026001,0.079901-0.058102L29.909,47.680504z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M19.755541,12.55737c-0.008392-0.085533,0.087912-0.141133,0.157703-0.09105l0.724073,0.518534c0.028694,0.020499,0.066072,0.024439,0.098331,0.010316l0.81612-0.35664c0.078707-0.034472,0.161263,0.039917,0.135355,0.121846l-0.269472,0.848862c-0.010614,0.03361-0.002811,0.070328,0.020586,0.096657l0.591393,0.665921c0.057081,0.064269,0.011789,0.16582-0.074102,0.166451l-0.890564,0.006099c-0.035337,0.000196-0.067812,0.018945-0.085564,0.0494l-0.450651,0.768251c-0.043491,0.074069-0.153997,0.062469-0.181116-0.0191l-0.281008-0.84512c-0.011103-0.033428-0.038998-0.058546-0.073414-0.066156l-0.869873-0.191061c-0.083992-0.018479-0.107052-0.127218-0.037844-0.178145l0.716919-0.528461c0.02836-0.020877,0.043552-0.055166,0.040146-0.090266L19.755541,12.55737z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M12.506371,20.308361c-0.050034-0.069878,0.005567-0.166182,0.09105-0.157703l0.886333,0.087027c0.0351,0.003405,0.069439-0.011871,0.090316-0.040232l0.528461-0.716919c0.050927-0.069208,0.159616-0.046062,0.178145,0.037844l0.191061,0.869871c0.007611,0.034416,0.032728,0.062311,0.066156,0.073414l0.84512,0.28101c0.081569,0.027117,0.09312,0.137711,0.019051,0.181202l-0.768201,0.450563c-0.030505,0.017838-0.049254,0.050312-0.0494,0.085564l-0.006149,0.89065c-0.00063,0.085892-0.102132,0.131098-0.166401,0.074017l-0.665921-0.591391c-0.026329-0.023399-0.063046-0.031204-0.096657-0.020586l-0.848862,0.269472c-0.081979,0.025991-0.156319-0.056648-0.121846-0.135357l0.35664-0.816118c0.014123-0.032261,0.010134-0.069551-0.010365-0.098246L12.506371,20.308361z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M10.103903,30.6455c-0.07827-0.0355-0.07827-0.1467,0-0.1821l0.8111-0.3678c0.0321-0.014601,0.0542-0.045,0.0581-0.08l0.0992-0.885099c0.0095-0.0854,0.1152-0.119699,0.1732-0.056299l0.6004,0.657801c0.0238,0.025999,0.0595,0.0376,0.094,0.0305l0.8724-0.179199c0.0842-0.0173,0.1495,0.072701,0.1071,0.1474l-0.44,0.7743c-0.0175,0.030701-0.0175,0.068199,0,0.098801l0.44,0.774401c0.0424,0.074699-0.0229,0.1646-0.1071,0.147301l-0.8724-0.179199c-0.0345-0.007099-0.0702,0.004499-0.094,0.0305l-0.6004,0.657801c-0.058,0.063499-0.1637,0.029099-0.1732-0.056299l-0.0992-0.885099c-0.0039-0.035-0.026-0.0653-0.0581-0.079901L10.103903,30.6455z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M13.191873,40.798962c-0.085533,0.008389-0.141133-0.087914-0.09105-0.157707l0.518534-0.724072c0.020499-0.028694,0.024439-0.066071,0.010316-0.098331l-0.35664-0.81612c-0.034472-0.078709,0.039917-0.161263,0.121846-0.135357l0.848862,0.269474c0.03361,0.010616,0.070328,0.002811,0.096657-0.020588l0.665921-0.591389c0.064269-0.057083,0.16582-0.011791,0.166451,0.0741l0.006099,0.890564c0.000196,0.035336,0.018945,0.06781,0.0494,0.085564l0.768251,0.450649c0.074071,0.043491,0.062469,0.153999-0.0191,0.181118l-0.84512,0.28101c-0.033428,0.011101-0.058546,0.038994-0.066156,0.073414l-0.191061,0.869869c-0.018479,0.083992-0.127218,0.107052-0.178145,0.037846l-0.528461-0.716919c-0.020877-0.028362-0.055166-0.043552-0.090266-0.040146L13.191873,40.798962z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M20.942863,48.04813c-0.069878,0.050034-0.166182-0.005569-0.157703-0.091053l0.087027-0.886333c0.003405-0.035099-0.011871-0.069435-0.040232-0.090313l-0.716919-0.528461c-0.069208-0.050926-0.046062-0.159615,0.037844-0.178143l0.869871-0.191063c0.034416-0.00761,0.062311-0.03273,0.073414-0.066154l0.28101-0.845123c0.027117-0.081566,0.137711-0.093121,0.181202-0.019051l0.450563,0.7682c0.017838,0.030506,0.050312,0.049255,0.085564,0.0494l0.89065,0.006153c0.085892,0.000629,0.131098,0.102131,0.074017,0.166401l-0.591391,0.66592c-0.023399,0.026329-0.031204,0.063046-0.020586,0.096657l0.269472,0.848862c0.025991,0.081978-0.056648,0.156319-0.135357,0.121845l-0.816118-0.35664c-0.032261-0.014122-0.069551-0.010132-0.098246,0.010365L20.942863,48.04813z"
|
||||
/>
|
||||
</g>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M40.157589,13.443707c-0.003407,0.0351,0.011784,0.069389,0.040146,0.090266l0.716919,0.52846c0.069206,0.050927,0.046146,0.159666-0.037846,0.178145l-0.869869,0.191061c-0.03442,0.00761-0.062313,0.032728-0.073414,0.066156l-0.28101,0.84512c-0.027119,0.081569-0.137627,0.093169-0.181118,0.0191l-0.450649-0.768251c-0.017754-0.030456-0.050228-0.049205-0.085564-0.0494l-0.890564-0.006099c-0.085892-0.00063-0.131184-0.102181-0.0741-0.166451l0.591389-0.665921c0.023399-0.026329,0.031204-0.063046,0.020588-0.096657l-0.269474-0.848862c-0.025906-0.081929,0.056648-0.156319,0.135357-0.121846l0.81612,0.35664c0.032261,0.014123,0.069637,0.010183,0.098331-0.010316l0.724072-0.518534c0.069794-0.050083,0.166096,0.005517,0.157703,0.09105L40.157589,13.443707z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M46.975246,21.032442c-0.020496,0.028694-0.024487,0.065985-0.010365,0.098246l0.35664,0.816118c0.034473,0.078709-0.039867,0.161348-0.121845,0.135357l-0.848862-0.269472c-0.033611-0.010618-0.070328-0.002813-0.096657,0.020586l-0.66592,0.591391c-0.06427,0.057081-0.165771,0.011875-0.166405-0.074017l-0.006149-0.89065c-0.000145-0.035252-0.018894-0.067726-0.0494-0.085564l-0.7682-0.450563c-0.07407-0.043491-0.062519-0.154085,0.019051-0.181202l0.845123-0.28101c0.033424-0.011103,0.058544-0.038998,0.066154-0.073414l0.191063-0.869871c0.018528-0.083906,0.127216-0.107052,0.178143-0.037844l0.528461,0.716919c0.020878,0.02836,0.055214,0.043636,0.090313,0.040232l0.886333-0.087027c0.085484-0.008478,0.141087,0.087826,0.091053,0.157703L46.975246,21.032442z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M49.085144,31.013308c-0.032097,0.014601-0.054199,0.044901-0.058098,0.079901l-0.099201,0.885099c-0.009499,0.085398-0.1152,0.119799-0.173199,0.056299l-0.600399-0.657801c-0.0238-0.026001-0.059502-0.0376-0.094002-0.0305l-0.872398,0.179199c-0.084202,0.0173-0.149502-0.072601-0.107101-0.147301l0.439999-0.774401c0.017502-0.030602,0.017502-0.0681,0-0.098801l-0.439999-0.7743c-0.0424-0.074699,0.0229-0.1647,0.107101-0.1474l0.872398,0.179199c0.0345,0.007099,0.070202-0.004501,0.094002-0.0305l0.600399-0.657801c0.057999-0.0634,0.1637-0.0291,0.173199,0.056299l0.099201,0.885099c0.003899,0.035,0.026001,0.065399,0.058098,0.08l0.8111,0.3678c0.07827,0.0354,0.07827,0.146601,0,0.1821L49.085144,31.013308z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M45.92194,40.711941c-0.035099-0.003407-0.069389,0.011784-0.090267,0.040146l-0.528461,0.716919c-0.050926,0.069206-0.159664,0.046146-0.178143-0.037846l-0.191063-0.869869c-0.00761-0.03442-0.032726-0.062313-0.066154-0.073414l-0.845119-0.28101c-0.08157-0.027119-0.09317-0.137627-0.019104-0.181118l0.768253-0.450649c0.030457-0.017754,0.049206-0.050228,0.0494-0.085564l0.0061-0.890564c0.000629-0.085892,0.10218-0.131184,0.166451-0.0741l0.66592,0.591389c0.026329,0.023399,0.063046,0.031204,0.096657,0.020588l0.848862-0.269474c0.081928-0.025906,0.156319,0.056648,0.121845,0.135357l-0.35664,0.81612c-0.014122,0.032261-0.010181,0.069637,0.010315,0.098331l0.518536,0.724072c0.050083,0.069794-0.005516,0.166096-0.091049,0.157707L45.92194,40.711941z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M38.333206,47.529598c-0.028694-0.020496-0.065987-0.024487-0.098248-0.010365l-0.81612,0.35664c-0.078705,0.034473-0.161346-0.039867-0.135353-0.121845l0.26947-0.848862c0.010616-0.033611,0.002811-0.070328-0.020584-0.096657l-0.591393-0.66592c-0.057083-0.06427-0.011875-0.165771,0.074017-0.166401l0.890652-0.006153c0.035252-0.000145,0.067726-0.018894,0.085564-0.0494l0.450562-0.7682c0.043491-0.07407,0.154083-0.062515,0.181202,0.019051l0.28101,0.845123c0.011101,0.033424,0.038998,0.058544,0.073414,0.066154l0.869873,0.191063c0.083904,0.018528,0.107052,0.127216,0.037842,0.178143l-0.716919,0.528461c-0.028358,0.020878-0.043636,0.055214-0.04023,0.090313l0.087025,0.886333c0.008476,0.085484-0.087826,0.141087-0.157703,0.091053L38.333206,47.529598z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M17.150499,33.5v-7.1H19.3505c1.0933,0,1.9333,0.309999,2.52,0.93c0.5933,0.6133,0.889999,1.49,0.889999,2.629999c0,1.133301-0.289999,2.006701-0.870001,2.620003c-0.58,0.613297-1.406698,0.919998-2.48,0.919998H17.150499z M18.0105,32.66h1.34c0.8333,0,1.459999-0.223301,1.879999-0.67c0.42-0.4533,0.630001-1.129999,0.630001-2.030001c0-0.9133-0.210001-1.5933-0.630001-2.039999c-0.42-0.4533-1.0467-0.68-1.879999-0.68h-1.34V32.66z M26.902901,33.66c-0.6733,0-1.253302-0.146698-1.74-0.439999c-0.480001-0.300003-0.85-0.7267-1.110001-1.280001s-0.389999-1.213301-0.389999-1.980001c0-0.766699,0.129999-1.426699,0.389999-1.98c0.26-0.559999,0.629999-0.99,1.110001-1.289999c0.486698-0.300001,1.0667-0.450001,1.74-0.450001c0.679998,0,1.26,0.15,1.74,0.450001c0.4867,0.299999,0.859999,0.73,1.119999,1.289999c0.26,0.553301,0.390001,1.213301,0.390001,1.98c0,0.766701-0.130001,1.426701-0.390001,1.980001s-0.633299,0.979998-1.119999,1.280001C28.162901,33.513302,27.582899,33.66,26.902901,33.66z M26.902901,32.82c0.493299,0,0.9133-0.1133,1.26-0.34c0.353298-0.2267,0.623299-0.553299,0.809999-0.98c0.186699-0.426701,0.279999-0.940001,0.279999-1.540001c0-0.599998-0.0933-1.113298-0.279999-1.539999c-0.186701-0.4333-0.456701-0.7633-0.809999-0.99c-0.346701-0.233301-0.766701-0.35-1.26-0.35c-0.4867,0-0.9067,0.116699-1.26,0.35c-0.346701,0.2267-0.6133,0.5567-0.800001,0.99c-0.186699,0.426701-0.279999,0.940001-0.279999,1.539999c0,0.6,0.0933,1.1133,0.279999,1.540001c0.186701,0.426701,0.4533,0.7533,0.800001,0.98C25.996201,32.706699,26.416201,32.82,26.902901,32.82z M31.3888,33.5v-7.1H34.0788c0.5,0,0.93,0.0867,1.290001,0.26s0.6366,0.4233,0.829998,0.75c0.200001,0.32,0.299999,0.700001,0.299999,1.139999c0,0.320002-0.076698,0.606701-0.23,0.860001c-0.146698,0.2467-0.3367,0.4433-0.57,0.59c-0.233398,0.1467-0.4767,0.2267-0.73,0.24l-0.060001-0.09c0.4333,0,0.7733,0.1,1.02,0.300001C36.182098,30.65,36.3288,30.969999,36.368801,31.41l0.200001,2.09h-0.870003l-0.180099-2c-0.0266-0.293301-0.133301-0.51-0.319901-0.65c-0.18-0.140001-0.4767-0.210001-0.889999-0.210001h-2.060001V33.5H31.3888z M32.248798,29.799999h1.940002c0.4333,0,0.7766-0.109999,1.029999-0.33c0.2533-0.219999,0.380001-0.533298,0.380001-0.939999c0-0.413301-0.130001-0.730001-0.389999-0.950001c-0.260002-0.2267-0.6367-0.34-1.130001-0.34h-1.830002V29.799999z M37.289799,33.5l2.560001-7.1h1.16l2.560001,7.1h-0.940002L41.9198,31.48h-2.98l-0.709999,2.02H37.289799z M39.229801,30.639999h2.399998l-1.200001-3.49L39.229801,30.639999z"
|
||||
/>
|
||||
</svg>
|
||||
);
|
||||
return (
|
||||
<svg
|
||||
className={className}
|
||||
version="1.1"
|
||||
id="Layer_1"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlnsXlink="http://www.w3.org/1999/xlink"
|
||||
x="0px"
|
||||
y="0px"
|
||||
viewBox="0 0 60 60"
|
||||
enable-background="new 0 0 60 60"
|
||||
xmlSpace="preserve"
|
||||
>
|
||||
<path
|
||||
className="fill-none stroke-txt-primary"
|
||||
d="M53.749001,16.288099v27.4228L30,57.422897L6.25098,43.710899v-27.4228L30,2.576169L53.749001,16.288099z"
|
||||
/>
|
||||
<g>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M29.909,9.4694c0.0355-0.07827,0.1467-0.07827,0.1821,0l0.3678,0.8111c0.014601,0.0321,0.045,0.0542,0.08,0.0581L31.424,10.4378c0.0854,0.0095,0.119699,0.1152,0.056299,0.1732l-0.657801,0.6004c-0.025999,0.0238-0.0376,0.0595-0.0305,0.094l0.179199,0.8724c0.0173,0.0842-0.072701,0.1495-0.1474,0.1071l-0.7743-0.44c-0.030701-0.0175-0.068199-0.0175-0.098801,0l-0.774401,0.44c-0.074699,0.0424-0.1646-0.0229-0.147301-0.1071l0.179199-0.8724c0.007099-0.0345-0.004499-0.0702-0.0305-0.094l-0.657801-0.6004c-0.063499-0.058-0.0291-0.1637,0.056299-0.1732l0.885099-0.0992c0.035-0.0039,0.0653-0.026,0.079901-0.0581L29.909,9.4694z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M29.909,47.680504c0.0355-0.07827,0.1467-0.07827,0.1821,0l0.3678,0.8111c0.014601,0.032101,0.045,0.054203,0.08,0.058102L31.424,48.648907c0.0854,0.009499,0.119699,0.1152,0.056299,0.173199l-0.657801,0.600399c-0.025999,0.0238-0.0376,0.059502-0.0305,0.094002l0.179199,0.872398c0.0173,0.084202-0.072701,0.149502-0.1474,0.107101l-0.7743-0.440002c-0.030701-0.017498-0.068199-0.017498-0.098801,0l-0.774401,0.440002c-0.074699,0.0424-0.1646-0.0229-0.147301-0.107101l0.179199-0.872398c0.007099-0.0345-0.004499-0.070202-0.0305-0.094002l-0.657801-0.600399c-0.063499-0.057999-0.0291-0.1637,0.056299-0.173199l0.885099-0.099201c0.035-0.003899,0.0653-0.026001,0.079901-0.058102L29.909,47.680504z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M19.755541,12.55737c-0.008392-0.085533,0.087912-0.141133,0.157703-0.09105l0.724073,0.518534c0.028694,0.020499,0.066072,0.024439,0.098331,0.010316l0.81612-0.35664c0.078707-0.034472,0.161263,0.039917,0.135355,0.121846l-0.269472,0.848862c-0.010614,0.03361-0.002811,0.070328,0.020586,0.096657l0.591393,0.665921c0.057081,0.064269,0.011789,0.16582-0.074102,0.166451l-0.890564,0.006099c-0.035337,0.000196-0.067812,0.018945-0.085564,0.0494l-0.450651,0.768251c-0.043491,0.074069-0.153997,0.062469-0.181116-0.0191l-0.281008-0.84512c-0.011103-0.033428-0.038998-0.058546-0.073414-0.066156l-0.869873-0.191061c-0.083992-0.018479-0.107052-0.127218-0.037844-0.178145l0.716919-0.528461c0.02836-0.020877,0.043552-0.055166,0.040146-0.090266L19.755541,12.55737z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M12.506371,20.308361c-0.050034-0.069878,0.005567-0.166182,0.09105-0.157703l0.886333,0.087027c0.0351,0.003405,0.069439-0.011871,0.090316-0.040232l0.528461-0.716919c0.050927-0.069208,0.159616-0.046062,0.178145,0.037844l0.191061,0.869871c0.007611,0.034416,0.032728,0.062311,0.066156,0.073414l0.84512,0.28101c0.081569,0.027117,0.09312,0.137711,0.019051,0.181202l-0.768201,0.450563c-0.030505,0.017838-0.049254,0.050312-0.0494,0.085564l-0.006149,0.89065c-0.00063,0.085892-0.102132,0.131098-0.166401,0.074017l-0.665921-0.591391c-0.026329-0.023399-0.063046-0.031204-0.096657-0.020586l-0.848862,0.269472c-0.081979,0.025991-0.156319-0.056648-0.121846-0.135357l0.35664-0.816118c0.014123-0.032261,0.010134-0.069551-0.010365-0.098246L12.506371,20.308361z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M10.103903,30.6455c-0.07827-0.0355-0.07827-0.1467,0-0.1821l0.8111-0.3678c0.0321-0.014601,0.0542-0.045,0.0581-0.08l0.0992-0.885099c0.0095-0.0854,0.1152-0.119699,0.1732-0.056299l0.6004,0.657801c0.0238,0.025999,0.0595,0.0376,0.094,0.0305l0.8724-0.179199c0.0842-0.0173,0.1495,0.072701,0.1071,0.1474l-0.44,0.7743c-0.0175,0.030701-0.0175,0.068199,0,0.098801l0.44,0.774401c0.0424,0.074699-0.0229,0.1646-0.1071,0.147301l-0.8724-0.179199c-0.0345-0.007099-0.0702,0.004499-0.094,0.0305l-0.6004,0.657801c-0.058,0.063499-0.1637,0.029099-0.1732-0.056299l-0.0992-0.885099c-0.0039-0.035-0.026-0.0653-0.0581-0.079901L10.103903,30.6455z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M13.191873,40.798962c-0.085533,0.008389-0.141133-0.087914-0.09105-0.157707l0.518534-0.724072c0.020499-0.028694,0.024439-0.066071,0.010316-0.098331l-0.35664-0.81612c-0.034472-0.078709,0.039917-0.161263,0.121846-0.135357l0.848862,0.269474c0.03361,0.010616,0.070328,0.002811,0.096657-0.020588l0.665921-0.591389c0.064269-0.057083,0.16582-0.011791,0.166451,0.0741l0.006099,0.890564c0.000196,0.035336,0.018945,0.06781,0.0494,0.085564l0.768251,0.450649c0.074071,0.043491,0.062469,0.153999-0.0191,0.181118l-0.84512,0.28101c-0.033428,0.011101-0.058546,0.038994-0.066156,0.073414l-0.191061,0.869869c-0.018479,0.083992-0.127218,0.107052-0.178145,0.037846l-0.528461-0.716919c-0.020877-0.028362-0.055166-0.043552-0.090266-0.040146L13.191873,40.798962z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M20.942863,48.04813c-0.069878,0.050034-0.166182-0.005569-0.157703-0.091053l0.087027-0.886333c0.003405-0.035099-0.011871-0.069435-0.040232-0.090313l-0.716919-0.528461c-0.069208-0.050926-0.046062-0.159615,0.037844-0.178143l0.869871-0.191063c0.034416-0.00761,0.062311-0.03273,0.073414-0.066154l0.28101-0.845123c0.027117-0.081566,0.137711-0.093121,0.181202-0.019051l0.450563,0.7682c0.017838,0.030506,0.050312,0.049255,0.085564,0.0494l0.89065,0.006153c0.085892,0.000629,0.131098,0.102131,0.074017,0.166401l-0.591391,0.66592c-0.023399,0.026329-0.031204,0.063046-0.020586,0.096657l0.269472,0.848862c0.025991,0.081978-0.056648,0.156319-0.135357,0.121845l-0.816118-0.35664c-0.032261-0.014122-0.069551-0.010132-0.098246,0.010365L20.942863,48.04813z"
|
||||
/>
|
||||
</g>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M40.157589,13.443707c-0.003407,0.0351,0.011784,0.069389,0.040146,0.090266l0.716919,0.52846c0.069206,0.050927,0.046146,0.159666-0.037846,0.178145l-0.869869,0.191061c-0.03442,0.00761-0.062313,0.032728-0.073414,0.066156l-0.28101,0.84512c-0.027119,0.081569-0.137627,0.093169-0.181118,0.0191l-0.450649-0.768251c-0.017754-0.030456-0.050228-0.049205-0.085564-0.0494l-0.890564-0.006099c-0.085892-0.00063-0.131184-0.102181-0.0741-0.166451l0.591389-0.665921c0.023399-0.026329,0.031204-0.063046,0.020588-0.096657l-0.269474-0.848862c-0.025906-0.081929,0.056648-0.156319,0.135357-0.121846l0.81612,0.35664c0.032261,0.014123,0.069637,0.010183,0.098331-0.010316l0.724072-0.518534c0.069794-0.050083,0.166096,0.005517,0.157703,0.09105L40.157589,13.443707z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M46.975246,21.032442c-0.020496,0.028694-0.024487,0.065985-0.010365,0.098246l0.35664,0.816118c0.034473,0.078709-0.039867,0.161348-0.121845,0.135357l-0.848862-0.269472c-0.033611-0.010618-0.070328-0.002813-0.096657,0.020586l-0.66592,0.591391c-0.06427,0.057081-0.165771,0.011875-0.166405-0.074017l-0.006149-0.89065c-0.000145-0.035252-0.018894-0.067726-0.0494-0.085564l-0.7682-0.450563c-0.07407-0.043491-0.062519-0.154085,0.019051-0.181202l0.845123-0.28101c0.033424-0.011103,0.058544-0.038998,0.066154-0.073414l0.191063-0.869871c0.018528-0.083906,0.127216-0.107052,0.178143-0.037844l0.528461,0.716919c0.020878,0.02836,0.055214,0.043636,0.090313,0.040232l0.886333-0.087027c0.085484-0.008478,0.141087,0.087826,0.091053,0.157703L46.975246,21.032442z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M49.085144,31.013308c-0.032097,0.014601-0.054199,0.044901-0.058098,0.079901l-0.099201,0.885099c-0.009499,0.085398-0.1152,0.119799-0.173199,0.056299l-0.600399-0.657801c-0.0238-0.026001-0.059502-0.0376-0.094002-0.0305l-0.872398,0.179199c-0.084202,0.0173-0.149502-0.072601-0.107101-0.147301l0.439999-0.774401c0.017502-0.030602,0.017502-0.0681,0-0.098801l-0.439999-0.7743c-0.0424-0.074699,0.0229-0.1647,0.107101-0.1474l0.872398,0.179199c0.0345,0.007099,0.070202-0.004501,0.094002-0.0305l0.600399-0.657801c0.057999-0.0634,0.1637-0.0291,0.173199,0.056299l0.099201,0.885099c0.003899,0.035,0.026001,0.065399,0.058098,0.08l0.8111,0.3678c0.07827,0.0354,0.07827,0.146601,0,0.1821L49.085144,31.013308z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M45.92194,40.711941c-0.035099-0.003407-0.069389,0.011784-0.090267,0.040146l-0.528461,0.716919c-0.050926,0.069206-0.159664,0.046146-0.178143-0.037846l-0.191063-0.869869c-0.00761-0.03442-0.032726-0.062313-0.066154-0.073414l-0.845119-0.28101c-0.08157-0.027119-0.09317-0.137627-0.019104-0.181118l0.768253-0.450649c0.030457-0.017754,0.049206-0.050228,0.0494-0.085564l0.0061-0.890564c0.000629-0.085892,0.10218-0.131184,0.166451-0.0741l0.66592,0.591389c0.026329,0.023399,0.063046,0.031204,0.096657,0.020588l0.848862-0.269474c0.081928-0.025906,0.156319,0.056648,0.121845,0.135357l-0.35664,0.81612c-0.014122,0.032261-0.010181,0.069637,0.010315,0.098331l0.518536,0.724072c0.050083,0.069794-0.005516,0.166096-0.091049,0.157707L45.92194,40.711941z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M38.333206,47.529598c-0.028694-0.020496-0.065987-0.024487-0.098248-0.010365l-0.81612,0.35664c-0.078705,0.034473-0.161346-0.039867-0.135353-0.121845l0.26947-0.848862c0.010616-0.033611,0.002811-0.070328-0.020584-0.096657l-0.591393-0.66592c-0.057083-0.06427-0.011875-0.165771,0.074017-0.166401l0.890652-0.006153c0.035252-0.000145,0.067726-0.018894,0.085564-0.0494l0.450562-0.7682c0.043491-0.07407,0.154083-0.062515,0.181202,0.019051l0.28101,0.845123c0.011101,0.033424,0.038998,0.058544,0.073414,0.066154l0.869873,0.191063c0.083904,0.018528,0.107052,0.127216,0.037842,0.178143l-0.716919,0.528461c-0.028358,0.020878-0.043636,0.055214-0.04023,0.090313l0.087025,0.886333c0.008476,0.085484-0.087826,0.141087-0.157703,0.091053L38.333206,47.529598z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M17.150499,33.5v-7.1H19.3505c1.0933,0,1.9333,0.309999,2.52,0.93c0.5933,0.6133,0.889999,1.49,0.889999,2.629999c0,1.133301-0.289999,2.006701-0.870001,2.620003c-0.58,0.613297-1.406698,0.919998-2.48,0.919998H17.150499z M18.0105,32.66h1.34c0.8333,0,1.459999-0.223301,1.879999-0.67c0.42-0.4533,0.630001-1.129999,0.630001-2.030001c0-0.9133-0.210001-1.5933-0.630001-2.039999c-0.42-0.4533-1.0467-0.68-1.879999-0.68h-1.34V32.66z M26.902901,33.66c-0.6733,0-1.253302-0.146698-1.74-0.439999c-0.480001-0.300003-0.85-0.7267-1.110001-1.280001s-0.389999-1.213301-0.389999-1.980001c0-0.766699,0.129999-1.426699,0.389999-1.98c0.26-0.559999,0.629999-0.99,1.110001-1.289999c0.486698-0.300001,1.0667-0.450001,1.74-0.450001c0.679998,0,1.26,0.15,1.74,0.450001c0.4867,0.299999,0.859999,0.73,1.119999,1.289999c0.26,0.553301,0.390001,1.213301,0.390001,1.98c0,0.766701-0.130001,1.426701-0.390001,1.980001s-0.633299,0.979998-1.119999,1.280001C28.162901,33.513302,27.582899,33.66,26.902901,33.66z M26.902901,32.82c0.493299,0,0.9133-0.1133,1.26-0.34c0.353298-0.2267,0.623299-0.553299,0.809999-0.98c0.186699-0.426701,0.279999-0.940001,0.279999-1.540001c0-0.599998-0.0933-1.113298-0.279999-1.539999c-0.186701-0.4333-0.456701-0.7633-0.809999-0.99c-0.346701-0.233301-0.766701-0.35-1.26-0.35c-0.4867,0-0.9067,0.116699-1.26,0.35c-0.346701,0.2267-0.6133,0.5567-0.800001,0.99c-0.186699,0.426701-0.279999,0.940001-0.279999,1.539999c0,0.6,0.0933,1.1133,0.279999,1.540001c0.186701,0.426701,0.4533,0.7533,0.800001,0.98C25.996201,32.706699,26.416201,32.82,26.902901,32.82z M31.3888,33.5v-7.1H34.0788c0.5,0,0.93,0.0867,1.290001,0.26s0.6366,0.4233,0.829998,0.75c0.200001,0.32,0.299999,0.700001,0.299999,1.139999c0,0.320002-0.076698,0.606701-0.23,0.860001c-0.146698,0.2467-0.3367,0.4433-0.57,0.59c-0.233398,0.1467-0.4767,0.2267-0.73,0.24l-0.060001-0.09c0.4333,0,0.7733,0.1,1.02,0.300001C36.182098,30.65,36.3288,30.969999,36.368801,31.41l0.200001,2.09h-0.870003l-0.180099-2c-0.0266-0.293301-0.133301-0.51-0.319901-0.65c-0.18-0.140001-0.4767-0.210001-0.889999-0.210001h-2.060001V33.5H31.3888z M32.248798,29.799999h1.940002c0.4333,0,0.7766-0.109999,1.029999-0.33c0.2533-0.219999,0.380001-0.533298,0.380001-0.939999c0-0.413301-0.130001-0.730001-0.389999-0.950001c-0.260002-0.2267-0.6367-0.34-1.130001-0.34h-1.830002V29.799999z M37.289799,33.5l2.560001-7.1h1.16l2.560001,7.1h-0.940002L41.9198,31.48h-2.98l-0.709999,2.02H37.289799z M39.229801,30.639999h2.399998l-1.200001-3.49L39.229801,30.639999z"
|
||||
/>
|
||||
</svg>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1,85 +1,85 @@
|
||||
export function FERPA() {
|
||||
return (
|
||||
<svg
|
||||
version="1.1"
|
||||
id="Layer_1"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlnsXlink="http://www.w3.org/1999/xlink"
|
||||
x="0px"
|
||||
y="0px"
|
||||
viewBox="0 0 60 60"
|
||||
enable-background="new 0 0 60 60"
|
||||
xmlSpace="preserve"
|
||||
>
|
||||
<rect
|
||||
x="10.500093"
|
||||
y="10.500001"
|
||||
transform="matrix(0.707107 -0.707107 0.707107 0.707107 -12.42638 30.000067)"
|
||||
className="fill-none stroke-txt-primary"
|
||||
width="39"
|
||||
height="39"
|
||||
/>
|
||||
<rect
|
||||
x="14.396727"
|
||||
y="14.3968"
|
||||
transform="matrix(0.707107 -0.707107 0.707107 0.707107 -12.426428 29.999947)"
|
||||
className="fill-none stroke-txt-primary"
|
||||
width="31.206398"
|
||||
height="31.206398"
|
||||
/>
|
||||
<path
|
||||
className="fill-none stroke-txt-primary"
|
||||
stroke-linejoin="round"
|
||||
d="M39.9837,31.1087c-2.278999,0.845301-4.780701-0.233-4.780701-0.233s1.193302-2.4489,3.472301-3.2943c2.278999-0.845301,4.780598,0.233,4.780598,0.233S42.262699,30.2633,39.9837,31.1087z"
|
||||
/>
|
||||
<path
|
||||
className="fill-none stroke-txt-primary"
|
||||
stroke-linejoin="round"
|
||||
d="M36.877399,38.512798c-2.544899,0.164001-4.714298-1.354-4.714298-1.354s1.9566-1.783897,4.501499-1.947998c2.5448-0.164001,4.714298,1.354,4.714298,1.354S39.422298,38.348701,36.877399,38.512798z"
|
||||
/>
|
||||
<path
|
||||
className="fill-none stroke-txt-primary"
|
||||
stroke-linejoin="round"
|
||||
d="M33.2052,28.852501C32.822399,31.2246,30.2953,32.865898,30.2953,32.865898s-1.906399-2.204597-1.5236-4.576698s2.909901-4.013399,2.909901-4.013399S33.588001,26.4804,33.2052,28.852501z"
|
||||
/>
|
||||
<path
|
||||
className="fill-none stroke-txt-primary"
|
||||
stroke-linejoin="round"
|
||||
d="M24.9828,35.002602c2.383701,0.302898,4.672001-1.657703,4.672001-1.657703s-1.5763-2.451498-3.9599-2.754299c-2.383701-0.302898-4.672001,1.6577-4.672001,1.6577S22.599199,34.699799,24.9828,35.002602z"
|
||||
/>
|
||||
<path
|
||||
className="fill-none stroke-txt-primary"
|
||||
stroke-linejoin="round"
|
||||
d="M25.849501,41.308998c1.8536,0.048302,3.400999-1.636497,3.400999-1.636497s-1.4578-1.762802-3.3113-1.811001c-1.8536-0.048199-3.400999,1.636501-3.400999,1.636501S23.995899,41.260799,25.849501,41.308998z"
|
||||
/>
|
||||
<path
|
||||
className="fill-none stroke-txt-primary"
|
||||
stroke-linejoin="round"
|
||||
d="M34.430401,23.423201c0.451698,2.0844,2.318699,3.4489,2.318699,3.4489s1.134701-2.015001,0.682999-4.099401c-0.451698-2.0844-2.318699-3.4489-2.318699-3.4489S33.978699,21.3388,34.430401,23.423201z"
|
||||
/>
|
||||
<path
|
||||
className="fill-none stroke-txt-primary"
|
||||
stroke-linejoin="round"
|
||||
d="M28.4242,22.279499c-0.067101,2.361101-2.3174,4.212702-2.3174,4.212702s-2.141399-1.976601-2.0742-4.337702S26.3501,17.9419,26.3501,17.9419S28.4914,19.9184,28.4242,22.279499z"
|
||||
/>
|
||||
<path
|
||||
className="fill-none stroke-txt-primary"
|
||||
stroke-linejoin="round"
|
||||
d="M21.2068,29.0975c2.361099,0.0672,4.3377-2.0742,4.3377-2.0742s-1.851601-2.2502-4.2127-2.3174s-4.337601,2.0741-4.337601,2.0741S18.845699,29.0303,21.2068,29.0975z"
|
||||
/>
|
||||
<path
|
||||
className="fill-none stroke-txt-primary"
|
||||
stroke-linecap="round"
|
||||
d="M24.527901,45.939899c1.3981-0.696499,4.033499-3.188499,5.056-5.462601 M20.4883,20.946501c0,0,9.6497,7.2514,9.907299,15.638998c0.0434,1.4137-0.288399,2.727802-0.811699,3.8918 M29.5839,40.477299c6.179401-6.8633,6.518799-16.037098,11.2883-18.222399"
|
||||
/>
|
||||
<rect
|
||||
x="10.500093"
|
||||
y="10.500001"
|
||||
transform="matrix(0.707107 -0.707107 0.707107 0.707107 -12.42638 30.000067)"
|
||||
className="fill-none stroke-txt-primary"
|
||||
width="39"
|
||||
height="39"
|
||||
/>
|
||||
</svg>
|
||||
);
|
||||
return (
|
||||
<svg
|
||||
version="1.1"
|
||||
id="Layer_1"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlnsXlink="http://www.w3.org/1999/xlink"
|
||||
x="0px"
|
||||
y="0px"
|
||||
viewBox="0 0 60 60"
|
||||
enable-background="new 0 0 60 60"
|
||||
xmlSpace="preserve"
|
||||
>
|
||||
<rect
|
||||
x="10.500093"
|
||||
y="10.500001"
|
||||
transform="matrix(0.707107 -0.707107 0.707107 0.707107 -12.42638 30.000067)"
|
||||
className="fill-none stroke-txt-primary"
|
||||
width="39"
|
||||
height="39"
|
||||
/>
|
||||
<rect
|
||||
x="14.396727"
|
||||
y="14.3968"
|
||||
transform="matrix(0.707107 -0.707107 0.707107 0.707107 -12.426428 29.999947)"
|
||||
className="fill-none stroke-txt-primary"
|
||||
width="31.206398"
|
||||
height="31.206398"
|
||||
/>
|
||||
<path
|
||||
className="fill-none stroke-txt-primary"
|
||||
stroke-linejoin="round"
|
||||
d="M39.9837,31.1087c-2.278999,0.845301-4.780701-0.233-4.780701-0.233s1.193302-2.4489,3.472301-3.2943c2.278999-0.845301,4.780598,0.233,4.780598,0.233S42.262699,30.2633,39.9837,31.1087z"
|
||||
/>
|
||||
<path
|
||||
className="fill-none stroke-txt-primary"
|
||||
stroke-linejoin="round"
|
||||
d="M36.877399,38.512798c-2.544899,0.164001-4.714298-1.354-4.714298-1.354s1.9566-1.783897,4.501499-1.947998c2.5448-0.164001,4.714298,1.354,4.714298,1.354S39.422298,38.348701,36.877399,38.512798z"
|
||||
/>
|
||||
<path
|
||||
className="fill-none stroke-txt-primary"
|
||||
stroke-linejoin="round"
|
||||
d="M33.2052,28.852501C32.822399,31.2246,30.2953,32.865898,30.2953,32.865898s-1.906399-2.204597-1.5236-4.576698s2.909901-4.013399,2.909901-4.013399S33.588001,26.4804,33.2052,28.852501z"
|
||||
/>
|
||||
<path
|
||||
className="fill-none stroke-txt-primary"
|
||||
stroke-linejoin="round"
|
||||
d="M24.9828,35.002602c2.383701,0.302898,4.672001-1.657703,4.672001-1.657703s-1.5763-2.451498-3.9599-2.754299c-2.383701-0.302898-4.672001,1.6577-4.672001,1.6577S22.599199,34.699799,24.9828,35.002602z"
|
||||
/>
|
||||
<path
|
||||
className="fill-none stroke-txt-primary"
|
||||
stroke-linejoin="round"
|
||||
d="M25.849501,41.308998c1.8536,0.048302,3.400999-1.636497,3.400999-1.636497s-1.4578-1.762802-3.3113-1.811001c-1.8536-0.048199-3.400999,1.636501-3.400999,1.636501S23.995899,41.260799,25.849501,41.308998z"
|
||||
/>
|
||||
<path
|
||||
className="fill-none stroke-txt-primary"
|
||||
stroke-linejoin="round"
|
||||
d="M34.430401,23.423201c0.451698,2.0844,2.318699,3.4489,2.318699,3.4489s1.134701-2.015001,0.682999-4.099401c-0.451698-2.0844-2.318699-3.4489-2.318699-3.4489S33.978699,21.3388,34.430401,23.423201z"
|
||||
/>
|
||||
<path
|
||||
className="fill-none stroke-txt-primary"
|
||||
stroke-linejoin="round"
|
||||
d="M28.4242,22.279499c-0.067101,2.361101-2.3174,4.212702-2.3174,4.212702s-2.141399-1.976601-2.0742-4.337702S26.3501,17.9419,26.3501,17.9419S28.4914,19.9184,28.4242,22.279499z"
|
||||
/>
|
||||
<path
|
||||
className="fill-none stroke-txt-primary"
|
||||
stroke-linejoin="round"
|
||||
d="M21.2068,29.0975c2.361099,0.0672,4.3377-2.0742,4.3377-2.0742s-1.851601-2.2502-4.2127-2.3174s-4.337601,2.0741-4.337601,2.0741S18.845699,29.0303,21.2068,29.0975z"
|
||||
/>
|
||||
<path
|
||||
className="fill-none stroke-txt-primary"
|
||||
stroke-linecap="round"
|
||||
d="M24.527901,45.939899c1.3981-0.696499,4.033499-3.188499,5.056-5.462601 M20.4883,20.946501c0,0,9.6497,7.2514,9.907299,15.638998c0.0434,1.4137-0.288399,2.727802-0.811699,3.8918 M29.5839,40.477299c6.179401-6.8633,6.518799-16.037098,11.2883-18.222399"
|
||||
/>
|
||||
<rect
|
||||
x="10.500093"
|
||||
y="10.500001"
|
||||
transform="matrix(0.707107 -0.707107 0.707107 0.707107 -12.42638 30.000067)"
|
||||
className="fill-none stroke-txt-primary"
|
||||
width="39"
|
||||
height="39"
|
||||
/>
|
||||
</svg>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1,77 +1,77 @@
|
||||
export function GDPR(props: { className?: string }) {
|
||||
const { className } = props;
|
||||
const { className } = props;
|
||||
|
||||
return (
|
||||
<svg
|
||||
className={className}
|
||||
version="1.1"
|
||||
id="Layer_1"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlnsXlink="http://www.w3.org/1999/xlink"
|
||||
x="0px"
|
||||
y="0px"
|
||||
viewBox="0 0 60 60"
|
||||
enable-background="new 0 0 60 60"
|
||||
xmlSpace="preserve"
|
||||
>
|
||||
<path
|
||||
className="fill-none stroke-txt-primary"
|
||||
d="M53.749001,16.288099v27.4228L30,57.422897L6.25098,43.710899v-27.4228L30,2.576169L53.749001,16.288099z"
|
||||
/>
|
||||
<g>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M29.909,9.4694c0.0355-0.07827,0.1467-0.07827,0.1821,0l0.3678,0.8111c0.014601,0.0321,0.045,0.0542,0.08,0.0581L31.424,10.4378c0.0854,0.0095,0.119699,0.1152,0.056299,0.1732l-0.657801,0.6004c-0.025999,0.0238-0.0376,0.0595-0.0305,0.094l0.179199,0.8724c0.0173,0.0842-0.072701,0.1495-0.1474,0.1071l-0.7743-0.44c-0.030701-0.0175-0.068199-0.0175-0.098801,0l-0.774401,0.44c-0.074699,0.0424-0.1646-0.0229-0.147301-0.1071l0.179199-0.8724c0.007099-0.0345-0.004499-0.0702-0.0305-0.094l-0.657801-0.6004c-0.063499-0.058-0.0291-0.1637,0.056299-0.1732l0.885099-0.0992c0.035-0.0039,0.0653-0.026,0.079901-0.0581L29.909,9.4694z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M29.909,47.680504c0.0355-0.07827,0.1467-0.07827,0.1821,0l0.3678,0.8111c0.014601,0.032101,0.045,0.054203,0.08,0.058102L31.424,48.648907c0.0854,0.009499,0.119699,0.1152,0.056299,0.173199l-0.657801,0.600399c-0.025999,0.0238-0.0376,0.059502-0.0305,0.094002l0.179199,0.872398c0.0173,0.084202-0.072701,0.149502-0.1474,0.107101l-0.7743-0.440002c-0.030701-0.017498-0.068199-0.017498-0.098801,0l-0.774401,0.440002c-0.074699,0.0424-0.1646-0.0229-0.147301-0.107101l0.179199-0.872398c0.007099-0.0345-0.004499-0.070202-0.0305-0.094002l-0.657801-0.600399c-0.063499-0.057999-0.0291-0.1637,0.056299-0.173199l0.885099-0.099201c0.035-0.003899,0.0653-0.026001,0.079901-0.058102L29.909,47.680504z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M19.755541,12.55737c-0.008392-0.085533,0.087912-0.141133,0.157703-0.09105l0.724073,0.518534c0.028694,0.020499,0.066072,0.024439,0.098331,0.010316l0.81612-0.35664c0.078707-0.034472,0.161263,0.039917,0.135355,0.121846l-0.269472,0.848862c-0.010614,0.03361-0.002811,0.070328,0.020586,0.096657l0.591393,0.665921c0.057081,0.064269,0.011789,0.16582-0.074102,0.166451l-0.890564,0.006099c-0.035337,0.000196-0.067812,0.018945-0.085564,0.0494l-0.450651,0.768251c-0.043491,0.074069-0.153997,0.062469-0.181116-0.0191l-0.281008-0.84512c-0.011103-0.033428-0.038998-0.058546-0.073414-0.066156l-0.869873-0.191061c-0.083992-0.018479-0.107052-0.127218-0.037844-0.178145l0.716919-0.52846c0.02836-0.020877,0.043552-0.055166,0.040146-0.090266L19.755541,12.55737z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M12.506371,20.308361c-0.050034-0.069878,0.005567-0.166182,0.09105-0.157703l0.886333,0.087027c0.0351,0.003405,0.069439-0.011871,0.090316-0.040232l0.52846-0.716919c0.050927-0.069208,0.159616-0.046062,0.178145,0.037844l0.191061,0.869871c0.007611,0.034416,0.032728,0.062311,0.066156,0.073414l0.84512,0.28101c0.081569,0.027117,0.09312,0.137711,0.019051,0.181202l-0.768201,0.450563c-0.030505,0.017838-0.049254,0.050312-0.0494,0.085564l-0.006149,0.89065c-0.00063,0.085892-0.102132,0.131098-0.166401,0.074017l-0.665921-0.591391c-0.026329-0.023399-0.063046-0.031204-0.096657-0.020586l-0.848862,0.269472c-0.081979,0.025991-0.156319-0.056648-0.121846-0.135357l0.35664-0.816118c0.014123-0.032261,0.010134-0.069551-0.010365-0.098246L12.506371,20.308361z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M10.103903,30.6455c-0.07827-0.0355-0.07827-0.1467,0-0.1821l0.8111-0.3678c0.0321-0.014601,0.0542-0.045,0.0581-0.08l0.0992-0.885099c0.0095-0.0854,0.1152-0.119699,0.1732-0.056299l0.6004,0.657801c0.0238,0.025999,0.0595,0.0376,0.094,0.0305l0.8724-0.179199c0.0842-0.0173,0.1495,0.072701,0.1071,0.1474l-0.44,0.7743c-0.0175,0.030701-0.0175,0.068199,0,0.098801l0.44,0.774401c0.0424,0.074699-0.0229,0.1646-0.1071,0.147301l-0.8724-0.179199c-0.0345-0.007099-0.0702,0.004499-0.094,0.0305l-0.6004,0.657801c-0.058,0.063499-0.1637,0.029099-0.1732-0.056299l-0.0992-0.885099c-0.0039-0.035-0.026-0.0653-0.0581-0.079901L10.103903,30.6455z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M13.191873,40.798962c-0.085533,0.008389-0.141133-0.087914-0.09105-0.157707l0.518534-0.724072c0.020499-0.028694,0.024439-0.066071,0.010316-0.098331l-0.35664-0.81612c-0.034472-0.078709,0.039917-0.161263,0.121846-0.135357l0.848862,0.269474c0.03361,0.010616,0.070328,0.002811,0.096657-0.020588l0.665921-0.591389c0.064269-0.057083,0.16582-0.011791,0.166451,0.0741l0.006099,0.890564c0.000196,0.035336,0.018945,0.06781,0.0494,0.085564l0.768251,0.450649c0.07407,0.043491,0.062468,0.153999-0.0191,0.181118l-0.84512,0.28101c-0.033428,0.011101-0.058546,0.038994-0.066156,0.073414l-0.191061,0.869869c-0.018479,0.083992-0.127218,0.107052-0.178145,0.037846l-0.52846-0.716919c-0.020877-0.028362-0.055166-0.043552-0.090266-0.040146L13.191873,40.798962z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M20.942863,48.04813c-0.069878,0.050034-0.166182-0.005569-0.157703-0.091053l0.087027-0.886333c0.003405-0.035099-0.011871-0.069435-0.040232-0.090313l-0.716919-0.528461c-0.069208-0.050926-0.046062-0.159615,0.037844-0.178143l0.869871-0.191063c0.034416-0.00761,0.062311-0.03273,0.073414-0.066154l0.28101-0.845123c0.027117-0.081566,0.137711-0.093121,0.181202-0.019051l0.450563,0.7682c0.017838,0.030506,0.050312,0.049255,0.085564,0.0494l0.89065,0.006153c0.085892,0.000629,0.131098,0.102131,0.074017,0.166401l-0.591391,0.66592c-0.023399,0.026329-0.031204,0.063046-0.020586,0.096657l0.269472,0.848862c0.025991,0.081978-0.056648,0.156319-0.135357,0.121845l-0.816118-0.35664c-0.032261-0.014122-0.069551-0.010132-0.098246,0.010365L20.942863,48.04813z"
|
||||
/>
|
||||
</g>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M40.157589,13.443707c-0.003407,0.0351,0.011784,0.069389,0.040146,0.090266l0.716919,0.52846c0.069206,0.050927,0.046146,0.159666-0.037846,0.178145l-0.869869,0.191061c-0.03442,0.00761-0.062313,0.032728-0.073414,0.066156l-0.28101,0.84512c-0.027119,0.081569-0.137627,0.093169-0.181118,0.0191l-0.450649-0.768251c-0.017754-0.030456-0.050228-0.049205-0.085564-0.0494l-0.890564-0.006099c-0.085892-0.00063-0.131184-0.102181-0.0741-0.166451l0.591389-0.665921c0.023399-0.026329,0.031204-0.063046,0.020588-0.096657l-0.269474-0.848862c-0.025906-0.081929,0.056648-0.156319,0.135357-0.121846l0.81612,0.35664c0.032261,0.014123,0.069637,0.010183,0.098331-0.010316l0.724072-0.518534c0.069794-0.050083,0.166096,0.005517,0.157703,0.09105L40.157589,13.443707z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M46.975246,21.032442c-0.020496,0.028694-0.024487,0.065985-0.010365,0.098246l0.35664,0.816118c0.034473,0.078709-0.039867,0.161348-0.121845,0.135357l-0.848862-0.269472c-0.033611-0.010618-0.070328-0.002813-0.096657,0.020586l-0.66592,0.591391c-0.06427,0.057081-0.165771,0.011875-0.166405-0.074017l-0.006149-0.89065c-0.000145-0.035252-0.018894-0.067726-0.0494-0.085564l-0.7682-0.450563c-0.07407-0.043491-0.062519-0.154085,0.019051-0.181202l0.845123-0.28101c0.033424-0.011103,0.058544-0.038998,0.066154-0.073414l0.191063-0.869871c0.018528-0.083906,0.127216-0.107052,0.178143-0.037844l0.528461,0.716919c0.020878,0.02836,0.055214,0.043636,0.090313,0.040232l0.886333-0.087027c0.085484-0.008478,0.141087,0.087826,0.091053,0.157703L46.975246,21.032442z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M49.085144,31.013308c-0.032097,0.014601-0.054199,0.044901-0.058098,0.079901l-0.099201,0.885099c-0.009499,0.085398-0.1152,0.119799-0.173199,0.056299l-0.600399-0.657801c-0.0238-0.026001-0.059502-0.0376-0.094002-0.0305l-0.872398,0.179199c-0.084202,0.0173-0.149502-0.072601-0.107101-0.147301l0.439999-0.774401c0.017502-0.030602,0.017502-0.0681,0-0.098801l-0.439999-0.7743c-0.0424-0.074699,0.0229-0.1647,0.107101-0.1474l0.872398,0.179199c0.0345,0.007099,0.070202-0.004501,0.094002-0.0305l0.600399-0.657801c0.057999-0.0634,0.1637-0.0291,0.173199,0.056299l0.099201,0.885099c0.003899,0.035,0.026001,0.065399,0.058098,0.08l0.8111,0.3678c0.07827,0.0354,0.07827,0.146601,0,0.1821L49.085144,31.013308z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M45.92194,40.711941c-0.035099-0.003407-0.069389,0.011784-0.090267,0.040146l-0.528461,0.716919c-0.050926,0.069206-0.159664,0.046146-0.178143-0.037846l-0.191063-0.869869c-0.00761-0.03442-0.032726-0.062313-0.066154-0.073414l-0.845119-0.28101c-0.08157-0.027119-0.09317-0.137627-0.019104-0.181118l0.768253-0.450649c0.030457-0.017754,0.049206-0.050228,0.0494-0.085564l0.0061-0.890564c0.000629-0.085892,0.10218-0.131184,0.166451-0.0741l0.66592,0.591389c0.026329,0.023399,0.063046,0.031204,0.096657,0.020588l0.848862-0.269474c0.081928-0.025906,0.156319,0.056648,0.121845,0.135357l-0.35664,0.81612c-0.014122,0.032261-0.010181,0.069637,0.010315,0.098331l0.518536,0.724072c0.050083,0.069794-0.005516,0.166096-0.091049,0.157707L45.92194,40.711941z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M38.333206,47.529598c-0.028694-0.020496-0.065987-0.024487-0.098248-0.010365l-0.81612,0.35664c-0.078705,0.034473-0.161346-0.039867-0.135353-0.121845l0.26947-0.848862c0.010616-0.033611,0.002811-0.070328-0.020584-0.096657l-0.591393-0.66592c-0.057083-0.06427-0.011875-0.165771,0.074017-0.166401l0.890652-0.006153c0.035252-0.000145,0.067726-0.018894,0.085564-0.0494l0.450562-0.7682c0.043491-0.07407,0.154083-0.062515,0.181202,0.019051l0.28101,0.845123c0.011101,0.033424,0.038998,0.058544,0.073414,0.066154l0.869873,0.191063c0.083904,0.018528,0.107052,0.127216,0.037842,0.178143l-0.716919,0.528461c-0.028358,0.020878-0.043636,0.055214-0.04023,0.090313l0.087025,0.886333c0.008476,0.085484-0.087826,0.141087-0.157703,0.091053L38.333206,47.529598z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M20.682501,33.66c-0.6667,0-1.2367-0.16-1.710001-0.48s-0.8367-0.756699-1.09-1.309999c-0.2467-0.559999-0.370001-1.196699-0.370001-1.91s0.126699-1.35,0.379999-1.91s0.616699-1,1.09-1.32c0.48-0.3267,1.053301-0.49,1.719999-0.49c0.5667,0,1.043301,0.1033,1.43,0.309999c0.393299,0.206699,0.7033,0.4867,0.93,0.84c0.233299,0.3533,0.393299,0.75,0.48,1.190001l-0.9,0.059999c-0.0867-0.459999-0.280001-0.8333-0.58-1.120001C21.762499,27.2267,21.309198,27.08,20.702497,27.08c-0.540001,0-0.98,0.133301-1.32,0.4c-0.3333,0.266701-0.58,0.620001-0.74,1.059999c-0.153299,0.4333-0.23,0.9067-0.23,1.42c0,0.540001,0.08,1.026699,0.24,1.459999c0.16,0.426701,0.41,0.766701,0.75,1.02S20.175798,32.82,20.702497,32.82c0.42,0,0.7833-0.0933,1.09-0.279999c0.3067-0.193298,0.543301-0.450001,0.709999-0.77s0.2533-0.6667,0.26-1.040001h-2.040001v-0.82h2.84v3.59h-0.639999l-0.059999-1.639999L22.982498,32c-0.08,0.32-0.233299,0.606701-0.459999,0.860001c-0.2267,0.2467-0.5,0.443298-0.82,0.59C21.3892,33.59,21.0492,33.66,20.682501,33.66z M24.984501,33.5v-7.1h2.200001c1.0933,0,1.9333,0.309999,2.52,0.93c0.5933,0.6133,0.889999,1.49,0.889999,2.629999c0,1.133301-0.290001,2.006701-0.870001,2.619999c-0.58,0.6133-1.4067,0.919998-2.48,0.919998L24.984501,33.5z M25.844501,32.66h1.34c0.8333,0,1.459999-0.223301,1.879999-0.67c0.42-0.4533,0.629999-1.129999,0.629999-2.030001c0-0.9133-0.209999-1.5933-0.629999-2.040001c-0.42-0.4533-1.0467-0.68-1.879999-0.68h-1.34V32.66z M31.830202,33.5v-7.1h2.550001c0.793301,0,1.41,0.190001,1.849998,0.57s0.66,0.9067,0.66,1.58c0,0.4533-0.099998,0.846701-0.299999,1.18c-0.200001,0.3267-0.486698,0.5767-0.860001,0.75c-0.373402,0.1733-0.823399,0.26-1.349998,0.26h-1.689999v2.76H31.830202z M32.690201,29.9h1.689999c0.533298,0,0.9333-0.1133,1.200001-0.34c0.2733-0.2267,0.41-0.563299,0.41-1.01c0-0.4333-0.1367-0.76-0.41-0.98c-0.266701-0.219999-0.666698-0.33-1.200001-0.33h-1.689999V29.9z M38.138802,33.5v-7.1H40.8288c0.5,0,0.93,0.0867,1.290001,0.26s0.6366,0.4233,0.830002,0.75c0.200001,0.32,0.299999,0.700001,0.299999,1.139999c0,0.32-0.076698,0.606701-0.23,0.860001c-0.146702,0.2467-0.3367,0.4433-0.57,0.59c-0.233398,0.1467-0.4767,0.2267-0.73,0.24l-0.060001-0.09c0.4333,0,0.7733,0.1,1.02,0.299999c0.2533,0.200001,0.400002,0.52,0.439999,0.959999l0.200001,2.089998h-0.869999l-0.180099-2c-0.0266-0.293301-0.133301-0.51-0.319901-0.65c-0.18-0.139999-0.4767-0.209999-0.889999-0.209999h-2.060001v2.859999L38.138802,33.5z M38.998802,29.799999h1.939999c0.4333,0,0.7766-0.110001,1.029999-0.33c0.2533-0.219999,0.380001-0.5333,0.380001-0.940001c0-0.4133-0.130001-0.73-0.389999-0.950001c-0.259998-0.2267-0.6367-0.34-1.130001-0.34h-1.830002L38.998802,29.799999z"
|
||||
/>
|
||||
</svg>
|
||||
);
|
||||
return (
|
||||
<svg
|
||||
className={className}
|
||||
version="1.1"
|
||||
id="Layer_1"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlnsXlink="http://www.w3.org/1999/xlink"
|
||||
x="0px"
|
||||
y="0px"
|
||||
viewBox="0 0 60 60"
|
||||
enable-background="new 0 0 60 60"
|
||||
xmlSpace="preserve"
|
||||
>
|
||||
<path
|
||||
className="fill-none stroke-txt-primary"
|
||||
d="M53.749001,16.288099v27.4228L30,57.422897L6.25098,43.710899v-27.4228L30,2.576169L53.749001,16.288099z"
|
||||
/>
|
||||
<g>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M29.909,9.4694c0.0355-0.07827,0.1467-0.07827,0.1821,0l0.3678,0.8111c0.014601,0.0321,0.045,0.0542,0.08,0.0581L31.424,10.4378c0.0854,0.0095,0.119699,0.1152,0.056299,0.1732l-0.657801,0.6004c-0.025999,0.0238-0.0376,0.0595-0.0305,0.094l0.179199,0.8724c0.0173,0.0842-0.072701,0.1495-0.1474,0.1071l-0.7743-0.44c-0.030701-0.0175-0.068199-0.0175-0.098801,0l-0.774401,0.44c-0.074699,0.0424-0.1646-0.0229-0.147301-0.1071l0.179199-0.8724c0.007099-0.0345-0.004499-0.0702-0.0305-0.094l-0.657801-0.6004c-0.063499-0.058-0.0291-0.1637,0.056299-0.1732l0.885099-0.0992c0.035-0.0039,0.0653-0.026,0.079901-0.0581L29.909,9.4694z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M29.909,47.680504c0.0355-0.07827,0.1467-0.07827,0.1821,0l0.3678,0.8111c0.014601,0.032101,0.045,0.054203,0.08,0.058102L31.424,48.648907c0.0854,0.009499,0.119699,0.1152,0.056299,0.173199l-0.657801,0.600399c-0.025999,0.0238-0.0376,0.059502-0.0305,0.094002l0.179199,0.872398c0.0173,0.084202-0.072701,0.149502-0.1474,0.107101l-0.7743-0.440002c-0.030701-0.017498-0.068199-0.017498-0.098801,0l-0.774401,0.440002c-0.074699,0.0424-0.1646-0.0229-0.147301-0.107101l0.179199-0.872398c0.007099-0.0345-0.004499-0.070202-0.0305-0.094002l-0.657801-0.600399c-0.063499-0.057999-0.0291-0.1637,0.056299-0.173199l0.885099-0.099201c0.035-0.003899,0.0653-0.026001,0.079901-0.058102L29.909,47.680504z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M19.755541,12.55737c-0.008392-0.085533,0.087912-0.141133,0.157703-0.09105l0.724073,0.518534c0.028694,0.020499,0.066072,0.024439,0.098331,0.010316l0.81612-0.35664c0.078707-0.034472,0.161263,0.039917,0.135355,0.121846l-0.269472,0.848862c-0.010614,0.03361-0.002811,0.070328,0.020586,0.096657l0.591393,0.665921c0.057081,0.064269,0.011789,0.16582-0.074102,0.166451l-0.890564,0.006099c-0.035337,0.000196-0.067812,0.018945-0.085564,0.0494l-0.450651,0.768251c-0.043491,0.074069-0.153997,0.062469-0.181116-0.0191l-0.281008-0.84512c-0.011103-0.033428-0.038998-0.058546-0.073414-0.066156l-0.869873-0.191061c-0.083992-0.018479-0.107052-0.127218-0.037844-0.178145l0.716919-0.52846c0.02836-0.020877,0.043552-0.055166,0.040146-0.090266L19.755541,12.55737z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M12.506371,20.308361c-0.050034-0.069878,0.005567-0.166182,0.09105-0.157703l0.886333,0.087027c0.0351,0.003405,0.069439-0.011871,0.090316-0.040232l0.52846-0.716919c0.050927-0.069208,0.159616-0.046062,0.178145,0.037844l0.191061,0.869871c0.007611,0.034416,0.032728,0.062311,0.066156,0.073414l0.84512,0.28101c0.081569,0.027117,0.09312,0.137711,0.019051,0.181202l-0.768201,0.450563c-0.030505,0.017838-0.049254,0.050312-0.0494,0.085564l-0.006149,0.89065c-0.00063,0.085892-0.102132,0.131098-0.166401,0.074017l-0.665921-0.591391c-0.026329-0.023399-0.063046-0.031204-0.096657-0.020586l-0.848862,0.269472c-0.081979,0.025991-0.156319-0.056648-0.121846-0.135357l0.35664-0.816118c0.014123-0.032261,0.010134-0.069551-0.010365-0.098246L12.506371,20.308361z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M10.103903,30.6455c-0.07827-0.0355-0.07827-0.1467,0-0.1821l0.8111-0.3678c0.0321-0.014601,0.0542-0.045,0.0581-0.08l0.0992-0.885099c0.0095-0.0854,0.1152-0.119699,0.1732-0.056299l0.6004,0.657801c0.0238,0.025999,0.0595,0.0376,0.094,0.0305l0.8724-0.179199c0.0842-0.0173,0.1495,0.072701,0.1071,0.1474l-0.44,0.7743c-0.0175,0.030701-0.0175,0.068199,0,0.098801l0.44,0.774401c0.0424,0.074699-0.0229,0.1646-0.1071,0.147301l-0.8724-0.179199c-0.0345-0.007099-0.0702,0.004499-0.094,0.0305l-0.6004,0.657801c-0.058,0.063499-0.1637,0.029099-0.1732-0.056299l-0.0992-0.885099c-0.0039-0.035-0.026-0.0653-0.0581-0.079901L10.103903,30.6455z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M13.191873,40.798962c-0.085533,0.008389-0.141133-0.087914-0.09105-0.157707l0.518534-0.724072c0.020499-0.028694,0.024439-0.066071,0.010316-0.098331l-0.35664-0.81612c-0.034472-0.078709,0.039917-0.161263,0.121846-0.135357l0.848862,0.269474c0.03361,0.010616,0.070328,0.002811,0.096657-0.020588l0.665921-0.591389c0.064269-0.057083,0.16582-0.011791,0.166451,0.0741l0.006099,0.890564c0.000196,0.035336,0.018945,0.06781,0.0494,0.085564l0.768251,0.450649c0.07407,0.043491,0.062468,0.153999-0.0191,0.181118l-0.84512,0.28101c-0.033428,0.011101-0.058546,0.038994-0.066156,0.073414l-0.191061,0.869869c-0.018479,0.083992-0.127218,0.107052-0.178145,0.037846l-0.52846-0.716919c-0.020877-0.028362-0.055166-0.043552-0.090266-0.040146L13.191873,40.798962z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M20.942863,48.04813c-0.069878,0.050034-0.166182-0.005569-0.157703-0.091053l0.087027-0.886333c0.003405-0.035099-0.011871-0.069435-0.040232-0.090313l-0.716919-0.528461c-0.069208-0.050926-0.046062-0.159615,0.037844-0.178143l0.869871-0.191063c0.034416-0.00761,0.062311-0.03273,0.073414-0.066154l0.28101-0.845123c0.027117-0.081566,0.137711-0.093121,0.181202-0.019051l0.450563,0.7682c0.017838,0.030506,0.050312,0.049255,0.085564,0.0494l0.89065,0.006153c0.085892,0.000629,0.131098,0.102131,0.074017,0.166401l-0.591391,0.66592c-0.023399,0.026329-0.031204,0.063046-0.020586,0.096657l0.269472,0.848862c0.025991,0.081978-0.056648,0.156319-0.135357,0.121845l-0.816118-0.35664c-0.032261-0.014122-0.069551-0.010132-0.098246,0.010365L20.942863,48.04813z"
|
||||
/>
|
||||
</g>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M40.157589,13.443707c-0.003407,0.0351,0.011784,0.069389,0.040146,0.090266l0.716919,0.52846c0.069206,0.050927,0.046146,0.159666-0.037846,0.178145l-0.869869,0.191061c-0.03442,0.00761-0.062313,0.032728-0.073414,0.066156l-0.28101,0.84512c-0.027119,0.081569-0.137627,0.093169-0.181118,0.0191l-0.450649-0.768251c-0.017754-0.030456-0.050228-0.049205-0.085564-0.0494l-0.890564-0.006099c-0.085892-0.00063-0.131184-0.102181-0.0741-0.166451l0.591389-0.665921c0.023399-0.026329,0.031204-0.063046,0.020588-0.096657l-0.269474-0.848862c-0.025906-0.081929,0.056648-0.156319,0.135357-0.121846l0.81612,0.35664c0.032261,0.014123,0.069637,0.010183,0.098331-0.010316l0.724072-0.518534c0.069794-0.050083,0.166096,0.005517,0.157703,0.09105L40.157589,13.443707z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M46.975246,21.032442c-0.020496,0.028694-0.024487,0.065985-0.010365,0.098246l0.35664,0.816118c0.034473,0.078709-0.039867,0.161348-0.121845,0.135357l-0.848862-0.269472c-0.033611-0.010618-0.070328-0.002813-0.096657,0.020586l-0.66592,0.591391c-0.06427,0.057081-0.165771,0.011875-0.166405-0.074017l-0.006149-0.89065c-0.000145-0.035252-0.018894-0.067726-0.0494-0.085564l-0.7682-0.450563c-0.07407-0.043491-0.062519-0.154085,0.019051-0.181202l0.845123-0.28101c0.033424-0.011103,0.058544-0.038998,0.066154-0.073414l0.191063-0.869871c0.018528-0.083906,0.127216-0.107052,0.178143-0.037844l0.528461,0.716919c0.020878,0.02836,0.055214,0.043636,0.090313,0.040232l0.886333-0.087027c0.085484-0.008478,0.141087,0.087826,0.091053,0.157703L46.975246,21.032442z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M49.085144,31.013308c-0.032097,0.014601-0.054199,0.044901-0.058098,0.079901l-0.099201,0.885099c-0.009499,0.085398-0.1152,0.119799-0.173199,0.056299l-0.600399-0.657801c-0.0238-0.026001-0.059502-0.0376-0.094002-0.0305l-0.872398,0.179199c-0.084202,0.0173-0.149502-0.072601-0.107101-0.147301l0.439999-0.774401c0.017502-0.030602,0.017502-0.0681,0-0.098801l-0.439999-0.7743c-0.0424-0.074699,0.0229-0.1647,0.107101-0.1474l0.872398,0.179199c0.0345,0.007099,0.070202-0.004501,0.094002-0.0305l0.600399-0.657801c0.057999-0.0634,0.1637-0.0291,0.173199,0.056299l0.099201,0.885099c0.003899,0.035,0.026001,0.065399,0.058098,0.08l0.8111,0.3678c0.07827,0.0354,0.07827,0.146601,0,0.1821L49.085144,31.013308z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M45.92194,40.711941c-0.035099-0.003407-0.069389,0.011784-0.090267,0.040146l-0.528461,0.716919c-0.050926,0.069206-0.159664,0.046146-0.178143-0.037846l-0.191063-0.869869c-0.00761-0.03442-0.032726-0.062313-0.066154-0.073414l-0.845119-0.28101c-0.08157-0.027119-0.09317-0.137627-0.019104-0.181118l0.768253-0.450649c0.030457-0.017754,0.049206-0.050228,0.0494-0.085564l0.0061-0.890564c0.000629-0.085892,0.10218-0.131184,0.166451-0.0741l0.66592,0.591389c0.026329,0.023399,0.063046,0.031204,0.096657,0.020588l0.848862-0.269474c0.081928-0.025906,0.156319,0.056648,0.121845,0.135357l-0.35664,0.81612c-0.014122,0.032261-0.010181,0.069637,0.010315,0.098331l0.518536,0.724072c0.050083,0.069794-0.005516,0.166096-0.091049,0.157707L45.92194,40.711941z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M38.333206,47.529598c-0.028694-0.020496-0.065987-0.024487-0.098248-0.010365l-0.81612,0.35664c-0.078705,0.034473-0.161346-0.039867-0.135353-0.121845l0.26947-0.848862c0.010616-0.033611,0.002811-0.070328-0.020584-0.096657l-0.591393-0.66592c-0.057083-0.06427-0.011875-0.165771,0.074017-0.166401l0.890652-0.006153c0.035252-0.000145,0.067726-0.018894,0.085564-0.0494l0.450562-0.7682c0.043491-0.07407,0.154083-0.062515,0.181202,0.019051l0.28101,0.845123c0.011101,0.033424,0.038998,0.058544,0.073414,0.066154l0.869873,0.191063c0.083904,0.018528,0.107052,0.127216,0.037842,0.178143l-0.716919,0.528461c-0.028358,0.020878-0.043636,0.055214-0.04023,0.090313l0.087025,0.886333c0.008476,0.085484-0.087826,0.141087-0.157703,0.091053L38.333206,47.529598z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M20.682501,33.66c-0.6667,0-1.2367-0.16-1.710001-0.48s-0.8367-0.756699-1.09-1.309999c-0.2467-0.559999-0.370001-1.196699-0.370001-1.91s0.126699-1.35,0.379999-1.91s0.616699-1,1.09-1.32c0.48-0.3267,1.053301-0.49,1.719999-0.49c0.5667,0,1.043301,0.1033,1.43,0.309999c0.393299,0.206699,0.7033,0.4867,0.93,0.84c0.233299,0.3533,0.393299,0.75,0.48,1.190001l-0.9,0.059999c-0.0867-0.459999-0.280001-0.8333-0.58-1.120001C21.762499,27.2267,21.309198,27.08,20.702497,27.08c-0.540001,0-0.98,0.133301-1.32,0.4c-0.3333,0.266701-0.58,0.620001-0.74,1.059999c-0.153299,0.4333-0.23,0.9067-0.23,1.42c0,0.540001,0.08,1.026699,0.24,1.459999c0.16,0.426701,0.41,0.766701,0.75,1.02S20.175798,32.82,20.702497,32.82c0.42,0,0.7833-0.0933,1.09-0.279999c0.3067-0.193298,0.543301-0.450001,0.709999-0.77s0.2533-0.6667,0.26-1.040001h-2.040001v-0.82h2.84v3.59h-0.639999l-0.059999-1.639999L22.982498,32c-0.08,0.32-0.233299,0.606701-0.459999,0.860001c-0.2267,0.2467-0.5,0.443298-0.82,0.59C21.3892,33.59,21.0492,33.66,20.682501,33.66z M24.984501,33.5v-7.1h2.200001c1.0933,0,1.9333,0.309999,2.52,0.93c0.5933,0.6133,0.889999,1.49,0.889999,2.629999c0,1.133301-0.290001,2.006701-0.870001,2.619999c-0.58,0.6133-1.4067,0.919998-2.48,0.919998L24.984501,33.5z M25.844501,32.66h1.34c0.8333,0,1.459999-0.223301,1.879999-0.67c0.42-0.4533,0.629999-1.129999,0.629999-2.030001c0-0.9133-0.209999-1.5933-0.629999-2.040001c-0.42-0.4533-1.0467-0.68-1.879999-0.68h-1.34V32.66z M31.830202,33.5v-7.1h2.550001c0.793301,0,1.41,0.190001,1.849998,0.57s0.66,0.9067,0.66,1.58c0,0.4533-0.099998,0.846701-0.299999,1.18c-0.200001,0.3267-0.486698,0.5767-0.860001,0.75c-0.373402,0.1733-0.823399,0.26-1.349998,0.26h-1.689999v2.76H31.830202z M32.690201,29.9h1.689999c0.533298,0,0.9333-0.1133,1.200001-0.34c0.2733-0.2267,0.41-0.563299,0.41-1.01c0-0.4333-0.1367-0.76-0.41-0.98c-0.266701-0.219999-0.666698-0.33-1.200001-0.33h-1.689999V29.9z M38.138802,33.5v-7.1H40.8288c0.5,0,0.93,0.0867,1.290001,0.26s0.6366,0.4233,0.830002,0.75c0.200001,0.32,0.299999,0.700001,0.299999,1.139999c0,0.32-0.076698,0.606701-0.23,0.860001c-0.146702,0.2467-0.3367,0.4433-0.57,0.59c-0.233398,0.1467-0.4767,0.2267-0.73,0.24l-0.060001-0.09c0.4333,0,0.7733,0.1,1.02,0.299999c0.2533,0.200001,0.400002,0.52,0.439999,0.959999l0.200001,2.089998h-0.869999l-0.180099-2c-0.0266-0.293301-0.133301-0.51-0.319901-0.65c-0.18-0.139999-0.4767-0.209999-0.889999-0.209999h-2.060001v2.859999L38.138802,33.5z M38.998802,29.799999h1.939999c0.4333,0,0.7766-0.110001,1.029999-0.33c0.2533-0.219999,0.380001-0.5333,0.380001-0.940001c0-0.4133-0.130001-0.73-0.389999-0.950001c-0.259998-0.2267-0.6367-0.34-1.130001-0.34h-1.830002L38.998802,29.799999z"
|
||||
/>
|
||||
</svg>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1,73 +1,73 @@
|
||||
export function HIPAA(props: { className?: string }) {
|
||||
const { className } = props;
|
||||
const { className } = props;
|
||||
|
||||
return (
|
||||
<svg
|
||||
className={className}
|
||||
version="1.1"
|
||||
id="Layer_1"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlnsXlink="http://www.w3.org/1999/xlink"
|
||||
x="0px"
|
||||
y="0px"
|
||||
viewBox="0 0 60 60"
|
||||
enable-background="new 0 0 60 60"
|
||||
xmlSpace="preserve"
|
||||
>
|
||||
<circle
|
||||
className="fill-none stroke-txt-primary"
|
||||
cx="30"
|
||||
cy="30"
|
||||
r="27.5"
|
||||
/>
|
||||
<path
|
||||
className="fill-none stroke-txt-primary"
|
||||
stroke-linecap="round"
|
||||
d="M6,30c0,9.285099,5.2727,17.338699,12.987301,21.3298 M30,6c-7.1101,0-13.497999,3.0918-17.8927,8.0043"
|
||||
/>
|
||||
<path
|
||||
className="fill-none stroke-txt-primary"
|
||||
stroke-linecap="round"
|
||||
d="M53.494099,30c0,9.285099-5.272697,17.338699-12.987297,21.3298M29.494101,6c7.110098,0,13.497999,3.0918,17.892698,8.0043"
|
||||
/>
|
||||
<circle
|
||||
className="fill-none stroke-txt-primary"
|
||||
cx="30"
|
||||
cy="16.378401"
|
||||
r="3"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M29.994101,21.7288L29.994101,21.7288c0.276142,0,0.5,0.223858,0.5,0.5v30.169203c0,0.276142-0.223858,0.5-0.5,0.5l0,0c-0.276142,0-0.5-0.223858-0.5-0.5V22.2288C29.494101,21.952658,29.717958,21.7288,29.994101,21.7288z"
|
||||
/>
|
||||
<path
|
||||
className="fill-none stroke-txt-primary"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
d="M29.8696,25.396c-6.1423,0.2393-5.6989-9.0175-11.4363-9.017599c-3.2858,0-5.1936,4.928598-10.33418,4.928598c0.37099,3.179701,8.61708,9.9102,13.61988,9.4862"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M19.1661,20.778601c0.180901-0.2087,0.1583-0.524401-0.0504-0.705301c-0.2087-0.180799-0.524401-0.158298-0.705299,0.0504L18.7883,20.4512L19.1661,20.778601z M19.8967,24.029699c0.180901-0.2087,0.1583-0.524399-0.0504-0.705299c-0.2087-0.180799-0.5245-0.1583-0.705299,0.0504l0.377899,0.327499L19.8967,24.029699z M21.509701,27.1513c0.1497-0.232,0.082998-0.5415-0.149-0.6912c-0.232101-0.1497-0.541601-0.082901-0.691301,0.149099l0.4202,0.271101L21.509701,27.1513z M10.752,25.0903l0.1518,0.4764c1.2831-0.4088,2.9679-1.1737,4.5087-2.040501c1.5282-0.859699,2.9813-1.8564,3.753599-2.747599l-0.3778-0.3274L18.4104,20.123699c-0.6523,0.752701-1.975401,1.679901-3.4882,2.530901c-1.5002,0.844-3.1213,1.5767-4.322001,1.959299L10.752,25.0903zM13.1263,27.5012l0.1518,0.4764c2.5311-0.806499,5.110999-2.2082,6.6186-3.947901l-0.3778-0.3274L19.141001,23.3748c-1.3416,1.5481-3.729701,2.8736-6.166501,3.65L13.1263,27.5012z M16.4139,29.5103l0.1917,0.4618c0.946699-0.393,1.964899-0.780199,2.820799-1.205799c0.8477-0.4216,1.640001-0.927801,2.083302-1.615l-0.420101-0.271l-0.4202-0.271101c-0.287199,0.445301-0.864698,0.8522-1.6882,1.2617c-0.8153,0.405401-1.769699,0.767-2.758999,1.177601L16.4139,29.5103z"
|
||||
/>
|
||||
<path
|
||||
className="fill-none stroke-txt-primary"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
d="M30,25.396c6.1423,0.2393,5.698898-9.0175,11.436401-9.017599c3.285698,0,5.193501,4.928598,10.334099,4.928598c-0.370998,3.179701-8.6171,9.9102-13.6199,9.4862"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M40.703499,20.778601c-0.180798-0.2087-0.158298-0.524401,0.0504-0.705301c0.208702-0.180799,0.524502-0.158298,0.705303,0.0504l-0.3778,0.327501L40.703499,20.778601z M39.9729,24.029699c-0.180801-0.2087-0.158298-0.524399,0.0504-0.705299c0.208698-0.180799,0.524498-0.1583,0.705299,0.0504l-0.3778,0.327499L39.9729,24.029699z M38.359901,27.1513c-0.1497-0.232-0.083-0.5415,0.149097-0.6912c0.232002-0.1497,0.5415-0.082901,0.6912,0.149099l-0.4202,0.271101L38.359901,27.1513z M49.117699,25.0903L48.9659,25.5667c-1.283199-0.4088-2.967899-1.1737-4.508801-2.040501c-1.528198-0.859699-2.9813-1.8564-3.753601-2.747599l0.377903-0.3274l0.3778-0.327501C42.1115,20.8764,43.434601,21.8036,44.947399,22.6546c1.500202,0.844,3.1213,1.5767,4.322102,1.959299L49.117699,25.0903z M46.743301,27.5012l-0.151802,0.4764c-2.531101-0.806499-5.110901-2.2082-6.618599-3.947901l0.377899-0.3274l0.3778-0.327499c1.341602,1.5481,3.729702,2.8736,6.1665,3.65L46.743301,27.5012z M43.4557,29.5103l-0.1917,0.4618c-0.946701-0.393-1.964901-0.780199-2.820801-1.205799c-0.847698-0.4216-1.639999-0.927801-2.083298-1.615l0.420097-0.271l0.4202-0.271101c0.287201,0.445301,0.864799,0.8522,1.688301,1.2617c0.815201,0.405401,1.7696,0.767,2.7589,1.177601L43.4557,29.5103z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M34.197399,46.775902c-0.000797-0.131702-0.054298-0.258102-0.147999-0.351303c-0.0938-0.093098-0.2202-0.1455-0.352001-0.1455c-0.131699,0-0.258198,0.052402-0.351898,0.1455c-0.0938,0.093201-0.147202,0.219601-0.148102,0.351303c0.000301,0.455898-0.2724,0.901798-0.6889,1.233299c-0.667799,0.5322-1.605099,0.779598-2.514198,0.772598c-1.438002,0.028-3.154701-0.8218-3.140301-2.005898c-0.0121-1.132301,1.730101-1.791801,3.140301-1.749702c1.8137-0.007599,4.115398-0.925598,4.3284-3.325001c0.020901-0.584999-0.300602-1.197899-0.677002-1.547199c-0.374699-0.364498-0.770897-0.595699-1.1507-0.808701c-0.762798-0.416-1.4963-0.745998-2.172298-1.145298l-0.0648-0.032803c-1.5065-0.681698-2.9839-1.524197-4.1761-2.588398c-1.2145-1.066799-1.9025-2.4333-0.869801-3.4286c0.232599-0.243099,0.7631-0.3459,1.137001-0.5376C26.451,31.5599,26.545,31.4981,26.6243,31.421499c0.376101-0.3638,0.640499-0.843699,0.794399-1.452099c0.0371-0.1586,0.063002-0.320601,0.0476-0.4753C27.4508,29.3393,27.394199,29.2034,27.2957,29.1029c-0.098499-0.100599-0.233101-0.160099-0.3876-0.178799c-0.154301-0.018702-0.316801,0.003799-0.476101,0.0376c-0.597198,0.1236-1.0933,0.370899-1.472099,0.7372c-0.0802,0.0774-0.146,0.1703-0.2031,0.271799c-0.2195,0.3878-0.291201,0.855701-0.625,1.214901c-0.7045,0.718399-1.101,2.0606-0.691099,3.0849c0.3631,1.018501,1.0411,1.725399,1.7215,2.3377C26.5539,37.812401,28.1117,38.659,29.7307,39.370399l-0.0648-0.0327c1.399101,0.8326,3.4624,1.4398,3.406202,2.363499c0.004898,1.166302-1.645401,2.171101-3.077801,2.1385c-0.8771,0.008102-1.769402,0.157402-2.603802,0.571602C26.5825,44.7976,25.707001,45.6525,25.7285,46.775902c0.207699,2.368397,2.573599,3.062199,4.2658,3.068897c1.104799-0.011398,2.242199-0.298599,3.162098-1.042198C33.722698,48.344002,34.207802,47.611,34.197399,46.775902z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M25.792801,46.776199c0.000898-0.131798,0.054298-0.258099,0.1481-0.351299c0.093699-0.093201,0.2202-0.1455,0.3519-0.1455c0.1318,0,0.2582,0.052299,0.351999,0.1455c0.0937,0.093201,0.1472,0.219501,0.148001,0.351299c-0.000301,0.455902,0.2724,0.901699,0.688999,1.2332c0.6677,0.5322,1.605101,0.779602,2.514099,0.772602c1.438002,0.028,3.1548-0.821701,3.1404-2.005802c0.012001-1.132298-1.730099-1.791901-3.1404-1.749798c-1.8137-0.0075-4.115398-0.925602-4.328299-3.325001c-0.021-0.5849,0.3006-1.197899,0.676899-1.5471c0.374701-0.364601,0.771-0.595699,1.150801-0.808701c0.762699-0.4161,1.496201-0.745998,2.172199-1.145401l0.0648-0.032799c1.506599-0.681599,2.984001-1.524101,4.176102-2.588299c1.214497-1.066803,1.9025-2.433403,0.869797-3.4286c-0.232597-0.2432-0.762997-0.346001-1.136997-0.537601c-0.102001-0.052799-0.1959-0.1145-0.275303-0.1912c-0.375999-0.363699-0.640499-0.843599-0.794399-1.452099c-0.037098-0.1586-0.063-0.320601-0.0476-0.475201c0.015499-0.1548,0.072102-0.290701,0.170601-0.3913s0.2332-0.16,0.3876-0.178801c0.154301-0.018599,0.316799,0.003901,0.4762,0.037701c0.597198,0.123501,1.0933,0.3708,1.472099,0.7372c0.080101,0.0774,0.145901,0.1702,0.202999,0.2717c0.219501,0.387901,0.291302,0.855801,0.625103,1.214901C36.563,31.9042,36.959499,33.246399,36.5495,34.270699c-0.363098,1.018501-1.041,1.725403-1.7215,2.3377c-1.391598,1.2043-2.949499,2.0508-4.568499,2.762302l0.0648-0.032803c-1.399101,0.832703-3.4624,1.4398-3.4062,2.363503c-0.004801,1.166298,1.645399,2.1712,3.077799,2.1385c0.8771,0.008198,1.769501,0.157497,2.603901,0.571598c0.807899,0.386299,1.683399,1.241199,1.6619,2.3647c-0.207699,2.368401-2.5735,3.062099-4.2658,3.068802c-1.1047-0.011402-2.242199-0.2985-3.1621-1.042202C26.2675,48.344299,25.782499,47.611198,25.792801,46.776199z"
|
||||
/>
|
||||
</svg>
|
||||
);
|
||||
return (
|
||||
<svg
|
||||
className={className}
|
||||
version="1.1"
|
||||
id="Layer_1"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlnsXlink="http://www.w3.org/1999/xlink"
|
||||
x="0px"
|
||||
y="0px"
|
||||
viewBox="0 0 60 60"
|
||||
enable-background="new 0 0 60 60"
|
||||
xmlSpace="preserve"
|
||||
>
|
||||
<circle
|
||||
className="fill-none stroke-txt-primary"
|
||||
cx="30"
|
||||
cy="30"
|
||||
r="27.5"
|
||||
/>
|
||||
<path
|
||||
className="fill-none stroke-txt-primary"
|
||||
stroke-linecap="round"
|
||||
d="M6,30c0,9.285099,5.2727,17.338699,12.987301,21.3298 M30,6c-7.1101,0-13.497999,3.0918-17.8927,8.0043"
|
||||
/>
|
||||
<path
|
||||
className="fill-none stroke-txt-primary"
|
||||
stroke-linecap="round"
|
||||
d="M53.494099,30c0,9.285099-5.272697,17.338699-12.987297,21.3298M29.494101,6c7.110098,0,13.497999,3.0918,17.892698,8.0043"
|
||||
/>
|
||||
<circle
|
||||
className="fill-none stroke-txt-primary"
|
||||
cx="30"
|
||||
cy="16.378401"
|
||||
r="3"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M29.994101,21.7288L29.994101,21.7288c0.276142,0,0.5,0.223858,0.5,0.5v30.169203c0,0.276142-0.223858,0.5-0.5,0.5l0,0c-0.276142,0-0.5-0.223858-0.5-0.5V22.2288C29.494101,21.952658,29.717958,21.7288,29.994101,21.7288z"
|
||||
/>
|
||||
<path
|
||||
className="fill-none stroke-txt-primary"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
d="M29.8696,25.396c-6.1423,0.2393-5.6989-9.0175-11.4363-9.017599c-3.2858,0-5.1936,4.928598-10.33418,4.928598c0.37099,3.179701,8.61708,9.9102,13.61988,9.4862"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M19.1661,20.778601c0.180901-0.2087,0.1583-0.524401-0.0504-0.705301c-0.2087-0.180799-0.524401-0.158298-0.705299,0.0504L18.7883,20.4512L19.1661,20.778601z M19.8967,24.029699c0.180901-0.2087,0.1583-0.524399-0.0504-0.705299c-0.2087-0.180799-0.5245-0.1583-0.705299,0.0504l0.377899,0.327499L19.8967,24.029699z M21.509701,27.1513c0.1497-0.232,0.082998-0.5415-0.149-0.6912c-0.232101-0.1497-0.541601-0.082901-0.691301,0.149099l0.4202,0.271101L21.509701,27.1513z M10.752,25.0903l0.1518,0.4764c1.2831-0.4088,2.9679-1.1737,4.5087-2.040501c1.5282-0.859699,2.9813-1.8564,3.753599-2.747599l-0.3778-0.3274L18.4104,20.123699c-0.6523,0.752701-1.975401,1.679901-3.4882,2.530901c-1.5002,0.844-3.1213,1.5767-4.322001,1.959299L10.752,25.0903zM13.1263,27.5012l0.1518,0.4764c2.5311-0.806499,5.110999-2.2082,6.6186-3.947901l-0.3778-0.3274L19.141001,23.3748c-1.3416,1.5481-3.729701,2.8736-6.166501,3.65L13.1263,27.5012z M16.4139,29.5103l0.1917,0.4618c0.946699-0.393,1.964899-0.780199,2.820799-1.205799c0.8477-0.4216,1.640001-0.927801,2.083302-1.615l-0.420101-0.271l-0.4202-0.271101c-0.287199,0.445301-0.864698,0.8522-1.6882,1.2617c-0.8153,0.405401-1.769699,0.767-2.758999,1.177601L16.4139,29.5103z"
|
||||
/>
|
||||
<path
|
||||
className="fill-none stroke-txt-primary"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
d="M30,25.396c6.1423,0.2393,5.698898-9.0175,11.436401-9.017599c3.285698,0,5.193501,4.928598,10.334099,4.928598c-0.370998,3.179701-8.6171,9.9102-13.6199,9.4862"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M40.703499,20.778601c-0.180798-0.2087-0.158298-0.524401,0.0504-0.705301c0.208702-0.180799,0.524502-0.158298,0.705303,0.0504l-0.3778,0.327501L40.703499,20.778601z M39.9729,24.029699c-0.180801-0.2087-0.158298-0.524399,0.0504-0.705299c0.208698-0.180799,0.524498-0.1583,0.705299,0.0504l-0.3778,0.327499L39.9729,24.029699z M38.359901,27.1513c-0.1497-0.232-0.083-0.5415,0.149097-0.6912c0.232002-0.1497,0.5415-0.082901,0.6912,0.149099l-0.4202,0.271101L38.359901,27.1513z M49.117699,25.0903L48.9659,25.5667c-1.283199-0.4088-2.967899-1.1737-4.508801-2.040501c-1.528198-0.859699-2.9813-1.8564-3.753601-2.747599l0.377903-0.3274l0.3778-0.327501C42.1115,20.8764,43.434601,21.8036,44.947399,22.6546c1.500202,0.844,3.1213,1.5767,4.322102,1.959299L49.117699,25.0903z M46.743301,27.5012l-0.151802,0.4764c-2.531101-0.806499-5.110901-2.2082-6.618599-3.947901l0.377899-0.3274l0.3778-0.327499c1.341602,1.5481,3.729702,2.8736,6.1665,3.65L46.743301,27.5012z M43.4557,29.5103l-0.1917,0.4618c-0.946701-0.393-1.964901-0.780199-2.820801-1.205799c-0.847698-0.4216-1.639999-0.927801-2.083298-1.615l0.420097-0.271l0.4202-0.271101c0.287201,0.445301,0.864799,0.8522,1.688301,1.2617c0.815201,0.405401,1.7696,0.767,2.7589,1.177601L43.4557,29.5103z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M34.197399,46.775902c-0.000797-0.131702-0.054298-0.258102-0.147999-0.351303c-0.0938-0.093098-0.2202-0.1455-0.352001-0.1455c-0.131699,0-0.258198,0.052402-0.351898,0.1455c-0.0938,0.093201-0.147202,0.219601-0.148102,0.351303c0.000301,0.455898-0.2724,0.901798-0.6889,1.233299c-0.667799,0.5322-1.605099,0.779598-2.514198,0.772598c-1.438002,0.028-3.154701-0.8218-3.140301-2.005898c-0.0121-1.132301,1.730101-1.791801,3.140301-1.749702c1.8137-0.007599,4.115398-0.925598,4.3284-3.325001c0.020901-0.584999-0.300602-1.197899-0.677002-1.547199c-0.374699-0.364498-0.770897-0.595699-1.1507-0.808701c-0.762798-0.416-1.4963-0.745998-2.172298-1.145298l-0.0648-0.032803c-1.5065-0.681698-2.9839-1.524197-4.1761-2.588398c-1.2145-1.066799-1.9025-2.4333-0.869801-3.4286c0.232599-0.243099,0.7631-0.3459,1.137001-0.5376C26.451,31.5599,26.545,31.4981,26.6243,31.421499c0.376101-0.3638,0.640499-0.843699,0.794399-1.452099c0.0371-0.1586,0.063002-0.320601,0.0476-0.4753C27.4508,29.3393,27.394199,29.2034,27.2957,29.1029c-0.098499-0.100599-0.233101-0.160099-0.3876-0.178799c-0.154301-0.018702-0.316801,0.003799-0.476101,0.0376c-0.597198,0.1236-1.0933,0.370899-1.472099,0.7372c-0.0802,0.0774-0.146,0.1703-0.2031,0.271799c-0.2195,0.3878-0.291201,0.855701-0.625,1.214901c-0.7045,0.718399-1.101,2.0606-0.691099,3.0849c0.3631,1.018501,1.0411,1.725399,1.7215,2.3377C26.5539,37.812401,28.1117,38.659,29.7307,39.370399l-0.0648-0.0327c1.399101,0.8326,3.4624,1.4398,3.406202,2.363499c0.004898,1.166302-1.645401,2.171101-3.077801,2.1385c-0.8771,0.008102-1.769402,0.157402-2.603802,0.571602C26.5825,44.7976,25.707001,45.6525,25.7285,46.775902c0.207699,2.368397,2.573599,3.062199,4.2658,3.068897c1.104799-0.011398,2.242199-0.298599,3.162098-1.042198C33.722698,48.344002,34.207802,47.611,34.197399,46.775902z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M25.792801,46.776199c0.000898-0.131798,0.054298-0.258099,0.1481-0.351299c0.093699-0.093201,0.2202-0.1455,0.3519-0.1455c0.1318,0,0.2582,0.052299,0.351999,0.1455c0.0937,0.093201,0.1472,0.219501,0.148001,0.351299c-0.000301,0.455902,0.2724,0.901699,0.688999,1.2332c0.6677,0.5322,1.605101,0.779602,2.514099,0.772602c1.438002,0.028,3.1548-0.821701,3.1404-2.005802c0.012001-1.132298-1.730099-1.791901-3.1404-1.749798c-1.8137-0.0075-4.115398-0.925602-4.328299-3.325001c-0.021-0.5849,0.3006-1.197899,0.676899-1.5471c0.374701-0.364601,0.771-0.595699,1.150801-0.808701c0.762699-0.4161,1.496201-0.745998,2.172199-1.145401l0.0648-0.032799c1.506599-0.681599,2.984001-1.524101,4.176102-2.588299c1.214497-1.066803,1.9025-2.433403,0.869797-3.4286c-0.232597-0.2432-0.762997-0.346001-1.136997-0.537601c-0.102001-0.052799-0.1959-0.1145-0.275303-0.1912c-0.375999-0.363699-0.640499-0.843599-0.794399-1.452099c-0.037098-0.1586-0.063-0.320601-0.0476-0.475201c0.015499-0.1548,0.072102-0.290701,0.170601-0.3913s0.2332-0.16,0.3876-0.178801c0.154301-0.018599,0.316799,0.003901,0.4762,0.037701c0.597198,0.123501,1.0933,0.3708,1.472099,0.7372c0.080101,0.0774,0.145901,0.1702,0.202999,0.2717c0.219501,0.387901,0.291302,0.855801,0.625103,1.214901C36.563,31.9042,36.959499,33.246399,36.5495,34.270699c-0.363098,1.018501-1.041,1.725403-1.7215,2.3377c-1.391598,1.2043-2.949499,2.0508-4.568499,2.762302l0.0648-0.032803c-1.399101,0.832703-3.4624,1.4398-3.4062,2.363503c-0.004801,1.166298,1.645399,2.1712,3.077799,2.1385c0.8771,0.008198,1.769501,0.157497,2.603901,0.571598c0.807899,0.386299,1.683399,1.241199,1.6619,2.3647c-0.207699,2.368401-2.5735,3.062099-4.2658,3.068802c-1.1047-0.011402-2.242199-0.2985-3.1621-1.042202C26.2675,48.344299,25.782499,47.611198,25.792801,46.776199z"
|
||||
/>
|
||||
</svg>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1,31 +1,31 @@
|
||||
export function ISO27001(props: { className?: string }) {
|
||||
const { className } = props;
|
||||
const { className } = props;
|
||||
|
||||
return (
|
||||
<svg
|
||||
className={className}
|
||||
version="1.1"
|
||||
id="Layer_1"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlnsXlink="http://www.w3.org/1999/xlink"
|
||||
x="0px"
|
||||
y="0px"
|
||||
viewBox="0 0 60 60"
|
||||
enable-background="new 0 0 60 60"
|
||||
xmlSpace="preserve"
|
||||
>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M30,2c15.464001,0,28,12.536,28,28c0,15.296902-12.266701,27.726398-27.5,27.993198V58h-1v-0.006802C14.2667,57.726398,2,45.296902,2,30C2,14.536,14.536,2,30,2z M30.5,19h-1V3.02148c-3.155199,0.25567-6.2307,2.92246-8.6094,7.63082C19.6922,13.0247,18.707899,15.8514,18.0117,19h-1.0224c1.517601-7.0244,4.4443-12.57117,8.077101-15.24805C16.1075,6.51958,9.20285,16.6488,8.91211,29.1768H11v1H8.9043c0.063661,12.824699,7.0498,23.2551,16.162102,26.070301C21.2631,53.444302,18.235001,47.495998,16.7861,40h1.017599c0.701601,3.5513,1.762901,6.726898,3.086901,9.347698c2.3787,4.708302,5.454201,7.374104,8.6094,7.629803V40h1v16.977501c3.1553-0.2556,6.231701-2.921501,8.610401-7.629803C40.434299,46.726898,41.4949,43.551201,42.196301,40h1.017601c-1.448902,7.496101-4.477001,13.444302-8.2803,16.247101c9.112198-2.815399,16.0994-13.245899,16.163097-26.070301H49v-1h2.087898C50.7971,16.649099,43.8923,6.51979,34.933601,3.75195C38.566399,6.42882,41.493099,11.9756,43.0107,19h-1.0224c-0.695999-3.1486-1.679501-5.9754-2.877899-8.3477C36.731701,5.94392,33.6553,3.27713,30.5,3.02148V19z M3.00195,30.1768C3.07554,41.655201,10.3111,51.431702,20.4648,55.265598C13.0733,50.7789,7.95827,41.238899,7.9043,30.1768H3.00195z M52.091801,30.7227c-0.216499,10.8304-5.2887,20.130701-12.559601,24.542898C49.687302,51.4324,56.9244,41.656101,56.998001,30.1768h-4.901302L52.091801,30.7227z M20.4648,4.7334C10.5021,8.49507,3.34904,17.9786,3.01367,29.1768h4.89844C8.15792,18.3901,13.2175,9.13233,20.4648,4.7334z M39.535198,4.73438c7.247101,4.39911,12.3069,13.656119,12.5527,24.442421h4.898403C56.651001,17.978701,49.4977,8.49613,39.535198,4.73438z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M16.4545,37.719501c0-0.5,0.0767-0.950001,0.23-1.350002c0.16-0.4067,0.436701-0.7934,0.83-1.16c0.4-0.366699,0.9533-0.736698,1.66-1.110001c0.3267-0.173397,0.59-0.333397,0.790001-0.48c0.199999-0.146698,0.346699-0.303398,0.439999-0.469997c0.093302-0.166702,0.140001-0.370003,0.140001-0.610001c0-0.2467-0.053301-0.460003-0.16-0.640001c-0.106701-0.186701-0.266701-0.333401-0.480001-0.440001c-0.206699-0.106699-0.4667-0.16-0.779999-0.16c-0.5,0-0.8967,0.130001-1.190001,0.390001C17.6478,31.949499,17.4678,32.3195,17.394501,32.7995l-0.900002-0.060001c0.08-0.693398,0.346701-1.246698,0.800001-1.659998c0.4533-0.413401,1.063299-0.620001,1.83-0.620001c0.4867,0,0.903299,0.086601,1.25,0.26c0.346701,0.1733,0.610001,0.416601,0.789999,0.73C21.3512,31.7561,21.4445,32.112801,21.4445,32.519501c0,0.360001-0.059999,0.673298-0.18,0.939999c-0.119999,0.260002-0.323299,0.5033-0.610001,0.73c-0.279999,0.226601-0.666698,0.470001-1.16,0.73c-0.639999,0.34-1.126699,0.6833-1.459999,1.030003c-0.3267,0.3466-0.5,0.656597-0.52,0.93h3.93v0.84H16.4545z M23.679399,37.719501c0-0.733402,0.1-1.463402,0.300001-2.190002c0.199999-0.733398,0.4867-1.443398,0.859999-2.129997c0.380001-0.686703,0.833302-1.333401,1.360001-1.940002h-4.1v-0.84H27.1394V31.3995c-0.5933,0.679998-1.0833,1.3533-1.470001,2.019999c-0.379999,0.66-0.66,1.3433-0.84,2.050003c-0.179998,0.699997-0.269999,1.449997-0.269999,2.25H23.679399z M30.3559,37.879501c-0.573299,0-1.07-0.150002-1.49-0.450001s-0.7467-0.7267-0.98-1.279999c-0.2267-0.553402-0.34-1.210003-0.34-1.970001c0-0.760002,0.1133-1.416702,0.34-1.970001c0.233299-0.559999,0.559999-0.99,0.98-1.289999c0.42-0.3067,0.9167-0.460001,1.49-0.460001c0.58,0,1.08,0.153301,1.5,0.460001c0.420002,0.299999,0.743301,0.726599,0.970001,1.280001c0.233299,0.553299,0.349998,1.213299,0.349998,1.98c0,0.759998-0.116699,1.416599-0.349998,1.970001c-0.2267,0.553299-0.549999,0.98-0.970001,1.279999C31.4359,37.7295,30.9359,37.879501,30.3559,37.879501z M30.3559,37.039501c0.6133,0,1.0867-0.2467,1.42-0.740002c0.3333-0.5,0.500002-1.206699,0.500002-2.119999c0-0.6134-0.076702-1.1334-0.230003-1.560001c-0.146698-0.433399-0.363298-0.759998-0.649998-0.98c-0.280001-0.2267-0.626701-0.34-1.040001-0.34c-0.4067,0-0.7533,0.1133-1.039999,0.34c-0.280001,0.220001-0.4967,0.5466-0.650002,0.98c-0.1467,0.426601-0.219999,0.946602-0.219999,1.560001c0,0.9133,0.1667,1.619999,0.5,2.119999C29.2792,36.792801,29.749201,37.039501,30.3559,37.039501z M36.986801,37.879501c-0.573402,0-1.07-0.150002-1.490002-0.450001c-0.419998-0.299999-0.7467-0.7267-0.98-1.279999c-0.2267-0.553402-0.34-1.210003-0.34-1.970001c0-0.760002,0.1133-1.416702,0.34-1.970001c0.233299-0.559999,0.560001-0.99,0.98-1.289999c0.420002-0.3067,0.916599-0.460001,1.490002-0.460001c0.579998,0,1.079998,0.153301,1.5,0.460001c0.419998,0.299999,0.743298,0.726599,0.969997,1.280001c0.233303,0.553299,0.350002,1.213299,0.350002,1.98c0,0.759998-0.116699,1.416599-0.350002,1.970001c-0.2267,0.553299-0.549999,0.98-0.969997,1.279999C38.066799,37.7295,37.566799,37.879501,36.986801,37.879501z M36.986801,37.039501c0.6133,0,1.086597-0.2467,1.419998-0.740002c0.333302-0.5,0.5-1.206699,0.5-2.119999c0-0.6134-0.076698-1.1334-0.23-1.560001c-0.146698-0.433399-0.3634-0.759998-0.650002-0.98c-0.279999-0.2267-0.626698-0.34-1.039997-0.34c-0.4067,0-0.753403,0.1133-1.040001,0.34c-0.279999,0.220001-0.4967,0.5466-0.650002,0.98c-0.146698,0.426601-0.219997,0.946602-0.219997,1.560001c0,0.9133,0.166599,1.619999,0.5,2.119999C35.910099,36.792801,36.3801,37.039501,36.986801,37.039501z M42.187599,37.719501v-5.260002h-1.48v-0.74h0.599998c0.260002,0,0.466702-0.0334,0.620003-0.1c0.16-0.0667,0.273399-0.179998,0.34-0.34c0.0667-0.16,0.099998-0.379999,0.099998-0.66h0.68v7.100002H42.187599z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M22.246201,28.2803v-7.1h0.859999v7.1H22.246201z M27.244801,28.4403c-0.546701,0-1.023401-0.103399-1.43-0.309999c-0.4067-0.206701-0.73-0.49-0.969999-0.85c-0.2334-0.366699-0.370001-0.790001-0.410002-1.27l0.900002-0.059999c0.046598,0.3533,0.15,0.653299,0.309999,0.9c0.16,0.246601,0.373301,0.4333,0.639999,0.559999c0.2733,0.1266,0.6,0.190001,0.98,0.190001c0.333302,0,0.6166-0.0434,0.85-0.129999c0.233301-0.0867,0.41-0.2134,0.530001-0.380001c0.1266-0.1667,0.190001-0.369999,0.190001-0.609999c0-0.220001-0.0534-0.413401-0.16-0.580002c-0.1-0.173399-0.296701-0.33-0.59-0.469999c-0.286701-0.1467-0.7134-0.289999-1.280001-0.43c-0.5467-0.139999-0.9834-0.2934-1.309999-0.459999c-0.32-0.1667-0.5534-0.370001-0.700001-0.610001c-0.139999-0.24-0.209999-0.536699-0.209999-0.889999c0-0.4,0.0933-0.75,0.279999-1.050001c0.1933-0.3067,0.4666-0.5434,0.82-0.709999c0.3533-0.173401,0.7733-0.26,1.26-0.26c0.52,0,0.9666,0.1,1.34,0.299999c0.373301,0.1933,0.67,0.460001,0.890001,0.800001c0.219999,0.34,0.3566,0.726601,0.41,1.16L28.684799,23.3403c-0.039999-0.286699-0.1334-0.539999-0.279999-0.76c-0.140001-0.2267-0.333401-0.403399-0.58-0.529999c-0.2467-0.126701-0.546701-0.190001-0.9-0.190001c-0.440001,0-0.790001,0.1066-1.050001,0.32c-0.26,0.2066-0.389999,0.48-0.389999,0.82c0,0.220001,0.049999,0.403301,0.15,0.550001c0.1066,0.139999,0.293301,0.2666,0.559999,0.379999c0.2666,0.1066,0.650002,0.223301,1.150002,0.35c0.5933,0.146601,1.063299,0.323299,1.41,0.530001c0.3533,0.199999,0.6033,0.4333,0.75,0.699999c0.153299,0.2666,0.23,0.57,0.23,0.91c0,0.4133-0.106701,0.7733-0.32,1.08c-0.2134,0.300001-0.506701,0.5333-0.880001,0.700001C28.1614,28.3603,27.7314,28.4403,27.244801,28.4403z M33.971298,28.4403c-0.673397,0-1.253399-0.1467-1.739998-0.440001c-0.48-0.299999-0.85-0.7267-1.110001-1.279999c-0.26-0.5534-0.389999-1.2134-0.389999-1.980001c0-0.766699,0.129999-1.426699,0.389999-1.98c0.26-0.559999,0.630001-0.99,1.110001-1.289999c0.486599-0.300001,1.066601-0.450001,1.739998-0.450001c0.68,0,1.260002,0.15,1.740002,0.450001c0.486599,0.299999,0.860001,0.73,1.119999,1.289999c0.260002,0.553301,0.389999,1.213301,0.389999,1.98c0,0.766602-0.129997,1.426601-0.389999,1.980001c-0.259998,0.553299-0.6334,0.98-1.119999,1.279999C35.2313,28.2936,34.651299,28.4403,33.971298,28.4403z M33.971298,27.6003c0.493301,0,0.913303-0.1134,1.260002-0.34c0.353298-0.2267,0.623299-0.5534,0.810001-0.98c0.1866-0.426701,0.279999-0.940001,0.279999-1.540001c0-0.599998-0.093399-1.1134-0.279999-1.539999c-0.186703-0.433401-0.456703-0.763401-0.810001-0.99c-0.346699-0.2334-0.766701-0.35-1.260002-0.35c-0.486698,0-0.906696,0.1166-1.259998,0.35c-0.346699,0.226599-0.6134,0.556599-0.799999,0.99C31.7246,23.6269,31.6313,24.140301,31.6313,24.740299c0,0.6,0.0933,1.1133,0.280001,1.540001c0.1866,0.4266,0.4533,0.7533,0.799999,0.98C33.064602,27.4869,33.4846,27.6003,33.971298,27.6003z"
|
||||
/>
|
||||
</svg>
|
||||
);
|
||||
return (
|
||||
<svg
|
||||
className={className}
|
||||
version="1.1"
|
||||
id="Layer_1"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlnsXlink="http://www.w3.org/1999/xlink"
|
||||
x="0px"
|
||||
y="0px"
|
||||
viewBox="0 0 60 60"
|
||||
enable-background="new 0 0 60 60"
|
||||
xmlSpace="preserve"
|
||||
>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M30,2c15.464001,0,28,12.536,28,28c0,15.296902-12.266701,27.726398-27.5,27.993198V58h-1v-0.006802C14.2667,57.726398,2,45.296902,2,30C2,14.536,14.536,2,30,2z M30.5,19h-1V3.02148c-3.155199,0.25567-6.2307,2.92246-8.6094,7.63082C19.6922,13.0247,18.707899,15.8514,18.0117,19h-1.0224c1.517601-7.0244,4.4443-12.57117,8.077101-15.24805C16.1075,6.51958,9.20285,16.6488,8.91211,29.1768H11v1H8.9043c0.063661,12.824699,7.0498,23.2551,16.162102,26.070301C21.2631,53.444302,18.235001,47.495998,16.7861,40h1.017599c0.701601,3.5513,1.762901,6.726898,3.086901,9.347698c2.3787,4.708302,5.454201,7.374104,8.6094,7.629803V40h1v16.977501c3.1553-0.2556,6.231701-2.921501,8.610401-7.629803C40.434299,46.726898,41.4949,43.551201,42.196301,40h1.017601c-1.448902,7.496101-4.477001,13.444302-8.2803,16.247101c9.112198-2.815399,16.0994-13.245899,16.163097-26.070301H49v-1h2.087898C50.7971,16.649099,43.8923,6.51979,34.933601,3.75195C38.566399,6.42882,41.493099,11.9756,43.0107,19h-1.0224c-0.695999-3.1486-1.679501-5.9754-2.877899-8.3477C36.731701,5.94392,33.6553,3.27713,30.5,3.02148V19z M3.00195,30.1768C3.07554,41.655201,10.3111,51.431702,20.4648,55.265598C13.0733,50.7789,7.95827,41.238899,7.9043,30.1768H3.00195z M52.091801,30.7227c-0.216499,10.8304-5.2887,20.130701-12.559601,24.542898C49.687302,51.4324,56.9244,41.656101,56.998001,30.1768h-4.901302L52.091801,30.7227z M20.4648,4.7334C10.5021,8.49507,3.34904,17.9786,3.01367,29.1768h4.89844C8.15792,18.3901,13.2175,9.13233,20.4648,4.7334z M39.535198,4.73438c7.247101,4.39911,12.3069,13.656119,12.5527,24.442421h4.898403C56.651001,17.978701,49.4977,8.49613,39.535198,4.73438z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M16.4545,37.719501c0-0.5,0.0767-0.950001,0.23-1.350002c0.16-0.4067,0.436701-0.7934,0.83-1.16c0.4-0.366699,0.9533-0.736698,1.66-1.110001c0.3267-0.173397,0.59-0.333397,0.790001-0.48c0.199999-0.146698,0.346699-0.303398,0.439999-0.469997c0.093302-0.166702,0.140001-0.370003,0.140001-0.610001c0-0.2467-0.053301-0.460003-0.16-0.640001c-0.106701-0.186701-0.266701-0.333401-0.480001-0.440001c-0.206699-0.106699-0.4667-0.16-0.779999-0.16c-0.5,0-0.8967,0.130001-1.190001,0.390001C17.6478,31.949499,17.4678,32.3195,17.394501,32.7995l-0.900002-0.060001c0.08-0.693398,0.346701-1.246698,0.800001-1.659998c0.4533-0.413401,1.063299-0.620001,1.83-0.620001c0.4867,0,0.903299,0.086601,1.25,0.26c0.346701,0.1733,0.610001,0.416601,0.789999,0.73C21.3512,31.7561,21.4445,32.112801,21.4445,32.519501c0,0.360001-0.059999,0.673298-0.18,0.939999c-0.119999,0.260002-0.323299,0.5033-0.610001,0.73c-0.279999,0.226601-0.666698,0.470001-1.16,0.73c-0.639999,0.34-1.126699,0.6833-1.459999,1.030003c-0.3267,0.3466-0.5,0.656597-0.52,0.93h3.93v0.84H16.4545z M23.679399,37.719501c0-0.733402,0.1-1.463402,0.300001-2.190002c0.199999-0.733398,0.4867-1.443398,0.859999-2.129997c0.380001-0.686703,0.833302-1.333401,1.360001-1.940002h-4.1v-0.84H27.1394V31.3995c-0.5933,0.679998-1.0833,1.3533-1.470001,2.019999c-0.379999,0.66-0.66,1.3433-0.84,2.050003c-0.179998,0.699997-0.269999,1.449997-0.269999,2.25H23.679399z M30.3559,37.879501c-0.573299,0-1.07-0.150002-1.49-0.450001s-0.7467-0.7267-0.98-1.279999c-0.2267-0.553402-0.34-1.210003-0.34-1.970001c0-0.760002,0.1133-1.416702,0.34-1.970001c0.233299-0.559999,0.559999-0.99,0.98-1.289999c0.42-0.3067,0.9167-0.460001,1.49-0.460001c0.58,0,1.08,0.153301,1.5,0.460001c0.420002,0.299999,0.743301,0.726599,0.970001,1.280001c0.233299,0.553299,0.349998,1.213299,0.349998,1.98c0,0.759998-0.116699,1.416599-0.349998,1.970001c-0.2267,0.553299-0.549999,0.98-0.970001,1.279999C31.4359,37.7295,30.9359,37.879501,30.3559,37.879501z M30.3559,37.039501c0.6133,0,1.0867-0.2467,1.42-0.740002c0.3333-0.5,0.500002-1.206699,0.500002-2.119999c0-0.6134-0.076702-1.1334-0.230003-1.560001c-0.146698-0.433399-0.363298-0.759998-0.649998-0.98c-0.280001-0.2267-0.626701-0.34-1.040001-0.34c-0.4067,0-0.7533,0.1133-1.039999,0.34c-0.280001,0.220001-0.4967,0.5466-0.650002,0.98c-0.1467,0.426601-0.219999,0.946602-0.219999,1.560001c0,0.9133,0.1667,1.619999,0.5,2.119999C29.2792,36.792801,29.749201,37.039501,30.3559,37.039501z M36.986801,37.879501c-0.573402,0-1.07-0.150002-1.490002-0.450001c-0.419998-0.299999-0.7467-0.7267-0.98-1.279999c-0.2267-0.553402-0.34-1.210003-0.34-1.970001c0-0.760002,0.1133-1.416702,0.34-1.970001c0.233299-0.559999,0.560001-0.99,0.98-1.289999c0.420002-0.3067,0.916599-0.460001,1.490002-0.460001c0.579998,0,1.079998,0.153301,1.5,0.460001c0.419998,0.299999,0.743298,0.726599,0.969997,1.280001c0.233303,0.553299,0.350002,1.213299,0.350002,1.98c0,0.759998-0.116699,1.416599-0.350002,1.970001c-0.2267,0.553299-0.549999,0.98-0.969997,1.279999C38.066799,37.7295,37.566799,37.879501,36.986801,37.879501z M36.986801,37.039501c0.6133,0,1.086597-0.2467,1.419998-0.740002c0.333302-0.5,0.5-1.206699,0.5-2.119999c0-0.6134-0.076698-1.1334-0.23-1.560001c-0.146698-0.433399-0.3634-0.759998-0.650002-0.98c-0.279999-0.2267-0.626698-0.34-1.039997-0.34c-0.4067,0-0.753403,0.1133-1.040001,0.34c-0.279999,0.220001-0.4967,0.5466-0.650002,0.98c-0.146698,0.426601-0.219997,0.946602-0.219997,1.560001c0,0.9133,0.166599,1.619999,0.5,2.119999C35.910099,36.792801,36.3801,37.039501,36.986801,37.039501z M42.187599,37.719501v-5.260002h-1.48v-0.74h0.599998c0.260002,0,0.466702-0.0334,0.620003-0.1c0.16-0.0667,0.273399-0.179998,0.34-0.34c0.0667-0.16,0.099998-0.379999,0.099998-0.66h0.68v7.100002H42.187599z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M22.246201,28.2803v-7.1h0.859999v7.1H22.246201z M27.244801,28.4403c-0.546701,0-1.023401-0.103399-1.43-0.309999c-0.4067-0.206701-0.73-0.49-0.969999-0.85c-0.2334-0.366699-0.370001-0.790001-0.410002-1.27l0.900002-0.059999c0.046598,0.3533,0.15,0.653299,0.309999,0.9c0.16,0.246601,0.373301,0.4333,0.639999,0.559999c0.2733,0.1266,0.6,0.190001,0.98,0.190001c0.333302,0,0.6166-0.0434,0.85-0.129999c0.233301-0.0867,0.41-0.2134,0.530001-0.380001c0.1266-0.1667,0.190001-0.369999,0.190001-0.609999c0-0.220001-0.0534-0.413401-0.16-0.580002c-0.1-0.173399-0.296701-0.33-0.59-0.469999c-0.286701-0.1467-0.7134-0.289999-1.280001-0.43c-0.5467-0.139999-0.9834-0.2934-1.309999-0.459999c-0.32-0.1667-0.5534-0.370001-0.700001-0.610001c-0.139999-0.24-0.209999-0.536699-0.209999-0.889999c0-0.4,0.0933-0.75,0.279999-1.050001c0.1933-0.3067,0.4666-0.5434,0.82-0.709999c0.3533-0.173401,0.7733-0.26,1.26-0.26c0.52,0,0.9666,0.1,1.34,0.299999c0.373301,0.1933,0.67,0.460001,0.890001,0.800001c0.219999,0.34,0.3566,0.726601,0.41,1.16L28.684799,23.3403c-0.039999-0.286699-0.1334-0.539999-0.279999-0.76c-0.140001-0.2267-0.333401-0.403399-0.58-0.529999c-0.2467-0.126701-0.546701-0.190001-0.9-0.190001c-0.440001,0-0.790001,0.1066-1.050001,0.32c-0.26,0.2066-0.389999,0.48-0.389999,0.82c0,0.220001,0.049999,0.403301,0.15,0.550001c0.1066,0.139999,0.293301,0.2666,0.559999,0.379999c0.2666,0.1066,0.650002,0.223301,1.150002,0.35c0.5933,0.146601,1.063299,0.323299,1.41,0.530001c0.3533,0.199999,0.6033,0.4333,0.75,0.699999c0.153299,0.2666,0.23,0.57,0.23,0.91c0,0.4133-0.106701,0.7733-0.32,1.08c-0.2134,0.300001-0.506701,0.5333-0.880001,0.700001C28.1614,28.3603,27.7314,28.4403,27.244801,28.4403z M33.971298,28.4403c-0.673397,0-1.253399-0.1467-1.739998-0.440001c-0.48-0.299999-0.85-0.7267-1.110001-1.279999c-0.26-0.5534-0.389999-1.2134-0.389999-1.980001c0-0.766699,0.129999-1.426699,0.389999-1.98c0.26-0.559999,0.630001-0.99,1.110001-1.289999c0.486599-0.300001,1.066601-0.450001,1.739998-0.450001c0.68,0,1.260002,0.15,1.740002,0.450001c0.486599,0.299999,0.860001,0.73,1.119999,1.289999c0.260002,0.553301,0.389999,1.213301,0.389999,1.98c0,0.766602-0.129997,1.426601-0.389999,1.980001c-0.259998,0.553299-0.6334,0.98-1.119999,1.279999C35.2313,28.2936,34.651299,28.4403,33.971298,28.4403z M33.971298,27.6003c0.493301,0,0.913303-0.1134,1.260002-0.34c0.353298-0.2267,0.623299-0.5534,0.810001-0.98c0.1866-0.426701,0.279999-0.940001,0.279999-1.540001c0-0.599998-0.093399-1.1134-0.279999-1.539999c-0.186703-0.433401-0.456703-0.763401-0.810001-0.99c-0.346699-0.2334-0.766701-0.35-1.260002-0.35c-0.486698,0-0.906696,0.1166-1.259998,0.35c-0.346699,0.226599-0.6134,0.556599-0.799999,0.99C31.7246,23.6269,31.6313,24.140301,31.6313,24.740299c0,0.6,0.0933,1.1133,0.280001,1.540001c0.1866,0.4266,0.4533,0.7533,0.799999,0.98C33.064602,27.4869,33.4846,27.6003,33.971298,27.6003z"
|
||||
/>
|
||||
</svg>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1,31 +1,31 @@
|
||||
export function ISO27701(props: { className?: string }) {
|
||||
const { className } = props;
|
||||
const { className } = props;
|
||||
|
||||
return (
|
||||
<svg
|
||||
className={className}
|
||||
version="1.1"
|
||||
id="Layer_1"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlnsXlink="http://www.w3.org/1999/xlink"
|
||||
x="0px"
|
||||
y="0px"
|
||||
viewBox="0 0 60 60"
|
||||
enable-background="new 0 0 60 60"
|
||||
xmlSpace="preserve"
|
||||
>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M30,2c15.464001,0,28,12.536,28,28c0,15.296902-12.266701,27.726398-27.5,27.993198V58h-1v-0.006802C14.2667,57.726398,2,45.296902,2,30C2,14.536,14.536,2,30,2z M30.5,19h-1V3.02148c-3.155199,0.25567-6.2307,2.92246-8.6094,7.63082C19.6922,13.0247,18.707899,15.8514,18.0117,19h-1.0224c1.517601-7.0244,4.4443-12.57117,8.077101-15.24805C16.1075,6.51958,9.20285,16.6488,8.91211,29.1768H11v1H8.9043c0.063661,12.824699,7.0498,23.2551,16.162102,26.070301C21.2631,53.444302,18.235001,47.495998,16.7861,40h1.017599c0.701601,3.5513,1.762901,6.726898,3.086901,9.347698c2.3787,4.708302,5.454201,7.374104,8.6094,7.629803V40h1v16.977501c3.1553-0.2556,6.231701-2.921501,8.610401-7.629803C40.434299,46.726898,41.4949,43.551201,42.196301,40h1.017601c-1.448902,7.496101-4.477001,13.444302-8.2803,16.247101c9.112198-2.815399,16.0994-13.245899,16.163097-26.070301H49v-1h2.087898C50.7971,16.649099,43.8923,6.51979,34.933601,3.75195C38.566399,6.42882,41.493099,11.9756,43.0107,19h-1.0224c-0.695999-3.1486-1.679501-5.9754-2.877899-8.3477C36.731701,5.94392,33.6553,3.27713,30.5,3.02148V19z M3.00195,30.1768C3.07554,41.655201,10.3111,51.431702,20.4648,55.265598C13.0733,50.7789,7.95827,41.238899,7.9043,30.1768H3.00195z M52.091801,30.7227c-0.216499,10.8304-5.2887,20.130701-12.559601,24.542898C49.687302,51.4324,56.9244,41.656101,56.998001,30.1768h-4.901302L52.091801,30.7227z M20.4648,4.7334C10.5021,8.49507,3.34904,17.9786,3.01367,29.1768h4.89844C8.15792,18.3901,13.2175,9.13233,20.4648,4.7334z M39.535198,4.73438c7.247101,4.39911,12.3069,13.656119,12.5527,24.442421h4.898403C56.651001,17.978701,49.4977,8.49613,39.535198,4.73438z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M17.0502,37.719501c0-0.5,0.0767-0.950001,0.23-1.350002c0.160002-0.4067,0.436701-0.7934,0.830002-1.16c0.4-0.366699,0.953299-0.736698,1.66-1.110001c0.3267-0.173397,0.59-0.333397,0.789999-0.48c0.200001-0.146698,0.346701-0.303398,0.440001-0.469997c0.0933-0.166702,0.139999-0.370003,0.139999-0.610001c0-0.2467-0.053299-0.460003-0.16-0.640001c-0.106699-0.186701-0.266701-0.333401-0.48-0.440001c-0.206699-0.106699-0.4667-0.16-0.780001-0.16c-0.5,0-0.8967,0.130001-1.190001,0.390001C18.2435,31.949499,18.063499,32.3195,17.9902,32.7995l-0.9-0.060001c0.08-0.693398,0.346699-1.246698,0.799999-1.659998c0.4533-0.413401,1.063301-0.620001,1.83-0.620001c0.4867,0,0.903301,0.086601,1.25,0.26c0.346701,0.1733,0.610001,0.416601,0.790001,0.73c0.186699,0.306601,0.279999,0.663301,0.279999,1.070002c0,0.360001-0.059999,0.673298-0.179998,0.939999c-0.120001,0.260002-0.323301,0.5033-0.610001,0.73c-0.280001,0.226601-0.6667,0.470001-1.16,0.73c-0.640001,0.34-1.126701,0.6833-1.460001,1.030003c-0.3267,0.3466-0.5,0.656597-0.519999,0.93h3.929998v0.84H17.0502z M24.275101,37.719501c0-0.733402,0.099998-1.463402,0.299999-2.190002c0.200001-0.733398,0.4867-1.443398,0.860001-2.129997c0.379999-0.686703,0.833399-1.333401,1.359999-1.940002h-4.099998v-0.84H27.7351V31.3995c-0.5933,0.679998-1.0833,1.3533-1.469999,2.019999c-0.380001,0.66-0.66,1.3433-0.84,2.050003c-0.18,0.699997-0.27,1.449997-0.27,2.25H24.275101z M29.7146,37.719501c0-0.733402,0.1-1.463402,0.300001-2.190002c0.199999-0.733398,0.486599-1.443398,0.859999-2.129997c0.380001-0.686703,0.8333-1.333401,1.360001-1.940002h-4.1v-0.84h5.039999V31.3995c-0.593399,0.679998-1.083397,1.3533-1.469999,2.019999c-0.379999,0.66-0.66,1.3433-0.84,2.050003c-0.179998,0.699997-0.269999,1.449997-0.269999,2.25H29.7146z M36.391102,37.879501c-0.573402,0-1.070004-0.150002-1.490002-0.450001c-0.420002-0.299999-0.7467-0.7267-0.98-1.279999c-0.2267-0.553402-0.34-1.210003-0.34-1.970001c0-0.760002,0.1133-1.416702,0.34-1.970001c0.233299-0.559999,0.559998-0.99,0.98-1.289999c0.419998-0.3067,0.916599-0.460001,1.490002-0.460001c0.579998,0,1.079998,0.153301,1.5,0.460001c0.419998,0.299999,0.743298,0.726599,0.969997,1.280001c0.233299,0.553299,0.350002,1.213299,0.350002,1.98c0,0.759998-0.116703,1.416599-0.350002,1.970001c-0.2267,0.553299-0.549999,0.98-0.969997,1.279999C37.4711,37.7295,36.9711,37.879501,36.391102,37.879501z M36.391102,37.039501c0.613297,0,1.086597-0.2467,1.419998-0.740002c0.333302-0.5,0.5-1.206699,0.5-2.119999c0-0.6134-0.076698-1.1334-0.23-1.560001c-0.146702-0.433399-0.3634-0.759998-0.650002-0.98c-0.279999-0.2267-0.626698-0.34-1.039997-0.34c-0.4067,0-0.753403,0.1133-1.040001,0.34c-0.280003,0.220001-0.4967,0.5466-0.650002,0.98c-0.146698,0.426601-0.220001,0.946602-0.220001,1.560001c0,0.9133,0.166603,1.619999,0.5,2.119999C35.3144,36.792801,35.784401,37.039501,36.391102,37.039501z M41.5919,37.719501v-5.260002h-1.48v-0.74h0.599998c0.260002,0,0.466702-0.0334,0.620003-0.1c0.16-0.0667,0.2733-0.179998,0.34-0.34c0.0667-0.16,0.099998-0.379999,0.099998-0.66h0.68v7.100002H41.5919z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M22.746201,28.2803v-7.1h0.859999v7.1H22.746201z M27.744801,28.4403c-0.546701,0-1.023401-0.103399-1.43-0.309999c-0.4067-0.206701-0.73-0.49-0.969999-0.85c-0.2334-0.366699-0.370001-0.790001-0.410002-1.27l0.900002-0.059999c0.046598,0.3533,0.15,0.653299,0.309999,0.9c0.16,0.246601,0.373301,0.4333,0.639999,0.559999c0.2733,0.1266,0.6,0.190001,0.98,0.190001c0.333302,0,0.6166-0.0434,0.85-0.129999c0.233301-0.0867,0.41-0.2134,0.530001-0.380001c0.1266-0.1667,0.190001-0.369999,0.190001-0.609999c0-0.220001-0.0534-0.413401-0.16-0.580002c-0.1-0.173399-0.296701-0.33-0.59-0.469999c-0.286701-0.1467-0.7134-0.289999-1.280001-0.43c-0.5467-0.139999-0.9834-0.2934-1.309999-0.459999c-0.32-0.1667-0.5534-0.370001-0.700001-0.610001c-0.139999-0.24-0.209999-0.536699-0.209999-0.889999c0-0.4,0.0933-0.75,0.279999-1.050001c0.1933-0.3067,0.4666-0.5434,0.82-0.709999c0.3533-0.173401,0.7733-0.26,1.26-0.26c0.52,0,0.9666,0.1,1.34,0.299999c0.373301,0.1933,0.67,0.460001,0.890001,0.800001c0.219999,0.34,0.3566,0.726601,0.41,1.16L29.184799,23.3403c-0.039999-0.286699-0.1334-0.539999-0.279999-0.76c-0.140001-0.2267-0.333401-0.403399-0.58-0.529999c-0.2467-0.126701-0.546701-0.190001-0.9-0.190001c-0.440001,0-0.790001,0.1066-1.050001,0.32c-0.26,0.2066-0.389999,0.48-0.389999,0.82c0,0.220001,0.049999,0.403301,0.15,0.550001c0.1066,0.139999,0.293301,0.2666,0.559999,0.379999c0.2666,0.1066,0.650002,0.223301,1.150002,0.35c0.5933,0.146601,1.063299,0.323299,1.41,0.530001c0.3533,0.199999,0.6033,0.4333,0.75,0.699999c0.153299,0.2666,0.23,0.57,0.23,0.91c0,0.4133-0.106701,0.7733-0.32,1.08c-0.2134,0.300001-0.506701,0.5333-0.880001,0.700001C28.6614,28.3603,28.2314,28.4403,27.744801,28.4403z M34.471298,28.4403c-0.673397,0-1.253399-0.1467-1.739998-0.440001c-0.48-0.299999-0.85-0.7267-1.110001-1.279999c-0.26-0.5534-0.389999-1.2134-0.389999-1.980001c0-0.766699,0.129999-1.426699,0.389999-1.98c0.26-0.559999,0.630001-0.99,1.110001-1.289999c0.486599-0.300001,1.066601-0.450001,1.739998-0.450001c0.68,0,1.260002,0.15,1.740002,0.450001c0.486599,0.299999,0.860001,0.73,1.119999,1.289999c0.260002,0.553301,0.389999,1.213301,0.389999,1.98c0,0.766602-0.129997,1.426601-0.389999,1.980001c-0.259998,0.553299-0.6334,0.98-1.119999,1.279999C35.7313,28.2936,35.151299,28.4403,34.471298,28.4403z M34.471298,27.6003c0.493301,0,0.913303-0.1134,1.260002-0.34c0.353298-0.2267,0.623299-0.5534,0.810001-0.98c0.1866-0.426701,0.279999-0.940001,0.279999-1.540001c0-0.599998-0.093399-1.1134-0.279999-1.539999c-0.186703-0.433401-0.456703-0.763401-0.810001-0.99c-0.346699-0.2334-0.766701-0.35-1.260002-0.35c-0.486698,0-0.906696,0.1166-1.259998,0.35c-0.346699,0.226599-0.6134,0.556599-0.799999,0.99c-0.186699,0.4266-0.279999,0.940001-0.279999,1.539999c0,0.6,0.0933,1.1133,0.279999,1.540001c0.1866,0.4266,0.4533,0.7533,0.799999,0.98C33.564602,27.4869,33.9846,27.6003,34.471298,27.6003z"
|
||||
/>
|
||||
</svg>
|
||||
);
|
||||
return (
|
||||
<svg
|
||||
className={className}
|
||||
version="1.1"
|
||||
id="Layer_1"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlnsXlink="http://www.w3.org/1999/xlink"
|
||||
x="0px"
|
||||
y="0px"
|
||||
viewBox="0 0 60 60"
|
||||
enable-background="new 0 0 60 60"
|
||||
xmlSpace="preserve"
|
||||
>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M30,2c15.464001,0,28,12.536,28,28c0,15.296902-12.266701,27.726398-27.5,27.993198V58h-1v-0.006802C14.2667,57.726398,2,45.296902,2,30C2,14.536,14.536,2,30,2z M30.5,19h-1V3.02148c-3.155199,0.25567-6.2307,2.92246-8.6094,7.63082C19.6922,13.0247,18.707899,15.8514,18.0117,19h-1.0224c1.517601-7.0244,4.4443-12.57117,8.077101-15.24805C16.1075,6.51958,9.20285,16.6488,8.91211,29.1768H11v1H8.9043c0.063661,12.824699,7.0498,23.2551,16.162102,26.070301C21.2631,53.444302,18.235001,47.495998,16.7861,40h1.017599c0.701601,3.5513,1.762901,6.726898,3.086901,9.347698c2.3787,4.708302,5.454201,7.374104,8.6094,7.629803V40h1v16.977501c3.1553-0.2556,6.231701-2.921501,8.610401-7.629803C40.434299,46.726898,41.4949,43.551201,42.196301,40h1.017601c-1.448902,7.496101-4.477001,13.444302-8.2803,16.247101c9.112198-2.815399,16.0994-13.245899,16.163097-26.070301H49v-1h2.087898C50.7971,16.649099,43.8923,6.51979,34.933601,3.75195C38.566399,6.42882,41.493099,11.9756,43.0107,19h-1.0224c-0.695999-3.1486-1.679501-5.9754-2.877899-8.3477C36.731701,5.94392,33.6553,3.27713,30.5,3.02148V19z M3.00195,30.1768C3.07554,41.655201,10.3111,51.431702,20.4648,55.265598C13.0733,50.7789,7.95827,41.238899,7.9043,30.1768H3.00195z M52.091801,30.7227c-0.216499,10.8304-5.2887,20.130701-12.559601,24.542898C49.687302,51.4324,56.9244,41.656101,56.998001,30.1768h-4.901302L52.091801,30.7227z M20.4648,4.7334C10.5021,8.49507,3.34904,17.9786,3.01367,29.1768h4.89844C8.15792,18.3901,13.2175,9.13233,20.4648,4.7334z M39.535198,4.73438c7.247101,4.39911,12.3069,13.656119,12.5527,24.442421h4.898403C56.651001,17.978701,49.4977,8.49613,39.535198,4.73438z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M17.0502,37.719501c0-0.5,0.0767-0.950001,0.23-1.350002c0.160002-0.4067,0.436701-0.7934,0.830002-1.16c0.4-0.366699,0.953299-0.736698,1.66-1.110001c0.3267-0.173397,0.59-0.333397,0.789999-0.48c0.200001-0.146698,0.346701-0.303398,0.440001-0.469997c0.0933-0.166702,0.139999-0.370003,0.139999-0.610001c0-0.2467-0.053299-0.460003-0.16-0.640001c-0.106699-0.186701-0.266701-0.333401-0.48-0.440001c-0.206699-0.106699-0.4667-0.16-0.780001-0.16c-0.5,0-0.8967,0.130001-1.190001,0.390001C18.2435,31.949499,18.063499,32.3195,17.9902,32.7995l-0.9-0.060001c0.08-0.693398,0.346699-1.246698,0.799999-1.659998c0.4533-0.413401,1.063301-0.620001,1.83-0.620001c0.4867,0,0.903301,0.086601,1.25,0.26c0.346701,0.1733,0.610001,0.416601,0.790001,0.73c0.186699,0.306601,0.279999,0.663301,0.279999,1.070002c0,0.360001-0.059999,0.673298-0.179998,0.939999c-0.120001,0.260002-0.323301,0.5033-0.610001,0.73c-0.280001,0.226601-0.6667,0.470001-1.16,0.73c-0.640001,0.34-1.126701,0.6833-1.460001,1.030003c-0.3267,0.3466-0.5,0.656597-0.519999,0.93h3.929998v0.84H17.0502z M24.275101,37.719501c0-0.733402,0.099998-1.463402,0.299999-2.190002c0.200001-0.733398,0.4867-1.443398,0.860001-2.129997c0.379999-0.686703,0.833399-1.333401,1.359999-1.940002h-4.099998v-0.84H27.7351V31.3995c-0.5933,0.679998-1.0833,1.3533-1.469999,2.019999c-0.380001,0.66-0.66,1.3433-0.84,2.050003c-0.18,0.699997-0.27,1.449997-0.27,2.25H24.275101z M29.7146,37.719501c0-0.733402,0.1-1.463402,0.300001-2.190002c0.199999-0.733398,0.486599-1.443398,0.859999-2.129997c0.380001-0.686703,0.8333-1.333401,1.360001-1.940002h-4.1v-0.84h5.039999V31.3995c-0.593399,0.679998-1.083397,1.3533-1.469999,2.019999c-0.379999,0.66-0.66,1.3433-0.84,2.050003c-0.179998,0.699997-0.269999,1.449997-0.269999,2.25H29.7146z M36.391102,37.879501c-0.573402,0-1.070004-0.150002-1.490002-0.450001c-0.420002-0.299999-0.7467-0.7267-0.98-1.279999c-0.2267-0.553402-0.34-1.210003-0.34-1.970001c0-0.760002,0.1133-1.416702,0.34-1.970001c0.233299-0.559999,0.559998-0.99,0.98-1.289999c0.419998-0.3067,0.916599-0.460001,1.490002-0.460001c0.579998,0,1.079998,0.153301,1.5,0.460001c0.419998,0.299999,0.743298,0.726599,0.969997,1.280001c0.233299,0.553299,0.350002,1.213299,0.350002,1.98c0,0.759998-0.116703,1.416599-0.350002,1.970001c-0.2267,0.553299-0.549999,0.98-0.969997,1.279999C37.4711,37.7295,36.9711,37.879501,36.391102,37.879501z M36.391102,37.039501c0.613297,0,1.086597-0.2467,1.419998-0.740002c0.333302-0.5,0.5-1.206699,0.5-2.119999c0-0.6134-0.076698-1.1334-0.23-1.560001c-0.146702-0.433399-0.3634-0.759998-0.650002-0.98c-0.279999-0.2267-0.626698-0.34-1.039997-0.34c-0.4067,0-0.753403,0.1133-1.040001,0.34c-0.280003,0.220001-0.4967,0.5466-0.650002,0.98c-0.146698,0.426601-0.220001,0.946602-0.220001,1.560001c0,0.9133,0.166603,1.619999,0.5,2.119999C35.3144,36.792801,35.784401,37.039501,36.391102,37.039501z M41.5919,37.719501v-5.260002h-1.48v-0.74h0.599998c0.260002,0,0.466702-0.0334,0.620003-0.1c0.16-0.0667,0.2733-0.179998,0.34-0.34c0.0667-0.16,0.099998-0.379999,0.099998-0.66h0.68v7.100002H41.5919z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M22.746201,28.2803v-7.1h0.859999v7.1H22.746201z M27.744801,28.4403c-0.546701,0-1.023401-0.103399-1.43-0.309999c-0.4067-0.206701-0.73-0.49-0.969999-0.85c-0.2334-0.366699-0.370001-0.790001-0.410002-1.27l0.900002-0.059999c0.046598,0.3533,0.15,0.653299,0.309999,0.9c0.16,0.246601,0.373301,0.4333,0.639999,0.559999c0.2733,0.1266,0.6,0.190001,0.98,0.190001c0.333302,0,0.6166-0.0434,0.85-0.129999c0.233301-0.0867,0.41-0.2134,0.530001-0.380001c0.1266-0.1667,0.190001-0.369999,0.190001-0.609999c0-0.220001-0.0534-0.413401-0.16-0.580002c-0.1-0.173399-0.296701-0.33-0.59-0.469999c-0.286701-0.1467-0.7134-0.289999-1.280001-0.43c-0.5467-0.139999-0.9834-0.2934-1.309999-0.459999c-0.32-0.1667-0.5534-0.370001-0.700001-0.610001c-0.139999-0.24-0.209999-0.536699-0.209999-0.889999c0-0.4,0.0933-0.75,0.279999-1.050001c0.1933-0.3067,0.4666-0.5434,0.82-0.709999c0.3533-0.173401,0.7733-0.26,1.26-0.26c0.52,0,0.9666,0.1,1.34,0.299999c0.373301,0.1933,0.67,0.460001,0.890001,0.800001c0.219999,0.34,0.3566,0.726601,0.41,1.16L29.184799,23.3403c-0.039999-0.286699-0.1334-0.539999-0.279999-0.76c-0.140001-0.2267-0.333401-0.403399-0.58-0.529999c-0.2467-0.126701-0.546701-0.190001-0.9-0.190001c-0.440001,0-0.790001,0.1066-1.050001,0.32c-0.26,0.2066-0.389999,0.48-0.389999,0.82c0,0.220001,0.049999,0.403301,0.15,0.550001c0.1066,0.139999,0.293301,0.2666,0.559999,0.379999c0.2666,0.1066,0.650002,0.223301,1.150002,0.35c0.5933,0.146601,1.063299,0.323299,1.41,0.530001c0.3533,0.199999,0.6033,0.4333,0.75,0.699999c0.153299,0.2666,0.23,0.57,0.23,0.91c0,0.4133-0.106701,0.7733-0.32,1.08c-0.2134,0.300001-0.506701,0.5333-0.880001,0.700001C28.6614,28.3603,28.2314,28.4403,27.744801,28.4403z M34.471298,28.4403c-0.673397,0-1.253399-0.1467-1.739998-0.440001c-0.48-0.299999-0.85-0.7267-1.110001-1.279999c-0.26-0.5534-0.389999-1.2134-0.389999-1.980001c0-0.766699,0.129999-1.426699,0.389999-1.98c0.26-0.559999,0.630001-0.99,1.110001-1.289999c0.486599-0.300001,1.066601-0.450001,1.739998-0.450001c0.68,0,1.260002,0.15,1.740002,0.450001c0.486599,0.299999,0.860001,0.73,1.119999,1.289999c0.260002,0.553301,0.389999,1.213301,0.389999,1.98c0,0.766602-0.129997,1.426601-0.389999,1.980001c-0.259998,0.553299-0.6334,0.98-1.119999,1.279999C35.7313,28.2936,35.151299,28.4403,34.471298,28.4403z M34.471298,27.6003c0.493301,0,0.913303-0.1134,1.260002-0.34c0.353298-0.2267,0.623299-0.5534,0.810001-0.98c0.1866-0.426701,0.279999-0.940001,0.279999-1.540001c0-0.599998-0.093399-1.1134-0.279999-1.539999c-0.186703-0.433401-0.456703-0.763401-0.810001-0.99c-0.346699-0.2334-0.766701-0.35-1.260002-0.35c-0.486698,0-0.906696,0.1166-1.259998,0.35c-0.346699,0.226599-0.6134,0.556599-0.799999,0.99c-0.186699,0.4266-0.279999,0.940001-0.279999,1.539999c0,0.6,0.0933,1.1133,0.279999,1.540001c0.1866,0.4266,0.4533,0.7533,0.799999,0.98C33.564602,27.4869,33.9846,27.6003,34.471298,27.6003z"
|
||||
/>
|
||||
</svg>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1,31 +1,31 @@
|
||||
export function ISO42001(props: { className?: string }) {
|
||||
const { className } = props;
|
||||
const { className } = props;
|
||||
|
||||
return (
|
||||
<svg
|
||||
version="1.1"
|
||||
id="Layer_1"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlnsXlink="http://www.w3.org/1999/xlink"
|
||||
x="0px"
|
||||
y="0px"
|
||||
viewBox="0 0 60 60"
|
||||
enable-background="new 0 0 60 60"
|
||||
xmlSpace="preserve"
|
||||
className={className}
|
||||
>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M30,2c15.464001,0,28,12.536,28,28c0,15.296902-12.266701,27.726398-27.5,27.993198V58h-1v-0.006802C14.2667,57.726398,2,45.296902,2,30C2,14.536,14.536,2,30,2z M30.5,19h-1V3.02148c-3.155199,0.25567-6.2307,2.92246-8.6094,7.63082C19.6922,13.0247,18.707899,15.8514,18.0117,19h-1.0224c1.517601-7.0244,4.4443-12.57117,8.077101-15.24805C16.1075,6.51958,9.20285,16.6488,8.91211,29.1768H11v1H8.9043c0.063661,12.824699,7.0498,23.2551,16.162102,26.070301C21.2631,53.444302,18.235001,47.495998,16.7861,40h1.017599c0.701601,3.5513,1.762901,6.726898,3.086901,9.347698c2.3787,4.708302,5.454201,7.374104,8.6094,7.629803V40h1v16.977501c3.1553-0.2556,6.231701-2.921501,8.610401-7.629803C40.434299,46.726898,41.4949,43.551201,42.196301,40h1.017601c-1.448902,7.496101-4.477001,13.444302-8.2803,16.247101c9.112198-2.815399,16.0994-13.245899,16.163097-26.070301H49v-1h2.087898C50.7971,16.649099,43.8923,6.51979,34.933601,3.75195C38.566399,6.42882,41.493099,11.9756,43.0107,19h-1.0224c-0.695999-3.1486-1.679501-5.9754-2.877899-8.3477C36.731701,5.94392,33.6553,3.27713,30.5,3.02148V19z M3.00195,30.1768C3.07554,41.655201,10.3111,51.431702,20.4648,55.265598C13.0733,50.7789,7.95827,41.238899,7.9043,30.1768H3.00195z M52.091801,30.7227c-0.216499,10.8304-5.2887,20.130701-12.559601,24.542898C49.687302,51.4324,56.9244,41.656101,56.998001,30.1768h-4.901302L52.091801,30.7227z M20.4648,4.7334C10.5021,8.49507,3.34904,17.9786,3.01367,29.1768h4.89844C8.15792,18.3901,13.2175,9.13233,20.4648,4.7334z M39.535198,4.73438c7.247101,4.39911,12.3069,13.656119,12.5527,24.442421h4.898403C56.651001,17.978701,49.4977,8.49613,39.535198,4.73438z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M19.237101,37.719501v-1.540001H15.6271v-0.779999l3.549999-4.780003h0.92V35.3395H20.9771v0.84h-0.880001v1.540001H19.237101z M16.667101,35.3395h2.57v-3.4L16.667101,35.3395z M22.0795,37.719501c0-0.5,0.0767-0.950001,0.23-1.350002c0.16-0.4067,0.436701-0.7934,0.83-1.16c0.4-0.366699,0.9533-0.736698,1.66-1.110001c0.3267-0.173397,0.59-0.333397,0.790001-0.48c0.199999-0.146698,0.346699-0.303398,0.439999-0.469997c0.093302-0.166702,0.140001-0.370003,0.140001-0.610001c0-0.2467-0.053301-0.460003-0.16-0.640001c-0.106701-0.186701-0.266701-0.333401-0.480001-0.440001c-0.206699-0.106699-0.4667-0.16-0.779999-0.16c-0.5,0-0.8967,0.130001-1.190001,0.390001C23.2728,31.949499,23.0928,32.3195,23.019501,32.7995l-0.900002-0.060001c0.08-0.693398,0.346701-1.246698,0.800001-1.659998c0.4533-0.413401,1.063299-0.620001,1.83-0.620001c0.4867,0,0.903299,0.086601,1.25,0.26c0.346701,0.1733,0.610001,0.416601,0.789999,0.73C26.9762,31.7561,27.0695,32.112801,27.0695,32.519501c0,0.360001-0.059999,0.673298-0.18,0.939999c-0.119999,0.260002-0.323299,0.5033-0.610001,0.73c-0.279999,0.226601-0.666698,0.470001-1.16,0.73c-0.639999,0.34-1.126699,0.6833-1.459999,1.030003c-0.3267,0.3466-0.5,0.656597-0.52,0.93h3.93v0.84H22.0795z M30.8832,37.879501c-0.573299,0-1.07-0.150002-1.49-0.450001s-0.746599-0.7267-0.98-1.279999c-0.226601-0.553402-0.34-1.210003-0.34-1.970001c0-0.760002,0.1134-1.416702,0.34-1.970001c0.2334-0.559999,0.559999-0.99,0.98-1.289999c0.42-0.3067,0.9167-0.460001,1.49-0.460001c0.58,0,1.08,0.153301,1.500002,0.460001c0.419998,0.299999,0.743397,0.726599,0.969997,1.280001c0.233402,0.553299,0.350002,1.213299,0.350002,1.98c0,0.759998-0.1166,1.416599-0.350002,1.970001c-0.226601,0.553299-0.549999,0.98-0.969997,1.279999C31.9632,37.7295,31.4632,37.879501,30.8832,37.879501z M30.8832,37.039501c0.6134,0,1.0867-0.2467,1.42-0.740002c0.333401-0.5,0.5-1.206699,0.5-2.119999c0-0.6134-0.076599-1.1334-0.23-1.560001c-0.146599-0.433399-0.3633-0.759998-0.65-0.98c-0.280001-0.2267-0.6266-0.34-1.040001-0.34c-0.406599,0-0.7533,0.1133-1.039999,0.34c-0.280001,0.220001-0.496601,0.5466-0.650002,0.98C29.0466,33.046101,28.9732,33.566101,28.9732,34.179501c0,0.9133,0.1667,1.619999,0.5,2.119999C29.806601,36.792801,30.2766,37.039501,30.8832,37.039501z M37.514099,37.879501c-0.573299,0-1.07-0.150002-1.489998-0.450001c-0.420002-0.299999-0.7467-0.7267-0.98-1.279999c-0.2267-0.553402-0.34-1.210003-0.34-1.970001c0-0.760002,0.1133-1.416702,0.34-1.970001c0.233299-0.559999,0.559998-0.99,0.98-1.289999c0.419998-0.3067,0.916698-0.460001,1.489998-0.460001c0.580002,0,1.080002,0.153301,1.5,0.460001c0.420002,0.299999,0.743301,0.726599,0.970001,1.280001c0.233299,0.553299,0.349998,1.213299,0.349998,1.98c0,0.759998-0.116699,1.416599-0.349998,1.970001c-0.2267,0.553299-0.549999,0.98-0.970001,1.279999C38.594101,37.7295,38.094101,37.879501,37.514099,37.879501zM37.514099,37.039501c0.6133,0,1.0867-0.2467,1.420002-0.740002c0.333298-0.5,0.5-1.206699,0.5-2.119999c0-0.6134-0.076702-1.1334-0.23-1.560001c-0.146702-0.433399-0.3633-0.759998-0.650002-0.98c-0.279999-0.2267-0.626701-0.34-1.040001-0.34c-0.4067,0-0.7533,0.1133-1.040001,0.34c-0.279999,0.220001-0.496696,0.5466-0.649998,0.98c-0.146702,0.426601-0.220001,0.946602-0.220001,1.560001c0,0.9133,0.166702,1.619999,0.5,2.119999C36.437401,36.792801,36.907398,37.039501,37.514099,37.039501z M42.715,37.719501v-5.260002h-1.48v-0.74h0.599998c0.260002,0,0.466602-0.0334,0.620003-0.1c0.16-0.0667,0.273296-0.179998,0.339996-0.34c0.066601-0.16,0.100002-0.379999,0.100002-0.66h0.68v7.100002H42.715z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M22.746201,28.2803v-7.1h0.859999v7.1H22.746201z M27.744801,28.4403c-0.546701,0-1.023401-0.103399-1.43-0.309999c-0.4067-0.206701-0.73-0.49-0.969999-0.85c-0.2334-0.366699-0.370001-0.790001-0.410002-1.27l0.900002-0.059999c0.046598,0.3533,0.15,0.653299,0.309999,0.9c0.16,0.246601,0.373301,0.4333,0.639999,0.559999c0.2733,0.1266,0.6,0.190001,0.98,0.190001c0.333302,0,0.6166-0.0434,0.85-0.129999c0.233301-0.0867,0.41-0.2134,0.530001-0.380001c0.1266-0.1667,0.190001-0.369999,0.190001-0.609999c0-0.220001-0.0534-0.413401-0.16-0.580002c-0.1-0.173399-0.296701-0.33-0.59-0.469999c-0.286701-0.1467-0.7134-0.289999-1.280001-0.43c-0.5467-0.139999-0.9834-0.2934-1.309999-0.459999c-0.32-0.1667-0.5534-0.370001-0.700001-0.610001c-0.139999-0.24-0.209999-0.536699-0.209999-0.889999c0-0.4,0.0933-0.75,0.279999-1.050001c0.1933-0.3067,0.4666-0.5434,0.82-0.709999c0.3533-0.173401,0.7733-0.26,1.26-0.26c0.52,0,0.9666,0.1,1.34,0.299999c0.373301,0.1933,0.67,0.460001,0.890001,0.800001c0.219999,0.34,0.3566,0.726601,0.41,1.16L29.184799,23.3403c-0.039999-0.286699-0.1334-0.539999-0.279999-0.76c-0.140001-0.2267-0.333401-0.403399-0.58-0.529999c-0.2467-0.126701-0.546701-0.190001-0.9-0.190001c-0.440001,0-0.790001,0.1066-1.050001,0.32c-0.26,0.2066-0.389999,0.48-0.389999,0.82c0,0.220001,0.049999,0.403301,0.15,0.550001c0.1066,0.139999,0.293301,0.2666,0.559999,0.379999c0.2666,0.1066,0.650002,0.223301,1.150002,0.35c0.5933,0.146601,1.063299,0.323299,1.41,0.530001c0.3533,0.199999,0.6033,0.4333,0.75,0.699999c0.153299,0.2666,0.23,0.57,0.23,0.91c0,0.4133-0.106701,0.7733-0.32,1.08c-0.2134,0.300001-0.506701,0.5333-0.880001,0.700001C28.6614,28.3603,28.2314,28.4403,27.744801,28.4403z M34.471298,28.4403c-0.673397,0-1.253399-0.1467-1.739998-0.440001c-0.48-0.299999-0.85-0.7267-1.110001-1.279999c-0.26-0.5534-0.389999-1.2134-0.389999-1.980001c0-0.766699,0.129999-1.426699,0.389999-1.98c0.26-0.559999,0.630001-0.99,1.110001-1.289999c0.486599-0.300001,1.066601-0.450001,1.739998-0.450001c0.68,0,1.260002,0.15,1.740002,0.450001c0.486599,0.299999,0.860001,0.73,1.119999,1.289999c0.260002,0.553301,0.389999,1.213301,0.389999,1.98c0,0.766602-0.129997,1.426601-0.389999,1.980001c-0.259998,0.553299-0.6334,0.98-1.119999,1.279999C35.7313,28.2936,35.151299,28.4403,34.471298,28.4403z M34.471298,27.6003c0.493301,0,0.913303-0.1134,1.260002-0.34c0.353298-0.2267,0.623299-0.5534,0.810001-0.98c0.1866-0.426701,0.279999-0.940001,0.279999-1.540001c0-0.599998-0.093399-1.1134-0.279999-1.539999c-0.186703-0.433401-0.456703-0.763401-0.810001-0.99c-0.346699-0.2334-0.766701-0.35-1.260002-0.35c-0.486698,0-0.906696,0.1166-1.259998,0.35c-0.346699,0.226599-0.6134,0.556599-0.799999,0.99c-0.186699,0.4266-0.279999,0.940001-0.279999,1.539999c0,0.6,0.0933,1.1133,0.279999,1.540001c0.1866,0.4266,0.4533,0.7533,0.799999,0.98C33.564602,27.4869,33.9846,27.6003,34.471298,27.6003z"
|
||||
/>
|
||||
</svg>
|
||||
);
|
||||
return (
|
||||
<svg
|
||||
version="1.1"
|
||||
id="Layer_1"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlnsXlink="http://www.w3.org/1999/xlink"
|
||||
x="0px"
|
||||
y="0px"
|
||||
viewBox="0 0 60 60"
|
||||
enable-background="new 0 0 60 60"
|
||||
xmlSpace="preserve"
|
||||
className={className}
|
||||
>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M30,2c15.464001,0,28,12.536,28,28c0,15.296902-12.266701,27.726398-27.5,27.993198V58h-1v-0.006802C14.2667,57.726398,2,45.296902,2,30C2,14.536,14.536,2,30,2z M30.5,19h-1V3.02148c-3.155199,0.25567-6.2307,2.92246-8.6094,7.63082C19.6922,13.0247,18.707899,15.8514,18.0117,19h-1.0224c1.517601-7.0244,4.4443-12.57117,8.077101-15.24805C16.1075,6.51958,9.20285,16.6488,8.91211,29.1768H11v1H8.9043c0.063661,12.824699,7.0498,23.2551,16.162102,26.070301C21.2631,53.444302,18.235001,47.495998,16.7861,40h1.017599c0.701601,3.5513,1.762901,6.726898,3.086901,9.347698c2.3787,4.708302,5.454201,7.374104,8.6094,7.629803V40h1v16.977501c3.1553-0.2556,6.231701-2.921501,8.610401-7.629803C40.434299,46.726898,41.4949,43.551201,42.196301,40h1.017601c-1.448902,7.496101-4.477001,13.444302-8.2803,16.247101c9.112198-2.815399,16.0994-13.245899,16.163097-26.070301H49v-1h2.087898C50.7971,16.649099,43.8923,6.51979,34.933601,3.75195C38.566399,6.42882,41.493099,11.9756,43.0107,19h-1.0224c-0.695999-3.1486-1.679501-5.9754-2.877899-8.3477C36.731701,5.94392,33.6553,3.27713,30.5,3.02148V19z M3.00195,30.1768C3.07554,41.655201,10.3111,51.431702,20.4648,55.265598C13.0733,50.7789,7.95827,41.238899,7.9043,30.1768H3.00195z M52.091801,30.7227c-0.216499,10.8304-5.2887,20.130701-12.559601,24.542898C49.687302,51.4324,56.9244,41.656101,56.998001,30.1768h-4.901302L52.091801,30.7227z M20.4648,4.7334C10.5021,8.49507,3.34904,17.9786,3.01367,29.1768h4.89844C8.15792,18.3901,13.2175,9.13233,20.4648,4.7334z M39.535198,4.73438c7.247101,4.39911,12.3069,13.656119,12.5527,24.442421h4.898403C56.651001,17.978701,49.4977,8.49613,39.535198,4.73438z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M19.237101,37.719501v-1.540001H15.6271v-0.779999l3.549999-4.780003h0.92V35.3395H20.9771v0.84h-0.880001v1.540001H19.237101z M16.667101,35.3395h2.57v-3.4L16.667101,35.3395z M22.0795,37.719501c0-0.5,0.0767-0.950001,0.23-1.350002c0.16-0.4067,0.436701-0.7934,0.83-1.16c0.4-0.366699,0.9533-0.736698,1.66-1.110001c0.3267-0.173397,0.59-0.333397,0.790001-0.48c0.199999-0.146698,0.346699-0.303398,0.439999-0.469997c0.093302-0.166702,0.140001-0.370003,0.140001-0.610001c0-0.2467-0.053301-0.460003-0.16-0.640001c-0.106701-0.186701-0.266701-0.333401-0.480001-0.440001c-0.206699-0.106699-0.4667-0.16-0.779999-0.16c-0.5,0-0.8967,0.130001-1.190001,0.390001C23.2728,31.949499,23.0928,32.3195,23.019501,32.7995l-0.900002-0.060001c0.08-0.693398,0.346701-1.246698,0.800001-1.659998c0.4533-0.413401,1.063299-0.620001,1.83-0.620001c0.4867,0,0.903299,0.086601,1.25,0.26c0.346701,0.1733,0.610001,0.416601,0.789999,0.73C26.9762,31.7561,27.0695,32.112801,27.0695,32.519501c0,0.360001-0.059999,0.673298-0.18,0.939999c-0.119999,0.260002-0.323299,0.5033-0.610001,0.73c-0.279999,0.226601-0.666698,0.470001-1.16,0.73c-0.639999,0.34-1.126699,0.6833-1.459999,1.030003c-0.3267,0.3466-0.5,0.656597-0.52,0.93h3.93v0.84H22.0795z M30.8832,37.879501c-0.573299,0-1.07-0.150002-1.49-0.450001s-0.746599-0.7267-0.98-1.279999c-0.226601-0.553402-0.34-1.210003-0.34-1.970001c0-0.760002,0.1134-1.416702,0.34-1.970001c0.2334-0.559999,0.559999-0.99,0.98-1.289999c0.42-0.3067,0.9167-0.460001,1.49-0.460001c0.58,0,1.08,0.153301,1.500002,0.460001c0.419998,0.299999,0.743397,0.726599,0.969997,1.280001c0.233402,0.553299,0.350002,1.213299,0.350002,1.98c0,0.759998-0.1166,1.416599-0.350002,1.970001c-0.226601,0.553299-0.549999,0.98-0.969997,1.279999C31.9632,37.7295,31.4632,37.879501,30.8832,37.879501z M30.8832,37.039501c0.6134,0,1.0867-0.2467,1.42-0.740002c0.333401-0.5,0.5-1.206699,0.5-2.119999c0-0.6134-0.076599-1.1334-0.23-1.560001c-0.146599-0.433399-0.3633-0.759998-0.65-0.98c-0.280001-0.2267-0.6266-0.34-1.040001-0.34c-0.406599,0-0.7533,0.1133-1.039999,0.34c-0.280001,0.220001-0.496601,0.5466-0.650002,0.98C29.0466,33.046101,28.9732,33.566101,28.9732,34.179501c0,0.9133,0.1667,1.619999,0.5,2.119999C29.806601,36.792801,30.2766,37.039501,30.8832,37.039501z M37.514099,37.879501c-0.573299,0-1.07-0.150002-1.489998-0.450001c-0.420002-0.299999-0.7467-0.7267-0.98-1.279999c-0.2267-0.553402-0.34-1.210003-0.34-1.970001c0-0.760002,0.1133-1.416702,0.34-1.970001c0.233299-0.559999,0.559998-0.99,0.98-1.289999c0.419998-0.3067,0.916698-0.460001,1.489998-0.460001c0.580002,0,1.080002,0.153301,1.5,0.460001c0.420002,0.299999,0.743301,0.726599,0.970001,1.280001c0.233299,0.553299,0.349998,1.213299,0.349998,1.98c0,0.759998-0.116699,1.416599-0.349998,1.970001c-0.2267,0.553299-0.549999,0.98-0.970001,1.279999C38.594101,37.7295,38.094101,37.879501,37.514099,37.879501zM37.514099,37.039501c0.6133,0,1.0867-0.2467,1.420002-0.740002c0.333298-0.5,0.5-1.206699,0.5-2.119999c0-0.6134-0.076702-1.1334-0.23-1.560001c-0.146702-0.433399-0.3633-0.759998-0.650002-0.98c-0.279999-0.2267-0.626701-0.34-1.040001-0.34c-0.4067,0-0.7533,0.1133-1.040001,0.34c-0.279999,0.220001-0.496696,0.5466-0.649998,0.98c-0.146702,0.426601-0.220001,0.946602-0.220001,1.560001c0,0.9133,0.166702,1.619999,0.5,2.119999C36.437401,36.792801,36.907398,37.039501,37.514099,37.039501z M42.715,37.719501v-5.260002h-1.48v-0.74h0.599998c0.260002,0,0.466602-0.0334,0.620003-0.1c0.16-0.0667,0.273296-0.179998,0.339996-0.34c0.066601-0.16,0.100002-0.379999,0.100002-0.66h0.68v7.100002H42.715z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M22.746201,28.2803v-7.1h0.859999v7.1H22.746201z M27.744801,28.4403c-0.546701,0-1.023401-0.103399-1.43-0.309999c-0.4067-0.206701-0.73-0.49-0.969999-0.85c-0.2334-0.366699-0.370001-0.790001-0.410002-1.27l0.900002-0.059999c0.046598,0.3533,0.15,0.653299,0.309999,0.9c0.16,0.246601,0.373301,0.4333,0.639999,0.559999c0.2733,0.1266,0.6,0.190001,0.98,0.190001c0.333302,0,0.6166-0.0434,0.85-0.129999c0.233301-0.0867,0.41-0.2134,0.530001-0.380001c0.1266-0.1667,0.190001-0.369999,0.190001-0.609999c0-0.220001-0.0534-0.413401-0.16-0.580002c-0.1-0.173399-0.296701-0.33-0.59-0.469999c-0.286701-0.1467-0.7134-0.289999-1.280001-0.43c-0.5467-0.139999-0.9834-0.2934-1.309999-0.459999c-0.32-0.1667-0.5534-0.370001-0.700001-0.610001c-0.139999-0.24-0.209999-0.536699-0.209999-0.889999c0-0.4,0.0933-0.75,0.279999-1.050001c0.1933-0.3067,0.4666-0.5434,0.82-0.709999c0.3533-0.173401,0.7733-0.26,1.26-0.26c0.52,0,0.9666,0.1,1.34,0.299999c0.373301,0.1933,0.67,0.460001,0.890001,0.800001c0.219999,0.34,0.3566,0.726601,0.41,1.16L29.184799,23.3403c-0.039999-0.286699-0.1334-0.539999-0.279999-0.76c-0.140001-0.2267-0.333401-0.403399-0.58-0.529999c-0.2467-0.126701-0.546701-0.190001-0.9-0.190001c-0.440001,0-0.790001,0.1066-1.050001,0.32c-0.26,0.2066-0.389999,0.48-0.389999,0.82c0,0.220001,0.049999,0.403301,0.15,0.550001c0.1066,0.139999,0.293301,0.2666,0.559999,0.379999c0.2666,0.1066,0.650002,0.223301,1.150002,0.35c0.5933,0.146601,1.063299,0.323299,1.41,0.530001c0.3533,0.199999,0.6033,0.4333,0.75,0.699999c0.153299,0.2666,0.23,0.57,0.23,0.91c0,0.4133-0.106701,0.7733-0.32,1.08c-0.2134,0.300001-0.506701,0.5333-0.880001,0.700001C28.6614,28.3603,28.2314,28.4403,27.744801,28.4403z M34.471298,28.4403c-0.673397,0-1.253399-0.1467-1.739998-0.440001c-0.48-0.299999-0.85-0.7267-1.110001-1.279999c-0.26-0.5534-0.389999-1.2134-0.389999-1.980001c0-0.766699,0.129999-1.426699,0.389999-1.98c0.26-0.559999,0.630001-0.99,1.110001-1.289999c0.486599-0.300001,1.066601-0.450001,1.739998-0.450001c0.68,0,1.260002,0.15,1.740002,0.450001c0.486599,0.299999,0.860001,0.73,1.119999,1.289999c0.260002,0.553301,0.389999,1.213301,0.389999,1.98c0,0.766602-0.129997,1.426601-0.389999,1.980001c-0.259998,0.553299-0.6334,0.98-1.119999,1.279999C35.7313,28.2936,35.151299,28.4403,34.471298,28.4403z M34.471298,27.6003c0.493301,0,0.913303-0.1134,1.260002-0.34c0.353298-0.2267,0.623299-0.5534,0.810001-0.98c0.1866-0.426701,0.279999-0.940001,0.279999-1.540001c0-0.599998-0.093399-1.1134-0.279999-1.539999c-0.186703-0.433401-0.456703-0.763401-0.810001-0.99c-0.346699-0.2334-0.766701-0.35-1.260002-0.35c-0.486698,0-0.906696,0.1166-1.259998,0.35c-0.346699,0.226599-0.6134,0.556599-0.799999,0.99c-0.186699,0.4266-0.279999,0.940001-0.279999,1.539999c0,0.6,0.0933,1.1133,0.279999,1.540001c0.1866,0.4266,0.4533,0.7533,0.799999,0.98C33.564602,27.4869,33.9846,27.6003,34.471298,27.6003z"
|
||||
/>
|
||||
</svg>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1,77 +1,77 @@
|
||||
export function NIS2(props: { className?: string }) {
|
||||
const { className } = props;
|
||||
const { className } = props;
|
||||
|
||||
return (
|
||||
<svg
|
||||
className={className}
|
||||
version="1.1"
|
||||
id="Layer_1"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlnsXlink="http://www.w3.org/1999/xlink"
|
||||
x="0px"
|
||||
y="0px"
|
||||
viewBox="0 0 60 60"
|
||||
enable-background="new 0 0 60 60"
|
||||
xmlSpace="preserve"
|
||||
>
|
||||
<path
|
||||
className="fill-none stroke-txt-primary"
|
||||
d="M53.749001,16.288099v27.4228L30,57.422897L6.25098,43.710899v-27.4228L30,2.576169L53.749001,16.288099z"
|
||||
/>
|
||||
<g>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M29.909,9.4694c0.0355-0.07827,0.1467-0.07827,0.1821,0l0.3678,0.8111c0.014601,0.0321,0.045,0.0542,0.08,0.0581L31.424,10.4378c0.0854,0.0095,0.119699,0.1152,0.056299,0.1732l-0.657801,0.6004c-0.025999,0.0238-0.0376,0.0595-0.0305,0.094l0.179199,0.8724c0.0173,0.0842-0.072701,0.1495-0.1474,0.1071l-0.7743-0.44c-0.030701-0.0175-0.068199-0.0175-0.098801,0l-0.774401,0.44c-0.074699,0.0424-0.1646-0.0229-0.147301-0.1071l0.179199-0.8724c0.007099-0.0345-0.004499-0.0702-0.0305-0.094l-0.657801-0.6004c-0.063499-0.058-0.0291-0.1637,0.056299-0.1732l0.885099-0.0992c0.035-0.0039,0.0653-0.026,0.079901-0.0581L29.909,9.4694z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M29.909,47.680504c0.0355-0.07827,0.1467-0.07827,0.1821,0l0.3678,0.8111c0.014601,0.032101,0.045,0.054203,0.08,0.058102L31.424,48.648907c0.0854,0.009499,0.119699,0.1152,0.056299,0.173199l-0.657801,0.600399c-0.025999,0.0238-0.0376,0.059502-0.0305,0.094002l0.179199,0.872398c0.0173,0.084202-0.072701,0.149502-0.1474,0.107101l-0.7743-0.440002c-0.030701-0.017498-0.068199-0.017498-0.098801,0l-0.774401,0.440002c-0.074699,0.0424-0.1646-0.0229-0.147301-0.107101l0.179199-0.872398c0.007099-0.0345-0.004499-0.070202-0.0305-0.094002l-0.657801-0.600399c-0.063499-0.057999-0.0291-0.1637,0.056299-0.173199l0.885099-0.099201c0.035-0.003899,0.0653-0.026001,0.079901-0.058102L29.909,47.680504z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M19.755541,12.55737c-0.008392-0.085533,0.087912-0.141133,0.157703-0.09105l0.724073,0.518534c0.028694,0.020499,0.066072,0.024439,0.098331,0.010316l0.81612-0.35664c0.078707-0.034472,0.161263,0.039917,0.135355,0.121846l-0.269472,0.848862c-0.010614,0.03361-0.002811,0.070328,0.020586,0.096657l0.591393,0.665921c0.057081,0.064269,0.011789,0.16582-0.074102,0.166451l-0.890564,0.006099c-0.035337,0.000196-0.067812,0.018945-0.085564,0.0494l-0.450651,0.768251c-0.043491,0.074069-0.153997,0.062469-0.181116-0.0191l-0.281008-0.84512c-0.011103-0.033428-0.038998-0.058546-0.073414-0.066156l-0.869873-0.191061c-0.083992-0.018479-0.107052-0.127218-0.037844-0.178145l0.716919-0.528461c0.02836-0.020877,0.043552-0.055166,0.040146-0.090266L19.755541,12.55737z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M12.506371,20.308361c-0.050034-0.069878,0.005567-0.166182,0.09105-0.157703l0.886333,0.087027c0.0351,0.003405,0.069439-0.011871,0.090316-0.040232l0.528461-0.716919c0.050927-0.069208,0.159616-0.046062,0.178145,0.037844l0.191061,0.869871c0.007611,0.034416,0.032728,0.062311,0.066156,0.073414l0.84512,0.28101c0.081569,0.027117,0.09312,0.137711,0.019051,0.181202l-0.768201,0.450563c-0.030505,0.017838-0.049254,0.050312-0.0494,0.085564l-0.006149,0.89065c-0.00063,0.085892-0.102132,0.131098-0.166401,0.074017l-0.665921-0.591391c-0.026329-0.023399-0.063046-0.031204-0.096657-0.020586l-0.848862,0.269472c-0.081979,0.025991-0.156319-0.056648-0.121846-0.135357l0.35664-0.816118c0.014123-0.032261,0.010134-0.069551-0.010365-0.098246L12.506371,20.308361z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M10.103903,30.6455c-0.07827-0.0355-0.07827-0.1467,0-0.1821l0.8111-0.3678c0.0321-0.014601,0.0542-0.045,0.0581-0.08l0.0992-0.885099c0.0095-0.0854,0.1152-0.119699,0.1732-0.056299l0.6004,0.657801c0.0238,0.025999,0.0595,0.0376,0.094,0.0305l0.8724-0.179199c0.0842-0.0173,0.1495,0.072701,0.1071,0.1474l-0.44,0.7743c-0.0175,0.030701-0.0175,0.068199,0,0.098801l0.44,0.774401c0.0424,0.074699-0.0229,0.1646-0.1071,0.147301l-0.8724-0.179199c-0.0345-0.007099-0.0702,0.004499-0.094,0.0305l-0.6004,0.657801c-0.058,0.063499-0.1637,0.029099-0.1732-0.056299l-0.0992-0.885099c-0.0039-0.035-0.026-0.0653-0.0581-0.079901L10.103903,30.6455z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M13.191873,40.798962c-0.085533,0.008389-0.141133-0.087914-0.09105-0.157707l0.518534-0.724072c0.020499-0.028694,0.024439-0.066071,0.010316-0.098331l-0.35664-0.81612c-0.034472-0.078709,0.039917-0.161263,0.121846-0.135357l0.848862,0.269474c0.03361,0.010616,0.070328,0.002811,0.096657-0.020588l0.665921-0.591389c0.064269-0.057083,0.16582-0.011791,0.166451,0.0741l0.006099,0.890564c0.000196,0.035336,0.018945,0.06781,0.0494,0.085564l0.768251,0.450649c0.074071,0.043491,0.062469,0.153999-0.0191,0.181118l-0.84512,0.28101c-0.033428,0.011101-0.058546,0.038994-0.066156,0.073414l-0.191061,0.869869c-0.018479,0.083992-0.127218,0.107052-0.178145,0.037846l-0.528461-0.716919c-0.020877-0.028362-0.055166-0.043552-0.090266-0.040146L13.191873,40.798962z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M20.942863,48.04813c-0.069878,0.050034-0.166182-0.005569-0.157703-0.091053l0.087027-0.886333c0.003405-0.035099-0.011871-0.069435-0.040232-0.090313l-0.716919-0.528461c-0.069208-0.050926-0.046062-0.159615,0.037844-0.178143l0.869871-0.191063c0.034416-0.00761,0.062311-0.03273,0.073414-0.066154l0.28101-0.845123c0.027117-0.081566,0.137711-0.093121,0.181202-0.019051l0.450563,0.7682c0.017838,0.030506,0.050312,0.049255,0.085564,0.0494l0.89065,0.006153c0.085892,0.000629,0.131098,0.102131,0.074017,0.166401l-0.591391,0.66592c-0.023399,0.026329-0.031204,0.063046-0.020586,0.096657l0.269472,0.848862c0.025991,0.081978-0.056648,0.156319-0.135357,0.121845l-0.816118-0.35664c-0.032261-0.014122-0.069551-0.010132-0.098246,0.010365L20.942863,48.04813z"
|
||||
/>
|
||||
</g>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M40.157589,13.443707c-0.003407,0.0351,0.011784,0.069389,0.040146,0.090266l0.716919,0.52846c0.069206,0.050927,0.046146,0.159666-0.037846,0.178145l-0.869869,0.191061c-0.03442,0.00761-0.062313,0.032728-0.073414,0.066156l-0.28101,0.84512c-0.027119,0.081569-0.137627,0.093169-0.181118,0.0191l-0.450649-0.768251c-0.017754-0.030456-0.050228-0.049205-0.085564-0.0494l-0.890564-0.006099c-0.085892-0.00063-0.131184-0.102181-0.0741-0.166451l0.591389-0.665921c0.023399-0.026329,0.031204-0.063046,0.020588-0.096657l-0.269474-0.848862c-0.025906-0.081929,0.056648-0.156319,0.135357-0.121846l0.81612,0.35664c0.032261,0.014123,0.069637,0.010183,0.098331-0.010316l0.724072-0.518534c0.069794-0.050083,0.166096,0.005517,0.157703,0.09105L40.157589,13.443707z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M46.975246,21.032442c-0.020496,0.028694-0.024487,0.065985-0.010365,0.098246l0.35664,0.816118c0.034473,0.078709-0.039867,0.161348-0.121845,0.135357l-0.848862-0.269472c-0.033611-0.010618-0.070328-0.002813-0.096657,0.020586l-0.66592,0.591391c-0.06427,0.057081-0.165771,0.011875-0.166405-0.074017l-0.006149-0.89065c-0.000145-0.035252-0.018894-0.067726-0.0494-0.085564l-0.7682-0.450563c-0.07407-0.043491-0.062519-0.154085,0.019051-0.181202l0.845123-0.28101c0.033424-0.011103,0.058544-0.038998,0.066154-0.073414l0.191063-0.869871c0.018528-0.083906,0.127216-0.107052,0.178143-0.037844l0.528461,0.716919c0.020878,0.02836,0.055214,0.043636,0.090313,0.040232l0.886333-0.087027c0.085484-0.008478,0.141087,0.087826,0.091053,0.157703L46.975246,21.032442z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M49.085144,31.013308c-0.032097,0.014601-0.054199,0.044901-0.058098,0.079901l-0.099201,0.885099c-0.009499,0.085398-0.1152,0.119799-0.173199,0.056299l-0.600399-0.657801c-0.0238-0.026001-0.059502-0.0376-0.094002-0.0305l-0.872398,0.179199c-0.084202,0.0173-0.149502-0.072601-0.107101-0.147301l0.439999-0.774401c0.017502-0.030602,0.017502-0.0681,0-0.098801l-0.439999-0.7743c-0.0424-0.074699,0.0229-0.1647,0.107101-0.1474l0.872398,0.179199c0.0345,0.007099,0.070202-0.004501,0.094002-0.0305l0.600399-0.657801c0.057999-0.0634,0.1637-0.0291,0.173199,0.056299l0.099201,0.885099c0.003899,0.035,0.026001,0.065399,0.058098,0.08l0.8111,0.3678c0.07827,0.0354,0.07827,0.146601,0,0.1821L49.085144,31.013308z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M45.92194,40.711941c-0.035099-0.003407-0.069389,0.011784-0.090267,0.040146l-0.528461,0.716919c-0.050926,0.069206-0.159664,0.046146-0.178143-0.037846l-0.191063-0.869869c-0.00761-0.03442-0.032726-0.062313-0.066154-0.073414l-0.845119-0.28101c-0.08157-0.027119-0.09317-0.137627-0.019104-0.181118l0.768253-0.450649c0.030457-0.017754,0.049206-0.050228,0.0494-0.085564l0.0061-0.890564c0.000629-0.085892,0.10218-0.131184,0.166451-0.0741l0.66592,0.591389c0.026329,0.023399,0.063046,0.031204,0.096657,0.020588l0.848862-0.269474c0.081928-0.025906,0.156319,0.056648,0.121845,0.135357l-0.35664,0.81612c-0.014122,0.032261-0.010181,0.069637,0.010315,0.098331l0.518536,0.724072c0.050083,0.069794-0.005516,0.166096-0.091049,0.157707L45.92194,40.711941z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M38.333206,47.529598c-0.028694-0.020496-0.065987-0.024487-0.098248-0.010365l-0.81612,0.35664c-0.078705,0.034473-0.161346-0.039867-0.135353-0.121845l0.26947-0.848862c0.010616-0.033611,0.002811-0.070328-0.020584-0.096657l-0.591393-0.66592c-0.057083-0.06427-0.011875-0.165771,0.074017-0.166401l0.890652-0.006153c0.035252-0.000145,0.067726-0.018894,0.085564-0.0494l0.450562-0.7682c0.043491-0.07407,0.154083-0.062515,0.181202,0.019051l0.28101,0.845123c0.011101,0.033424,0.038998,0.058544,0.073414,0.066154l0.869873,0.191063c0.083904,0.018528,0.107052,0.127216,0.037842,0.178143l-0.716919,0.528461c-0.028358,0.020878-0.043636,0.055214-0.04023,0.090313l0.087025,0.886333c0.008476,0.085484-0.087826,0.141087-0.157703,0.091053L38.333206,47.529598z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M18.9786,33.5v-7.1h1.219999l3.51,6.24V26.4H24.5686v7.1h-1.280001l-3.450001-6.119999V33.5H18.9786zM26.214899,33.5v-7.1H27.0749v7.1H26.214899z M31.213499,33.66c-0.5467,0-1.0233-0.103298-1.43-0.310001s-0.73-0.490002-0.969999-0.849998c-0.233299-0.366699-0.370001-0.790001-0.41-1.27l0.9-0.059999c0.0467,0.3533,0.15,0.653299,0.309999,0.9s0.373301,0.4333,0.639999,0.560001c0.2733,0.126701,0.6,0.189999,0.98,0.189999c0.3333,0,0.616699-0.043301,0.849998-0.130001s0.41-0.213299,0.529999-0.380001c0.126701-0.166698,0.189999-0.370001,0.189999-0.610001c0-0.219999-0.053299-0.4133-0.16-0.58c-0.099998-0.1733-0.2967-0.33-0.59-0.469999c-0.286699-0.1467-0.713301-0.290001-1.280001-0.43c-0.5467-0.139999-0.983299-0.293301-1.309999-0.459999c-0.32-0.1667-0.553301-0.370001-0.700001-0.610001c-0.139999-0.24-0.209999-0.536699-0.209999-0.889999c0-0.4,0.0933-0.75,0.280001-1.049999c0.1933-0.3067,0.4667-0.543301,0.82-0.709999c0.3533-0.1733,0.7733-0.26,1.26-0.26c0.52,0,0.9667,0.1,1.34,0.299999c0.373299,0.1933,0.669998,0.459999,0.889999,0.799999s0.356701,0.7267,0.41,1.16l-0.900002,0.059999c-0.040001-0.286699-0.133301-0.540001-0.279999-0.76c-0.139999-0.2267-0.333302-0.403299-0.58-0.530001s-0.5467-0.190001-0.9-0.190001c-0.440001,0-0.790001,0.106701-1.049999,0.32c-0.26,0.206699-0.389999,0.48-0.389999,0.82c0,0.219999,0.049999,0.403299,0.15,0.549999c0.106701,0.139999,0.293301,0.266701,0.559999,0.379999c0.266701,0.106701,0.65,0.223301,1.15,0.35c0.5933,0.1467,1.063299,0.323299,1.410002,0.530001c0.353298,0.200001,0.603298,0.4333,0.75,0.700001c0.153301,0.266701,0.23,0.57,0.23,0.91c0,0.4133-0.106701,0.7733-0.32,1.080002c-0.213299,0.299999-0.506699,0.533298-0.880001,0.700001C32.130196,33.579998,31.700193,33.66,31.213499,33.66z M37.349998,33.5c0-0.5,0.076698-0.950001,0.23-1.349998c0.16-0.4067,0.436699-0.793301,0.830002-1.16c0.400002-0.366699,0.9533-0.7367,1.66-1.110001c0.326698-0.1733,0.59-0.3333,0.790001-0.48s0.346699-0.303301,0.439999-0.469999s0.139999-0.370001,0.139999-0.610001c0-0.2467-0.053299-0.459999-0.16-0.639999c-0.106701-0.186701-0.266701-0.3333-0.48-0.440001c-0.206699-0.106701-0.466702-0.16-0.779999-0.16c-0.5,0-0.896702,0.129999-1.189999,0.389999c-0.286701,0.26-0.466702,0.629999-0.540001,1.110001l-0.900002-0.059999c0.080002-0.6933,0.346699-1.2467,0.799999-1.66S39.2533,26.240002,40.02,26.240002c0.486698,0,0.903301,0.0867,1.25,0.26s0.610001,0.4167,0.790001,0.73c0.186699,0.3067,0.279999,0.6633,0.279999,1.07c0,0.360001-0.060001,0.6733-0.18,0.940001c-0.119999,0.26-0.323299,0.5033-0.610001,0.73c-0.279999,0.2267-0.666698,0.469999-1.16,0.73c-0.639999,0.34-1.126701,0.6833-1.459999,1.030001c-0.326698,0.346701-0.5,0.656698-0.52,0.929998h3.93v0.84H37.349998z"
|
||||
/>
|
||||
</svg>
|
||||
);
|
||||
return (
|
||||
<svg
|
||||
className={className}
|
||||
version="1.1"
|
||||
id="Layer_1"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlnsXlink="http://www.w3.org/1999/xlink"
|
||||
x="0px"
|
||||
y="0px"
|
||||
viewBox="0 0 60 60"
|
||||
enable-background="new 0 0 60 60"
|
||||
xmlSpace="preserve"
|
||||
>
|
||||
<path
|
||||
className="fill-none stroke-txt-primary"
|
||||
d="M53.749001,16.288099v27.4228L30,57.422897L6.25098,43.710899v-27.4228L30,2.576169L53.749001,16.288099z"
|
||||
/>
|
||||
<g>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M29.909,9.4694c0.0355-0.07827,0.1467-0.07827,0.1821,0l0.3678,0.8111c0.014601,0.0321,0.045,0.0542,0.08,0.0581L31.424,10.4378c0.0854,0.0095,0.119699,0.1152,0.056299,0.1732l-0.657801,0.6004c-0.025999,0.0238-0.0376,0.0595-0.0305,0.094l0.179199,0.8724c0.0173,0.0842-0.072701,0.1495-0.1474,0.1071l-0.7743-0.44c-0.030701-0.0175-0.068199-0.0175-0.098801,0l-0.774401,0.44c-0.074699,0.0424-0.1646-0.0229-0.147301-0.1071l0.179199-0.8724c0.007099-0.0345-0.004499-0.0702-0.0305-0.094l-0.657801-0.6004c-0.063499-0.058-0.0291-0.1637,0.056299-0.1732l0.885099-0.0992c0.035-0.0039,0.0653-0.026,0.079901-0.0581L29.909,9.4694z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M29.909,47.680504c0.0355-0.07827,0.1467-0.07827,0.1821,0l0.3678,0.8111c0.014601,0.032101,0.045,0.054203,0.08,0.058102L31.424,48.648907c0.0854,0.009499,0.119699,0.1152,0.056299,0.173199l-0.657801,0.600399c-0.025999,0.0238-0.0376,0.059502-0.0305,0.094002l0.179199,0.872398c0.0173,0.084202-0.072701,0.149502-0.1474,0.107101l-0.7743-0.440002c-0.030701-0.017498-0.068199-0.017498-0.098801,0l-0.774401,0.440002c-0.074699,0.0424-0.1646-0.0229-0.147301-0.107101l0.179199-0.872398c0.007099-0.0345-0.004499-0.070202-0.0305-0.094002l-0.657801-0.600399c-0.063499-0.057999-0.0291-0.1637,0.056299-0.173199l0.885099-0.099201c0.035-0.003899,0.0653-0.026001,0.079901-0.058102L29.909,47.680504z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M19.755541,12.55737c-0.008392-0.085533,0.087912-0.141133,0.157703-0.09105l0.724073,0.518534c0.028694,0.020499,0.066072,0.024439,0.098331,0.010316l0.81612-0.35664c0.078707-0.034472,0.161263,0.039917,0.135355,0.121846l-0.269472,0.848862c-0.010614,0.03361-0.002811,0.070328,0.020586,0.096657l0.591393,0.665921c0.057081,0.064269,0.011789,0.16582-0.074102,0.166451l-0.890564,0.006099c-0.035337,0.000196-0.067812,0.018945-0.085564,0.0494l-0.450651,0.768251c-0.043491,0.074069-0.153997,0.062469-0.181116-0.0191l-0.281008-0.84512c-0.011103-0.033428-0.038998-0.058546-0.073414-0.066156l-0.869873-0.191061c-0.083992-0.018479-0.107052-0.127218-0.037844-0.178145l0.716919-0.528461c0.02836-0.020877,0.043552-0.055166,0.040146-0.090266L19.755541,12.55737z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M12.506371,20.308361c-0.050034-0.069878,0.005567-0.166182,0.09105-0.157703l0.886333,0.087027c0.0351,0.003405,0.069439-0.011871,0.090316-0.040232l0.528461-0.716919c0.050927-0.069208,0.159616-0.046062,0.178145,0.037844l0.191061,0.869871c0.007611,0.034416,0.032728,0.062311,0.066156,0.073414l0.84512,0.28101c0.081569,0.027117,0.09312,0.137711,0.019051,0.181202l-0.768201,0.450563c-0.030505,0.017838-0.049254,0.050312-0.0494,0.085564l-0.006149,0.89065c-0.00063,0.085892-0.102132,0.131098-0.166401,0.074017l-0.665921-0.591391c-0.026329-0.023399-0.063046-0.031204-0.096657-0.020586l-0.848862,0.269472c-0.081979,0.025991-0.156319-0.056648-0.121846-0.135357l0.35664-0.816118c0.014123-0.032261,0.010134-0.069551-0.010365-0.098246L12.506371,20.308361z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M10.103903,30.6455c-0.07827-0.0355-0.07827-0.1467,0-0.1821l0.8111-0.3678c0.0321-0.014601,0.0542-0.045,0.0581-0.08l0.0992-0.885099c0.0095-0.0854,0.1152-0.119699,0.1732-0.056299l0.6004,0.657801c0.0238,0.025999,0.0595,0.0376,0.094,0.0305l0.8724-0.179199c0.0842-0.0173,0.1495,0.072701,0.1071,0.1474l-0.44,0.7743c-0.0175,0.030701-0.0175,0.068199,0,0.098801l0.44,0.774401c0.0424,0.074699-0.0229,0.1646-0.1071,0.147301l-0.8724-0.179199c-0.0345-0.007099-0.0702,0.004499-0.094,0.0305l-0.6004,0.657801c-0.058,0.063499-0.1637,0.029099-0.1732-0.056299l-0.0992-0.885099c-0.0039-0.035-0.026-0.0653-0.0581-0.079901L10.103903,30.6455z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M13.191873,40.798962c-0.085533,0.008389-0.141133-0.087914-0.09105-0.157707l0.518534-0.724072c0.020499-0.028694,0.024439-0.066071,0.010316-0.098331l-0.35664-0.81612c-0.034472-0.078709,0.039917-0.161263,0.121846-0.135357l0.848862,0.269474c0.03361,0.010616,0.070328,0.002811,0.096657-0.020588l0.665921-0.591389c0.064269-0.057083,0.16582-0.011791,0.166451,0.0741l0.006099,0.890564c0.000196,0.035336,0.018945,0.06781,0.0494,0.085564l0.768251,0.450649c0.074071,0.043491,0.062469,0.153999-0.0191,0.181118l-0.84512,0.28101c-0.033428,0.011101-0.058546,0.038994-0.066156,0.073414l-0.191061,0.869869c-0.018479,0.083992-0.127218,0.107052-0.178145,0.037846l-0.528461-0.716919c-0.020877-0.028362-0.055166-0.043552-0.090266-0.040146L13.191873,40.798962z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M20.942863,48.04813c-0.069878,0.050034-0.166182-0.005569-0.157703-0.091053l0.087027-0.886333c0.003405-0.035099-0.011871-0.069435-0.040232-0.090313l-0.716919-0.528461c-0.069208-0.050926-0.046062-0.159615,0.037844-0.178143l0.869871-0.191063c0.034416-0.00761,0.062311-0.03273,0.073414-0.066154l0.28101-0.845123c0.027117-0.081566,0.137711-0.093121,0.181202-0.019051l0.450563,0.7682c0.017838,0.030506,0.050312,0.049255,0.085564,0.0494l0.89065,0.006153c0.085892,0.000629,0.131098,0.102131,0.074017,0.166401l-0.591391,0.66592c-0.023399,0.026329-0.031204,0.063046-0.020586,0.096657l0.269472,0.848862c0.025991,0.081978-0.056648,0.156319-0.135357,0.121845l-0.816118-0.35664c-0.032261-0.014122-0.069551-0.010132-0.098246,0.010365L20.942863,48.04813z"
|
||||
/>
|
||||
</g>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M40.157589,13.443707c-0.003407,0.0351,0.011784,0.069389,0.040146,0.090266l0.716919,0.52846c0.069206,0.050927,0.046146,0.159666-0.037846,0.178145l-0.869869,0.191061c-0.03442,0.00761-0.062313,0.032728-0.073414,0.066156l-0.28101,0.84512c-0.027119,0.081569-0.137627,0.093169-0.181118,0.0191l-0.450649-0.768251c-0.017754-0.030456-0.050228-0.049205-0.085564-0.0494l-0.890564-0.006099c-0.085892-0.00063-0.131184-0.102181-0.0741-0.166451l0.591389-0.665921c0.023399-0.026329,0.031204-0.063046,0.020588-0.096657l-0.269474-0.848862c-0.025906-0.081929,0.056648-0.156319,0.135357-0.121846l0.81612,0.35664c0.032261,0.014123,0.069637,0.010183,0.098331-0.010316l0.724072-0.518534c0.069794-0.050083,0.166096,0.005517,0.157703,0.09105L40.157589,13.443707z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M46.975246,21.032442c-0.020496,0.028694-0.024487,0.065985-0.010365,0.098246l0.35664,0.816118c0.034473,0.078709-0.039867,0.161348-0.121845,0.135357l-0.848862-0.269472c-0.033611-0.010618-0.070328-0.002813-0.096657,0.020586l-0.66592,0.591391c-0.06427,0.057081-0.165771,0.011875-0.166405-0.074017l-0.006149-0.89065c-0.000145-0.035252-0.018894-0.067726-0.0494-0.085564l-0.7682-0.450563c-0.07407-0.043491-0.062519-0.154085,0.019051-0.181202l0.845123-0.28101c0.033424-0.011103,0.058544-0.038998,0.066154-0.073414l0.191063-0.869871c0.018528-0.083906,0.127216-0.107052,0.178143-0.037844l0.528461,0.716919c0.020878,0.02836,0.055214,0.043636,0.090313,0.040232l0.886333-0.087027c0.085484-0.008478,0.141087,0.087826,0.091053,0.157703L46.975246,21.032442z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M49.085144,31.013308c-0.032097,0.014601-0.054199,0.044901-0.058098,0.079901l-0.099201,0.885099c-0.009499,0.085398-0.1152,0.119799-0.173199,0.056299l-0.600399-0.657801c-0.0238-0.026001-0.059502-0.0376-0.094002-0.0305l-0.872398,0.179199c-0.084202,0.0173-0.149502-0.072601-0.107101-0.147301l0.439999-0.774401c0.017502-0.030602,0.017502-0.0681,0-0.098801l-0.439999-0.7743c-0.0424-0.074699,0.0229-0.1647,0.107101-0.1474l0.872398,0.179199c0.0345,0.007099,0.070202-0.004501,0.094002-0.0305l0.600399-0.657801c0.057999-0.0634,0.1637-0.0291,0.173199,0.056299l0.099201,0.885099c0.003899,0.035,0.026001,0.065399,0.058098,0.08l0.8111,0.3678c0.07827,0.0354,0.07827,0.146601,0,0.1821L49.085144,31.013308z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M45.92194,40.711941c-0.035099-0.003407-0.069389,0.011784-0.090267,0.040146l-0.528461,0.716919c-0.050926,0.069206-0.159664,0.046146-0.178143-0.037846l-0.191063-0.869869c-0.00761-0.03442-0.032726-0.062313-0.066154-0.073414l-0.845119-0.28101c-0.08157-0.027119-0.09317-0.137627-0.019104-0.181118l0.768253-0.450649c0.030457-0.017754,0.049206-0.050228,0.0494-0.085564l0.0061-0.890564c0.000629-0.085892,0.10218-0.131184,0.166451-0.0741l0.66592,0.591389c0.026329,0.023399,0.063046,0.031204,0.096657,0.020588l0.848862-0.269474c0.081928-0.025906,0.156319,0.056648,0.121845,0.135357l-0.35664,0.81612c-0.014122,0.032261-0.010181,0.069637,0.010315,0.098331l0.518536,0.724072c0.050083,0.069794-0.005516,0.166096-0.091049,0.157707L45.92194,40.711941z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M38.333206,47.529598c-0.028694-0.020496-0.065987-0.024487-0.098248-0.010365l-0.81612,0.35664c-0.078705,0.034473-0.161346-0.039867-0.135353-0.121845l0.26947-0.848862c0.010616-0.033611,0.002811-0.070328-0.020584-0.096657l-0.591393-0.66592c-0.057083-0.06427-0.011875-0.165771,0.074017-0.166401l0.890652-0.006153c0.035252-0.000145,0.067726-0.018894,0.085564-0.0494l0.450562-0.7682c0.043491-0.07407,0.154083-0.062515,0.181202,0.019051l0.28101,0.845123c0.011101,0.033424,0.038998,0.058544,0.073414,0.066154l0.869873,0.191063c0.083904,0.018528,0.107052,0.127216,0.037842,0.178143l-0.716919,0.528461c-0.028358,0.020878-0.043636,0.055214-0.04023,0.090313l0.087025,0.886333c0.008476,0.085484-0.087826,0.141087-0.157703,0.091053L38.333206,47.529598z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M18.9786,33.5v-7.1h1.219999l3.51,6.24V26.4H24.5686v7.1h-1.280001l-3.450001-6.119999V33.5H18.9786zM26.214899,33.5v-7.1H27.0749v7.1H26.214899z M31.213499,33.66c-0.5467,0-1.0233-0.103298-1.43-0.310001s-0.73-0.490002-0.969999-0.849998c-0.233299-0.366699-0.370001-0.790001-0.41-1.27l0.9-0.059999c0.0467,0.3533,0.15,0.653299,0.309999,0.9s0.373301,0.4333,0.639999,0.560001c0.2733,0.126701,0.6,0.189999,0.98,0.189999c0.3333,0,0.616699-0.043301,0.849998-0.130001s0.41-0.213299,0.529999-0.380001c0.126701-0.166698,0.189999-0.370001,0.189999-0.610001c0-0.219999-0.053299-0.4133-0.16-0.58c-0.099998-0.1733-0.2967-0.33-0.59-0.469999c-0.286699-0.1467-0.713301-0.290001-1.280001-0.43c-0.5467-0.139999-0.983299-0.293301-1.309999-0.459999c-0.32-0.1667-0.553301-0.370001-0.700001-0.610001c-0.139999-0.24-0.209999-0.536699-0.209999-0.889999c0-0.4,0.0933-0.75,0.280001-1.049999c0.1933-0.3067,0.4667-0.543301,0.82-0.709999c0.3533-0.1733,0.7733-0.26,1.26-0.26c0.52,0,0.9667,0.1,1.34,0.299999c0.373299,0.1933,0.669998,0.459999,0.889999,0.799999s0.356701,0.7267,0.41,1.16l-0.900002,0.059999c-0.040001-0.286699-0.133301-0.540001-0.279999-0.76c-0.139999-0.2267-0.333302-0.403299-0.58-0.530001s-0.5467-0.190001-0.9-0.190001c-0.440001,0-0.790001,0.106701-1.049999,0.32c-0.26,0.206699-0.389999,0.48-0.389999,0.82c0,0.219999,0.049999,0.403299,0.15,0.549999c0.106701,0.139999,0.293301,0.266701,0.559999,0.379999c0.266701,0.106701,0.65,0.223301,1.15,0.35c0.5933,0.1467,1.063299,0.323299,1.410002,0.530001c0.353298,0.200001,0.603298,0.4333,0.75,0.700001c0.153301,0.266701,0.23,0.57,0.23,0.91c0,0.4133-0.106701,0.7733-0.32,1.080002c-0.213299,0.299999-0.506699,0.533298-0.880001,0.700001C32.130196,33.579998,31.700193,33.66,31.213499,33.66z M37.349998,33.5c0-0.5,0.076698-0.950001,0.23-1.349998c0.16-0.4067,0.436699-0.793301,0.830002-1.16c0.400002-0.366699,0.9533-0.7367,1.66-1.110001c0.326698-0.1733,0.59-0.3333,0.790001-0.48s0.346699-0.303301,0.439999-0.469999s0.139999-0.370001,0.139999-0.610001c0-0.2467-0.053299-0.459999-0.16-0.639999c-0.106701-0.186701-0.266701-0.3333-0.48-0.440001c-0.206699-0.106701-0.466702-0.16-0.779999-0.16c-0.5,0-0.896702,0.129999-1.189999,0.389999c-0.286701,0.26-0.466702,0.629999-0.540001,1.110001l-0.900002-0.059999c0.080002-0.6933,0.346699-1.2467,0.799999-1.66S39.2533,26.240002,40.02,26.240002c0.486698,0,0.903301,0.0867,1.25,0.26s0.610001,0.4167,0.790001,0.73c0.186699,0.3067,0.279999,0.6633,0.279999,1.07c0,0.360001-0.060001,0.6733-0.18,0.940001c-0.119999,0.26-0.323299,0.5033-0.610001,0.73c-0.279999,0.2267-0.666698,0.469999-1.16,0.73c-0.639999,0.34-1.126701,0.6833-1.459999,1.030001c-0.326698,0.346701-0.5,0.656698-0.52,0.929998h3.93v0.84H37.349998z"
|
||||
/>
|
||||
</svg>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1,35 +1,35 @@
|
||||
export function SOC2(props: { className?: string }) {
|
||||
const { className } = props;
|
||||
const { className } = props;
|
||||
|
||||
return (
|
||||
<svg
|
||||
className={className}
|
||||
version="1.1"
|
||||
id="Layer_1"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlnsXlink="http://www.w3.org/1999/xlink"
|
||||
x="0px"
|
||||
y="0px"
|
||||
viewBox="0 0 60 60"
|
||||
enable-background="new 0 0 60 60"
|
||||
xmlSpace="preserve"
|
||||
>
|
||||
<path
|
||||
className="fill-none stroke-txt-primary"
|
||||
d="M53.766602,16.297899c0.002499,0.042101,0.005901,0.0895,0.008801,0.1416c0.014599,0.2644,0.032501,0.654699,0.045898,1.154301c0.026798,0.9998,0.0354,2.437401-0.039101,4.1796c-0.148998,3.486599-0.628498,8.185101-1.9482,13.046898C49.1991,44.527,43.2533,54.779999,30,57.4883C16.746799,54.779999,10.8009,44.527,8.166,34.820301C6.8463,29.9585,6.3667,25.26,6.2178,21.773399c-0.0744-1.742201-0.0658-3.1798-0.0391-4.1796c0.0134-0.499599,0.0313-0.8899,0.0459-1.154301c0.0029-0.052099,0.0053-0.099501,0.0078-0.1416L30,2.5762L53.766602,16.297899z"
|
||||
/>
|
||||
<path
|
||||
className="fill-none stroke-txt-primary"
|
||||
d="M49.890099,18.444099c0.001598,0.027201,0.0042,0.056601,0.005901,0.0879c0.012199,0.2304,0.027802,0.5704,0.039101,1.0058c0.0224,0.871201,0.029202,2.1231-0.033199,3.640699c-0.125099,3.0373-0.528099,7.1287-1.635799,11.355398c-2.212002,8.440601-7.193298,17.298798-18.2666,19.570297c-11.072401-2.2719-16.053699-11.130001-18.2656-19.570297c-1.1077-4.2267-1.5107-8.3181-1.6358-11.3554c-0.0624-1.5175-0.0556-2.769501-0.0332-3.640699c0.0113-0.4354,0.0269-0.7754,0.0391-1.0058c0.0017-0.0313,0.0033-0.060699,0.0049-0.0879L29.9995,6.9597L49.890099,18.444099z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M18.604099,36.656601c-0.5466,0-1.0233-0.103401-1.43-0.310001c-0.406601-0.206699-0.73-0.490002-0.969999-0.849998c-0.2333-0.366699-0.37-0.790001-0.41-1.27l0.9-0.060001c0.0467,0.353298,0.15,0.653301,0.309999,0.900002c0.16,0.246601,0.3734,0.4333,0.639999,0.560001c0.273399,0.126598,0.6,0.189999,0.98,0.189999c0.333401,0,0.616699-0.0434,0.85-0.130001c0.2334-0.0867,0.41-0.213402,0.530001-0.380001c0.126699-0.166698,0.190001-0.369999,0.190001-0.610001c0-0.220001-0.053301-0.413399-0.16-0.580002c-0.1-0.173401-0.2966-0.330002-0.59-0.470001c-0.2866-0.146702-0.713301-0.290001-1.280001-0.43c-0.5466-0.139999-0.983299-0.2934-1.309999-0.459999c-0.32-0.166698-0.553301-0.369999-0.700001-0.610001c-0.139999-0.24-0.21-0.536699-0.21-0.889999c0-0.4,0.0934-0.75,0.28-1.049999c0.193399-0.3067,0.4667-0.5434,0.82-0.709999c0.353399-0.173401,0.773399-0.26,1.26-0.26c0.52,0,0.9667,0.1,1.34,0.299999c0.3734,0.1933,0.67,0.459999,0.889999,0.799999s0.356701,0.726601,0.41,1.16l-0.9,0.059999c-0.040001-0.286699-0.133301-0.540001-0.280001-0.76c-0.139999-0.2267-0.3333-0.4034-0.58-0.530001c-0.246599-0.126699-0.5466-0.190001-0.9-0.190001c-0.440001,0-0.790001,0.1066-1.049999,0.32c-0.26,0.2066-0.389999,0.48-0.389999,0.82c0,0.219999,0.049999,0.403299,0.15,0.549999c0.106701,0.139999,0.2934,0.2666,0.559999,0.379999c0.266701,0.106602,0.65,0.223301,1.15,0.349998c0.593399,0.146599,1.0634,0.323299,1.41,0.529999c0.353399,0.200001,0.603399,0.4333,0.75,0.700001c0.1534,0.266602,0.23,0.57,0.23,0.91c0,0.4133-0.1066,0.7733-0.32,1.080002c-0.213301,0.299999-0.506599,0.533298-0.879999,0.700001C19.5208,36.576599,19.090799,36.656601,18.604099,36.656601zM25.330601,36.656601c-0.6733,0-1.2533-0.146702-1.74-0.439999c-0.48-0.299999-0.85-0.7267-1.110001-1.279999c-0.26-0.553398-0.389999-1.213402-0.389999-1.98c0-0.766701,0.129999-1.426701,0.389999-1.98c0.26-0.559999,0.629999-0.99,1.110001-1.290001c0.4867-0.299999,1.0667-0.450001,1.74-0.450001c0.68,0,1.26,0.15,1.74,0.450001c0.4867,0.299999,0.860001,0.73,1.120001,1.290001c0.26,0.553301,0.389999,1.213299,0.389999,1.98c0,0.766602-0.129999,1.426601-0.389999,1.98c-0.26,0.553299-0.633301,0.98-1.120001,1.279999C26.590599,36.509899,26.010599,36.656601,25.330601,36.656601z M25.330601,35.816601c0.493401,0,0.913401-0.1134,1.26-0.34c0.353399-0.2267,0.6234-0.553398,0.809999-0.98c0.186701-0.426701,0.280001-0.939999,0.280001-1.540001s-0.0933-1.1134-0.280001-1.540001c-0.1866-0.433399-0.4566-0.763399-0.809999-0.99c-0.3466-0.2334-0.7666-0.35-1.26-0.35c-0.486601,0-0.906601,0.1166-1.26,0.35c-0.3466,0.226601-0.6133,0.556601-0.799999,0.99c-0.1866,0.4266-0.280001,0.939999-0.280001,1.540001s0.093399,1.1133,0.280001,1.540001c0.186701,0.426601,0.4534,0.7533,0.799999,0.98C24.424,35.703201,24.844,35.816601,25.330601,35.816601z M32.673199,36.656601c-0.633301,0-1.190001-0.146702-1.67-0.439999c-0.48-0.299999-0.8533-0.7267-1.120001-1.279999c-0.266701-0.553398-0.4-1.213402-0.4-1.98c0-0.766701,0.133301-1.426701,0.4-1.98c0.266701-0.559999,0.639999-0.99,1.120001-1.290001s1.036699-0.450001,1.67-0.450001c0.860001,0,1.526699,0.2166,2,0.65c0.473301,0.4333,0.783298,1.0233,0.93,1.77l-0.91,0.059999c-0.099998-0.506701-0.313301-0.9067-0.639999-1.200001c-0.326698-0.2934-0.786701-0.440001-1.380001-0.440001c-0.4533,0-0.8533,0.1166-1.200001,0.35c-0.34,0.226601-0.606701,0.556601-0.799999,0.99c-0.1933,0.4266-0.290001,0.940001-0.290001,1.539999s0.096701,1.1133,0.290001,1.540001c0.1933,0.426601,0.459999,0.7533,0.799999,0.98c0.346701,0.226601,0.7467,0.34,1.200001,0.34c0.619999,0,1.099998-0.16,1.439999-0.48c0.34-0.326698,0.553299-0.766701,0.639999-1.32l0.91,0.060001c-0.0867,0.513302-0.256699,0.963299-0.509998,1.349998c-0.2533,0.3866-0.59,0.689999-1.009998,0.91C33.7299,36.5499,33.239899,36.656601,32.673199,36.656601z M39.164501,36.496601c0-0.5,0.076599-0.950001,0.23-1.349998c0.16-0.4067,0.4366-0.7934,0.830002-1.16c0.400002-0.366699,0.9533-0.736698,1.66-1.110001c0.326599-0.173401,0.59-0.333401,0.790001-0.48c0.200001-0.146702,0.3466-0.303398,0.439999-0.469999c0.0933-0.1667,0.139999-0.370001,0.139999-0.610001c0-0.2467-0.053398-0.459999-0.16-0.639999c-0.106701-0.186701-0.266701-0.333401-0.48-0.440001c-0.206699-0.106701-0.466702-0.16-0.779999-0.16c-0.5,0-0.896702,0.129999-1.189999,0.389999c-0.286701,0.26-0.466702,0.629999-0.540001,1.110001l-0.900002-0.059999c0.080002-0.693399,0.3466-1.2467,0.799999-1.66c0.4533-0.413401,1.063301-0.620001,1.830002-0.620001c0.486599,0,0.903301,0.086599,1.25,0.26c0.3466,0.1733,0.610001,0.416599,0.790001,0.73c0.1866,0.306601,0.279999,0.6633,0.279999,1.07c0,0.360001-0.060001,0.6733-0.18,0.940001c-0.119999,0.259998-0.323399,0.5033-0.610001,0.73c-0.279999,0.226601-0.666698,0.470001-1.16,0.73c-0.639999,0.34-1.126701,0.6833-1.459999,1.029999c-0.326698,0.3466-0.5,0.656601-0.52,0.93h3.93v0.84H39.164501z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M15.9129,27.0574l2.56-7.1h1.16l2.559999,7.1h-0.940001l-0.709999-2.02h-2.98l-0.709999,2.02H15.9129zM17.8529,24.197399h2.4l-1.200001-3.49L17.8529,24.197399z M23.1173,27.0574v-7.1h0.860001v7.1H23.1173z M28.395901,27.2174c-0.6334,0-1.190001-0.1467-1.67-0.440001c-0.48-0.299999-0.853399-0.7267-1.120001-1.280001c-0.266701-0.5534-0.4-1.2134-0.4-1.98c0-0.766701,0.133301-1.426701,0.4-1.98c0.2666-0.559999,0.639999-0.99,1.120001-1.290001s1.0366-0.450001,1.67-0.450001c0.860001,0,1.5266,0.2166,2,0.65c0.473301,0.4333,0.7833,1.0233,0.93,1.77l-0.91,0.059999c-0.1-0.506701-0.3134-0.9067-0.639999-1.200001c-0.3267-0.2934-0.786699-0.440001-1.379999-0.440001c-0.4534,0-0.853399,0.1166-1.200001,0.35c-0.34,0.226601-0.606701,0.556601-0.799999,0.99c-0.193399,0.4266-0.290001,0.940001-0.290001,1.539999s0.0966,1.1133,0.290001,1.540001c0.1933,0.4266,0.459999,0.7533,0.799999,0.98c0.3466,0.226601,0.746599,0.34,1.200001,0.34c0.620001,0,1.1-0.16,1.440001-0.48c0.34-0.3267,0.553301-0.766701,0.639999-1.32l0.91,0.059999c-0.0867,0.5133-0.256701,0.963301-0.51,1.35c-0.253401,0.3866-0.59,0.690001-1.01,0.91C29.452499,27.110701,28.9625,27.2174,28.395901,27.2174z M32.726601,27.0574v-7.1H35.2766c0.7934,0,1.41,0.190001,1.849998,0.57s0.66,0.906599,0.66,1.58c0,0.4533-0.099998,0.8466-0.299999,1.18c-0.200001,0.326599-0.486599,0.576599-0.860001,0.75c-0.373299,0.1733-0.823299,0.26-1.349998,0.26h-1.689999v2.76H32.726601zM33.586601,23.457399H35.2766c0.533401,0,0.933399-0.1134,1.200001-0.34c0.273399-0.2267,0.41-0.5634,0.41-1.01c0-0.433399-0.1366-0.76-0.41-0.98c-0.266602-0.219999-0.666599-0.33-1.200001-0.33h-1.689999V23.457399z M37.8074,27.0574l2.560001-7.1h1.16l2.560001,7.1h-0.939999l-0.709999-2.02h-2.98l-0.709999,2.02H37.8074z M39.747398,24.197399H42.1474l-1.200001-3.49L39.747398,24.197399z"
|
||||
/>
|
||||
</svg>
|
||||
);
|
||||
return (
|
||||
<svg
|
||||
className={className}
|
||||
version="1.1"
|
||||
id="Layer_1"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlnsXlink="http://www.w3.org/1999/xlink"
|
||||
x="0px"
|
||||
y="0px"
|
||||
viewBox="0 0 60 60"
|
||||
enable-background="new 0 0 60 60"
|
||||
xmlSpace="preserve"
|
||||
>
|
||||
<path
|
||||
className="fill-none stroke-txt-primary"
|
||||
d="M53.766602,16.297899c0.002499,0.042101,0.005901,0.0895,0.008801,0.1416c0.014599,0.2644,0.032501,0.654699,0.045898,1.154301c0.026798,0.9998,0.0354,2.437401-0.039101,4.1796c-0.148998,3.486599-0.628498,8.185101-1.9482,13.046898C49.1991,44.527,43.2533,54.779999,30,57.4883C16.746799,54.779999,10.8009,44.527,8.166,34.820301C6.8463,29.9585,6.3667,25.26,6.2178,21.773399c-0.0744-1.742201-0.0658-3.1798-0.0391-4.1796c0.0134-0.499599,0.0313-0.8899,0.0459-1.154301c0.0029-0.052099,0.0053-0.099501,0.0078-0.1416L30,2.5762L53.766602,16.297899z"
|
||||
/>
|
||||
<path
|
||||
className="fill-none stroke-txt-primary"
|
||||
d="M49.890099,18.444099c0.001598,0.027201,0.0042,0.056601,0.005901,0.0879c0.012199,0.2304,0.027802,0.5704,0.039101,1.0058c0.0224,0.871201,0.029202,2.1231-0.033199,3.640699c-0.125099,3.0373-0.528099,7.1287-1.635799,11.355398c-2.212002,8.440601-7.193298,17.298798-18.2666,19.570297c-11.072401-2.2719-16.053699-11.130001-18.2656-19.570297c-1.1077-4.2267-1.5107-8.3181-1.6358-11.3554c-0.0624-1.5175-0.0556-2.769501-0.0332-3.640699c0.0113-0.4354,0.0269-0.7754,0.0391-1.0058c0.0017-0.0313,0.0033-0.060699,0.0049-0.0879L29.9995,6.9597L49.890099,18.444099z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M18.604099,36.656601c-0.5466,0-1.0233-0.103401-1.43-0.310001c-0.406601-0.206699-0.73-0.490002-0.969999-0.849998c-0.2333-0.366699-0.37-0.790001-0.41-1.27l0.9-0.060001c0.0467,0.353298,0.15,0.653301,0.309999,0.900002c0.16,0.246601,0.3734,0.4333,0.639999,0.560001c0.273399,0.126598,0.6,0.189999,0.98,0.189999c0.333401,0,0.616699-0.0434,0.85-0.130001c0.2334-0.0867,0.41-0.213402,0.530001-0.380001c0.126699-0.166698,0.190001-0.369999,0.190001-0.610001c0-0.220001-0.053301-0.413399-0.16-0.580002c-0.1-0.173401-0.2966-0.330002-0.59-0.470001c-0.2866-0.146702-0.713301-0.290001-1.280001-0.43c-0.5466-0.139999-0.983299-0.2934-1.309999-0.459999c-0.32-0.166698-0.553301-0.369999-0.700001-0.610001c-0.139999-0.24-0.21-0.536699-0.21-0.889999c0-0.4,0.0934-0.75,0.28-1.049999c0.193399-0.3067,0.4667-0.5434,0.82-0.709999c0.353399-0.173401,0.773399-0.26,1.26-0.26c0.52,0,0.9667,0.1,1.34,0.299999c0.3734,0.1933,0.67,0.459999,0.889999,0.799999s0.356701,0.726601,0.41,1.16l-0.9,0.059999c-0.040001-0.286699-0.133301-0.540001-0.280001-0.76c-0.139999-0.2267-0.3333-0.4034-0.58-0.530001c-0.246599-0.126699-0.5466-0.190001-0.9-0.190001c-0.440001,0-0.790001,0.1066-1.049999,0.32c-0.26,0.2066-0.389999,0.48-0.389999,0.82c0,0.219999,0.049999,0.403299,0.15,0.549999c0.106701,0.139999,0.2934,0.2666,0.559999,0.379999c0.266701,0.106602,0.65,0.223301,1.15,0.349998c0.593399,0.146599,1.0634,0.323299,1.41,0.529999c0.353399,0.200001,0.603399,0.4333,0.75,0.700001c0.1534,0.266602,0.23,0.57,0.23,0.91c0,0.4133-0.1066,0.7733-0.32,1.080002c-0.213301,0.299999-0.506599,0.533298-0.879999,0.700001C19.5208,36.576599,19.090799,36.656601,18.604099,36.656601zM25.330601,36.656601c-0.6733,0-1.2533-0.146702-1.74-0.439999c-0.48-0.299999-0.85-0.7267-1.110001-1.279999c-0.26-0.553398-0.389999-1.213402-0.389999-1.98c0-0.766701,0.129999-1.426701,0.389999-1.98c0.26-0.559999,0.629999-0.99,1.110001-1.290001c0.4867-0.299999,1.0667-0.450001,1.74-0.450001c0.68,0,1.26,0.15,1.74,0.450001c0.4867,0.299999,0.860001,0.73,1.120001,1.290001c0.26,0.553301,0.389999,1.213299,0.389999,1.98c0,0.766602-0.129999,1.426601-0.389999,1.98c-0.26,0.553299-0.633301,0.98-1.120001,1.279999C26.590599,36.509899,26.010599,36.656601,25.330601,36.656601z M25.330601,35.816601c0.493401,0,0.913401-0.1134,1.26-0.34c0.353399-0.2267,0.6234-0.553398,0.809999-0.98c0.186701-0.426701,0.280001-0.939999,0.280001-1.540001s-0.0933-1.1134-0.280001-1.540001c-0.1866-0.433399-0.4566-0.763399-0.809999-0.99c-0.3466-0.2334-0.7666-0.35-1.26-0.35c-0.486601,0-0.906601,0.1166-1.26,0.35c-0.3466,0.226601-0.6133,0.556601-0.799999,0.99c-0.1866,0.4266-0.280001,0.939999-0.280001,1.540001s0.093399,1.1133,0.280001,1.540001c0.186701,0.426601,0.4534,0.7533,0.799999,0.98C24.424,35.703201,24.844,35.816601,25.330601,35.816601z M32.673199,36.656601c-0.633301,0-1.190001-0.146702-1.67-0.439999c-0.48-0.299999-0.8533-0.7267-1.120001-1.279999c-0.266701-0.553398-0.4-1.213402-0.4-1.98c0-0.766701,0.133301-1.426701,0.4-1.98c0.266701-0.559999,0.639999-0.99,1.120001-1.290001s1.036699-0.450001,1.67-0.450001c0.860001,0,1.526699,0.2166,2,0.65c0.473301,0.4333,0.783298,1.0233,0.93,1.77l-0.91,0.059999c-0.099998-0.506701-0.313301-0.9067-0.639999-1.200001c-0.326698-0.2934-0.786701-0.440001-1.380001-0.440001c-0.4533,0-0.8533,0.1166-1.200001,0.35c-0.34,0.226601-0.606701,0.556601-0.799999,0.99c-0.1933,0.4266-0.290001,0.940001-0.290001,1.539999s0.096701,1.1133,0.290001,1.540001c0.1933,0.426601,0.459999,0.7533,0.799999,0.98c0.346701,0.226601,0.7467,0.34,1.200001,0.34c0.619999,0,1.099998-0.16,1.439999-0.48c0.34-0.326698,0.553299-0.766701,0.639999-1.32l0.91,0.060001c-0.0867,0.513302-0.256699,0.963299-0.509998,1.349998c-0.2533,0.3866-0.59,0.689999-1.009998,0.91C33.7299,36.5499,33.239899,36.656601,32.673199,36.656601z M39.164501,36.496601c0-0.5,0.076599-0.950001,0.23-1.349998c0.16-0.4067,0.4366-0.7934,0.830002-1.16c0.400002-0.366699,0.9533-0.736698,1.66-1.110001c0.326599-0.173401,0.59-0.333401,0.790001-0.48c0.200001-0.146702,0.3466-0.303398,0.439999-0.469999c0.0933-0.1667,0.139999-0.370001,0.139999-0.610001c0-0.2467-0.053398-0.459999-0.16-0.639999c-0.106701-0.186701-0.266701-0.333401-0.48-0.440001c-0.206699-0.106701-0.466702-0.16-0.779999-0.16c-0.5,0-0.896702,0.129999-1.189999,0.389999c-0.286701,0.26-0.466702,0.629999-0.540001,1.110001l-0.900002-0.059999c0.080002-0.693399,0.3466-1.2467,0.799999-1.66c0.4533-0.413401,1.063301-0.620001,1.830002-0.620001c0.486599,0,0.903301,0.086599,1.25,0.26c0.3466,0.1733,0.610001,0.416599,0.790001,0.73c0.1866,0.306601,0.279999,0.6633,0.279999,1.07c0,0.360001-0.060001,0.6733-0.18,0.940001c-0.119999,0.259998-0.323399,0.5033-0.610001,0.73c-0.279999,0.226601-0.666698,0.470001-1.16,0.73c-0.639999,0.34-1.126701,0.6833-1.459999,1.029999c-0.326698,0.3466-0.5,0.656601-0.52,0.93h3.93v0.84H39.164501z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M15.9129,27.0574l2.56-7.1h1.16l2.559999,7.1h-0.940001l-0.709999-2.02h-2.98l-0.709999,2.02H15.9129zM17.8529,24.197399h2.4l-1.200001-3.49L17.8529,24.197399z M23.1173,27.0574v-7.1h0.860001v7.1H23.1173z M28.395901,27.2174c-0.6334,0-1.190001-0.1467-1.67-0.440001c-0.48-0.299999-0.853399-0.7267-1.120001-1.280001c-0.266701-0.5534-0.4-1.2134-0.4-1.98c0-0.766701,0.133301-1.426701,0.4-1.98c0.2666-0.559999,0.639999-0.99,1.120001-1.290001s1.0366-0.450001,1.67-0.450001c0.860001,0,1.5266,0.2166,2,0.65c0.473301,0.4333,0.7833,1.0233,0.93,1.77l-0.91,0.059999c-0.1-0.506701-0.3134-0.9067-0.639999-1.200001c-0.3267-0.2934-0.786699-0.440001-1.379999-0.440001c-0.4534,0-0.853399,0.1166-1.200001,0.35c-0.34,0.226601-0.606701,0.556601-0.799999,0.99c-0.193399,0.4266-0.290001,0.940001-0.290001,1.539999s0.0966,1.1133,0.290001,1.540001c0.1933,0.4266,0.459999,0.7533,0.799999,0.98c0.3466,0.226601,0.746599,0.34,1.200001,0.34c0.620001,0,1.1-0.16,1.440001-0.48c0.34-0.3267,0.553301-0.766701,0.639999-1.32l0.91,0.059999c-0.0867,0.5133-0.256701,0.963301-0.51,1.35c-0.253401,0.3866-0.59,0.690001-1.01,0.91C29.452499,27.110701,28.9625,27.2174,28.395901,27.2174z M32.726601,27.0574v-7.1H35.2766c0.7934,0,1.41,0.190001,1.849998,0.57s0.66,0.906599,0.66,1.58c0,0.4533-0.099998,0.8466-0.299999,1.18c-0.200001,0.326599-0.486599,0.576599-0.860001,0.75c-0.373299,0.1733-0.823299,0.26-1.349998,0.26h-1.689999v2.76H32.726601zM33.586601,23.457399H35.2766c0.533401,0,0.933399-0.1134,1.200001-0.34c0.273399-0.2267,0.41-0.5634,0.41-1.01c0-0.433399-0.1366-0.76-0.41-0.98c-0.266602-0.219999-0.666599-0.33-1.200001-0.33h-1.689999V23.457399z M37.8074,27.0574l2.560001-7.1h1.16l2.560001,7.1h-0.939999l-0.709999-2.02h-2.98l-0.709999,2.02H37.8074z M39.747398,24.197399H42.1474l-1.200001-3.49L39.747398,24.197399z"
|
||||
/>
|
||||
</svg>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1,36 +1,36 @@
|
||||
export function SOC2_TYPE1() {
|
||||
return (
|
||||
<svg
|
||||
version="1.1"
|
||||
id="Layer_1"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlnsXlink="http://www.w3.org/1999/xlink"
|
||||
x="0px"
|
||||
y="0px"
|
||||
viewBox="0 0 60 60"
|
||||
enable-background="new 0 0 60 60"
|
||||
xmlSpace="preserve"
|
||||
>
|
||||
<path
|
||||
className="fill-none stroke-txt-primary"
|
||||
d="M53.766602,16.297899c0.002499,0.042101,0.005901,0.0895,0.008801,0.1416c0.014599,0.2644,0.032501,0.654699,0.045898,1.154301c0.026798,0.9998,0.0354,2.437401-0.039101,4.1796c-0.148998,3.486599-0.628498,8.185101-1.9482,13.046898C49.1991,44.527,43.2533,54.779999,30,57.4883C16.746799,54.779999,10.8009,44.527,8.166,34.820301C6.8463,29.9585,6.3667,25.26,6.2178,21.773399c-0.0744-1.742201-0.0658-3.1798-0.0391-4.1796c0.0134-0.499599,0.0313-0.8899,0.0459-1.154301c0.0029-0.052099,0.0053-0.099501,0.0078-0.1416L30,2.5762L53.766602,16.297899z"
|
||||
/>
|
||||
<path
|
||||
className="fill-none stroke-txt-primary"
|
||||
d="M49.890099,18.444099c0.001598,0.027201,0.0042,0.056601,0.005901,0.0879c0.012199,0.2304,0.027802,0.5704,0.039101,1.0058c0.0224,0.871201,0.029202,2.1231-0.033199,3.640699c-0.125099,3.0373-0.528099,7.1287-1.635799,11.355398c-2.212002,8.440601-7.193298,17.298798-18.2666,19.570297c-11.072401-2.2719-16.053699-11.130001-18.2656-19.570297c-1.1077-4.2267-1.5107-8.3181-1.6358-11.3554c-0.0624-1.5175-0.0556-2.769501-0.0332-3.640699c0.0113-0.4354,0.0269-0.7754,0.0391-1.0058c0.0017-0.0313,0.0033-0.060699,0.0049-0.0879L29.9995,6.9597L49.890099,18.444099z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M20.3283,44.011002v-4.888h-1.743999v-0.792h4.352001v0.792h-1.743999v4.888H20.3283z M23.5236,45.210999v-0.695999h0.52c0.143999,0,0.2507-0.021301,0.32-0.063999s0.1227-0.1147,0.16-0.216l0.136-0.352001h-0.264L22.8596,39.755001h0.896l1.167999,3.344002l1.112-3.344002h0.903999L25.243599,44.507c-0.0853,0.2453-0.213301,0.424-0.384001,0.535999c-0.1653,0.112-0.397301,0.167999-0.695999,0.167999H23.5236z M27.518,45.210999v-5.456001h0.799999l0.024,0.911999l-0.096001-0.048c0.1066-0.314701,0.2826-0.551998,0.528-0.712002c0.2453-0.165298,0.528-0.248001,0.848-0.248001c0.416,0,0.757299,0.104,1.024,0.312c0.271999,0.202702,0.472,0.472,0.6,0.807999c0.133301,0.335999,0.200001,0.703999,0.200001,1.104s-0.0667,0.768002-0.200001,1.104c-0.128,0.335999-0.327999,0.608002-0.6,0.816002c-0.266701,0.202702-0.608,0.304001-1.024,0.304001c-0.2134,0-0.413401-0.0373-0.6-0.112c-0.186701-0.074699-0.346701-0.178699-0.48-0.312c-0.128-0.138699-0.2187-0.3013-0.271999-0.487999l0.096001-0.096001v2.112L27.518,45.210999z M29.469999,43.370998c0.341299,0,0.608-0.130699,0.799999-0.391998c0.1973-0.261299,0.296-0.626701,0.296-1.096001s-0.0987-0.834702-0.296-1.096001C30.077999,40.5257,29.811298,40.395,29.469999,40.395c-0.224001,0-0.418699,0.056-0.584,0.167999c-0.1654,0.106701-0.2934,0.271999-0.384001,0.495998c-0.0907,0.223999-0.136,0.498699-0.136,0.824001s0.042601,0.599998,0.128,0.824001c0.090599,0.223999,0.218599,0.391998,0.384001,0.504002C29.048599,43.317699,29.246,43.370998,29.469999,43.370998z M34.058998,44.106998c-0.416,0-0.776001-0.090698-1.080002-0.271999c-0.298599-0.181301-0.530602-0.439999-0.695999-0.776001c-0.16-0.335999-0.240002-0.728001-0.240002-1.175999S32.122997,41.0457,32.282997,40.715c0.165401-0.335999,0.3974-0.5947,0.695999-0.776001c0.298698-0.186699,0.6507-0.279999,1.056-0.279999c0.383999,0,0.722698,0.090698,1.015999,0.271999c0.2934,0.175999,0.52,0.431999,0.68,0.768002c0.165401,0.335999,0.248001,0.741299,0.248001,1.216v0.216h-3.056c0.0214,0.416,0.130699,0.728001,0.327999,0.936001c0.202702,0.208,0.474701,0.312,0.815998,0.312c0.250702,0,0.458698-0.058701,0.624001-0.175999c0.165401-0.117298,0.279999-0.2747,0.344002-0.472l0.880001,0.056c-0.112,0.394699-0.333302,0.714699-0.664001,0.959999C34.925701,43.987,34.5284,44.106998,34.058998,44.106998z M32.923,41.491001h2.16c-0.0266-0.3787-0.136002-0.658699-0.327999-0.84c-0.1866-0.181301-0.426601-0.271999-0.720001-0.271999c-0.304001,0-0.5546,0.096001-0.751999,0.287998C33.091,40.853699,32.971001,41.1283,32.923,41.491001z M39.773701,44.011002v-4.048H38.5737v-0.695999h0.487999c0.213402,0,0.3867-0.026699,0.52-0.080002c0.1334-0.058701,0.229401-0.154701,0.287998-0.287998c0.058701-0.138699,0.088001-0.327999,0.088001-0.568001h0.68v5.68H39.773701z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M18.604099,36.656601c-0.5466,0-1.0233-0.103401-1.43-0.310001c-0.406601-0.206699-0.73-0.490002-0.969999-0.849998c-0.2333-0.366699-0.37-0.790001-0.41-1.27l0.9-0.060001c0.0467,0.353298,0.15,0.653301,0.309999,0.900002c0.16,0.246601,0.3734,0.4333,0.639999,0.560001c0.273399,0.126598,0.6,0.189999,0.98,0.189999c0.333401,0,0.616699-0.0434,0.85-0.130001c0.2334-0.0867,0.41-0.213402,0.530001-0.380001c0.126699-0.166698,0.190001-0.369999,0.190001-0.610001c0-0.220001-0.053301-0.413399-0.16-0.580002c-0.1-0.173401-0.2966-0.330002-0.59-0.470001c-0.2866-0.146702-0.713301-0.290001-1.280001-0.43c-0.5466-0.139999-0.983299-0.2934-1.309999-0.459999c-0.32-0.166698-0.553301-0.369999-0.700001-0.610001c-0.139999-0.24-0.21-0.536699-0.21-0.889999c0-0.4,0.0934-0.75,0.28-1.049999c0.193399-0.3067,0.4667-0.5434,0.82-0.709999c0.353399-0.173401,0.773399-0.26,1.26-0.26c0.52,0,0.9667,0.1,1.34,0.299999c0.3734,0.1933,0.67,0.459999,0.889999,0.799999s0.356701,0.726601,0.41,1.16l-0.9,0.059999c-0.040001-0.286699-0.133301-0.540001-0.280001-0.76c-0.139999-0.2267-0.3333-0.4034-0.58-0.530001c-0.246599-0.126699-0.5466-0.190001-0.9-0.190001c-0.440001,0-0.790001,0.1066-1.049999,0.32c-0.26,0.2066-0.389999,0.48-0.389999,0.82c0,0.219999,0.049999,0.403299,0.15,0.549999c0.106701,0.139999,0.2934,0.2666,0.559999,0.379999c0.266701,0.106602,0.65,0.223301,1.15,0.349998c0.593399,0.146599,1.0634,0.323299,1.41,0.529999c0.353399,0.200001,0.603399,0.4333,0.75,0.700001c0.1534,0.266602,0.23,0.57,0.23,0.91c0,0.4133-0.1066,0.7733-0.32,1.080002c-0.213301,0.299999-0.506599,0.533298-0.879999,0.700001C19.5208,36.576599,19.090799,36.656601,18.604099,36.656601zM25.330601,36.656601c-0.6733,0-1.2533-0.146702-1.74-0.439999c-0.48-0.299999-0.85-0.7267-1.110001-1.279999c-0.26-0.553398-0.389999-1.213402-0.389999-1.98c0-0.766701,0.129999-1.426701,0.389999-1.98c0.26-0.559999,0.629999-0.99,1.110001-1.290001c0.4867-0.299999,1.0667-0.450001,1.74-0.450001c0.68,0,1.26,0.15,1.74,0.450001c0.4867,0.299999,0.860001,0.73,1.120001,1.290001c0.26,0.553301,0.389999,1.213299,0.389999,1.98c0,0.766602-0.129999,1.426601-0.389999,1.98c-0.26,0.553299-0.633301,0.98-1.120001,1.279999C26.590599,36.509899,26.010599,36.656601,25.330601,36.656601z M25.330601,35.816601c0.493401,0,0.913401-0.1134,1.26-0.34c0.353399-0.2267,0.6234-0.553398,0.809999-0.98c0.186701-0.426701,0.280001-0.939999,0.280001-1.540001s-0.0933-1.1134-0.280001-1.540001c-0.1866-0.433399-0.4566-0.763399-0.809999-0.99c-0.3466-0.2334-0.7666-0.35-1.26-0.35c-0.486601,0-0.906601,0.1166-1.26,0.35c-0.3466,0.226601-0.6133,0.556601-0.799999,0.99c-0.1866,0.4266-0.280001,0.939999-0.280001,1.540001s0.093399,1.1133,0.280001,1.540001c0.186701,0.426601,0.4534,0.7533,0.799999,0.98C24.424,35.703201,24.844,35.816601,25.330601,35.816601z M32.673199,36.656601c-0.633301,0-1.190001-0.146702-1.67-0.439999c-0.48-0.299999-0.8533-0.7267-1.120001-1.279999c-0.266701-0.553398-0.4-1.213402-0.4-1.98c0-0.766701,0.133301-1.426701,0.4-1.98c0.266701-0.559999,0.639999-0.99,1.120001-1.290001s1.036699-0.450001,1.67-0.450001c0.860001,0,1.526699,0.2166,2,0.65c0.473301,0.4333,0.783298,1.0233,0.93,1.77l-0.91,0.059999c-0.099998-0.506701-0.313301-0.9067-0.639999-1.200001c-0.326698-0.2934-0.786701-0.440001-1.380001-0.440001c-0.4533,0-0.8533,0.1166-1.200001,0.35c-0.34,0.226601-0.606701,0.556601-0.799999,0.99c-0.1933,0.4266-0.290001,0.940001-0.290001,1.539999s0.096701,1.1133,0.290001,1.540001c0.1933,0.426601,0.459999,0.7533,0.799999,0.98c0.346701,0.226601,0.7467,0.34,1.200001,0.34c0.619999,0,1.099998-0.16,1.439999-0.48c0.34-0.326698,0.553299-0.766701,0.639999-1.32l0.91,0.060001c-0.0867,0.513302-0.256699,0.963299-0.509998,1.349998c-0.2533,0.3866-0.59,0.689999-1.009998,0.91C33.7299,36.5499,33.239899,36.656601,32.673199,36.656601z M39.164501,36.496601c0-0.5,0.076599-0.950001,0.23-1.349998c0.16-0.4067,0.4366-0.7934,0.830002-1.16c0.400002-0.366699,0.9533-0.736698,1.66-1.110001c0.326599-0.173401,0.59-0.333401,0.790001-0.48c0.200001-0.146702,0.3466-0.303398,0.439999-0.469999c0.0933-0.1667,0.139999-0.370001,0.139999-0.610001c0-0.2467-0.053398-0.459999-0.16-0.639999c-0.106701-0.186701-0.266701-0.333401-0.48-0.440001c-0.206699-0.106701-0.466702-0.16-0.779999-0.16c-0.5,0-0.896702,0.129999-1.189999,0.389999c-0.286701,0.26-0.466702,0.629999-0.540001,1.110001l-0.900002-0.059999c0.080002-0.693399,0.3466-1.2467,0.799999-1.66c0.4533-0.413401,1.063301-0.620001,1.830002-0.620001c0.486599,0,0.903301,0.086599,1.25,0.26c0.3466,0.1733,0.610001,0.416599,0.790001,0.73c0.1866,0.306601,0.279999,0.6633,0.279999,1.07c0,0.360001-0.060001,0.6733-0.18,0.940001c-0.119999,0.259998-0.323399,0.5033-0.610001,0.73c-0.279999,0.226601-0.666698,0.470001-1.16,0.73c-0.639999,0.34-1.126701,0.6833-1.459999,1.029999c-0.326698,0.3466-0.5,0.656601-0.52,0.93h3.93v0.84H39.164501z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M15.9129,27.0574l2.56-7.1h1.16l2.559999,7.1h-0.940001l-0.709999-2.02h-2.98l-0.709999,2.02H15.9129zM17.8529,24.197399h2.4l-1.200001-3.49L17.8529,24.197399z M23.1173,27.0574v-7.1h0.860001v7.1H23.1173z M28.395901,27.2174c-0.6334,0-1.190001-0.1467-1.67-0.440001c-0.48-0.299999-0.853399-0.7267-1.120001-1.280001c-0.266701-0.5534-0.4-1.2134-0.4-1.98c0-0.766701,0.133301-1.426701,0.4-1.98c0.2666-0.559999,0.639999-0.99,1.120001-1.290001s1.0366-0.450001,1.67-0.450001c0.860001,0,1.5266,0.2166,2,0.65c0.473301,0.4333,0.7833,1.0233,0.93,1.77l-0.91,0.059999c-0.1-0.506701-0.3134-0.9067-0.639999-1.200001c-0.3267-0.2934-0.786699-0.440001-1.379999-0.440001c-0.4534,0-0.853399,0.1166-1.200001,0.35c-0.34,0.226601-0.606701,0.556601-0.799999,0.99c-0.193399,0.4266-0.290001,0.940001-0.290001,1.539999s0.0966,1.1133,0.290001,1.540001c0.1933,0.4266,0.459999,0.7533,0.799999,0.98c0.3466,0.226601,0.746599,0.34,1.200001,0.34c0.620001,0,1.1-0.16,1.440001-0.48c0.34-0.3267,0.553301-0.766701,0.639999-1.32l0.91,0.059999c-0.0867,0.5133-0.256701,0.963301-0.51,1.35c-0.253401,0.3866-0.59,0.690001-1.01,0.91C29.452499,27.110701,28.9625,27.2174,28.395901,27.2174z M32.726601,27.0574v-7.1H35.2766c0.7934,0,1.41,0.190001,1.849998,0.57s0.66,0.906599,0.66,1.58c0,0.4533-0.099998,0.8466-0.299999,1.18c-0.200001,0.326599-0.486599,0.576599-0.860001,0.75c-0.373299,0.1733-0.823299,0.26-1.349998,0.26h-1.689999v2.76H32.726601zM33.586601,23.457399H35.2766c0.533401,0,0.933399-0.1134,1.200001-0.34c0.273399-0.2267,0.41-0.5634,0.41-1.01c0-0.433399-0.1366-0.76-0.41-0.98c-0.266602-0.219999-0.666599-0.33-1.200001-0.33h-1.689999V23.457399z M37.8074,27.0574l2.560001-7.1h1.16l2.560001,7.1h-0.939999l-0.709999-2.02h-2.98l-0.709999,2.02H37.8074z M39.747398,24.197399H42.1474l-1.200001-3.49L39.747398,24.197399z"
|
||||
/>
|
||||
</svg>
|
||||
);
|
||||
return (
|
||||
<svg
|
||||
version="1.1"
|
||||
id="Layer_1"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlnsXlink="http://www.w3.org/1999/xlink"
|
||||
x="0px"
|
||||
y="0px"
|
||||
viewBox="0 0 60 60"
|
||||
enable-background="new 0 0 60 60"
|
||||
xmlSpace="preserve"
|
||||
>
|
||||
<path
|
||||
className="fill-none stroke-txt-primary"
|
||||
d="M53.766602,16.297899c0.002499,0.042101,0.005901,0.0895,0.008801,0.1416c0.014599,0.2644,0.032501,0.654699,0.045898,1.154301c0.026798,0.9998,0.0354,2.437401-0.039101,4.1796c-0.148998,3.486599-0.628498,8.185101-1.9482,13.046898C49.1991,44.527,43.2533,54.779999,30,57.4883C16.746799,54.779999,10.8009,44.527,8.166,34.820301C6.8463,29.9585,6.3667,25.26,6.2178,21.773399c-0.0744-1.742201-0.0658-3.1798-0.0391-4.1796c0.0134-0.499599,0.0313-0.8899,0.0459-1.154301c0.0029-0.052099,0.0053-0.099501,0.0078-0.1416L30,2.5762L53.766602,16.297899z"
|
||||
/>
|
||||
<path
|
||||
className="fill-none stroke-txt-primary"
|
||||
d="M49.890099,18.444099c0.001598,0.027201,0.0042,0.056601,0.005901,0.0879c0.012199,0.2304,0.027802,0.5704,0.039101,1.0058c0.0224,0.871201,0.029202,2.1231-0.033199,3.640699c-0.125099,3.0373-0.528099,7.1287-1.635799,11.355398c-2.212002,8.440601-7.193298,17.298798-18.2666,19.570297c-11.072401-2.2719-16.053699-11.130001-18.2656-19.570297c-1.1077-4.2267-1.5107-8.3181-1.6358-11.3554c-0.0624-1.5175-0.0556-2.769501-0.0332-3.640699c0.0113-0.4354,0.0269-0.7754,0.0391-1.0058c0.0017-0.0313,0.0033-0.060699,0.0049-0.0879L29.9995,6.9597L49.890099,18.444099z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M20.3283,44.011002v-4.888h-1.743999v-0.792h4.352001v0.792h-1.743999v4.888H20.3283z M23.5236,45.210999v-0.695999h0.52c0.143999,0,0.2507-0.021301,0.32-0.063999s0.1227-0.1147,0.16-0.216l0.136-0.352001h-0.264L22.8596,39.755001h0.896l1.167999,3.344002l1.112-3.344002h0.903999L25.243599,44.507c-0.0853,0.2453-0.213301,0.424-0.384001,0.535999c-0.1653,0.112-0.397301,0.167999-0.695999,0.167999H23.5236z M27.518,45.210999v-5.456001h0.799999l0.024,0.911999l-0.096001-0.048c0.1066-0.314701,0.2826-0.551998,0.528-0.712002c0.2453-0.165298,0.528-0.248001,0.848-0.248001c0.416,0,0.757299,0.104,1.024,0.312c0.271999,0.202702,0.472,0.472,0.6,0.807999c0.133301,0.335999,0.200001,0.703999,0.200001,1.104s-0.0667,0.768002-0.200001,1.104c-0.128,0.335999-0.327999,0.608002-0.6,0.816002c-0.266701,0.202702-0.608,0.304001-1.024,0.304001c-0.2134,0-0.413401-0.0373-0.6-0.112c-0.186701-0.074699-0.346701-0.178699-0.48-0.312c-0.128-0.138699-0.2187-0.3013-0.271999-0.487999l0.096001-0.096001v2.112L27.518,45.210999z M29.469999,43.370998c0.341299,0,0.608-0.130699,0.799999-0.391998c0.1973-0.261299,0.296-0.626701,0.296-1.096001s-0.0987-0.834702-0.296-1.096001C30.077999,40.5257,29.811298,40.395,29.469999,40.395c-0.224001,0-0.418699,0.056-0.584,0.167999c-0.1654,0.106701-0.2934,0.271999-0.384001,0.495998c-0.0907,0.223999-0.136,0.498699-0.136,0.824001s0.042601,0.599998,0.128,0.824001c0.090599,0.223999,0.218599,0.391998,0.384001,0.504002C29.048599,43.317699,29.246,43.370998,29.469999,43.370998z M34.058998,44.106998c-0.416,0-0.776001-0.090698-1.080002-0.271999c-0.298599-0.181301-0.530602-0.439999-0.695999-0.776001c-0.16-0.335999-0.240002-0.728001-0.240002-1.175999S32.122997,41.0457,32.282997,40.715c0.165401-0.335999,0.3974-0.5947,0.695999-0.776001c0.298698-0.186699,0.6507-0.279999,1.056-0.279999c0.383999,0,0.722698,0.090698,1.015999,0.271999c0.2934,0.175999,0.52,0.431999,0.68,0.768002c0.165401,0.335999,0.248001,0.741299,0.248001,1.216v0.216h-3.056c0.0214,0.416,0.130699,0.728001,0.327999,0.936001c0.202702,0.208,0.474701,0.312,0.815998,0.312c0.250702,0,0.458698-0.058701,0.624001-0.175999c0.165401-0.117298,0.279999-0.2747,0.344002-0.472l0.880001,0.056c-0.112,0.394699-0.333302,0.714699-0.664001,0.959999C34.925701,43.987,34.5284,44.106998,34.058998,44.106998z M32.923,41.491001h2.16c-0.0266-0.3787-0.136002-0.658699-0.327999-0.84c-0.1866-0.181301-0.426601-0.271999-0.720001-0.271999c-0.304001,0-0.5546,0.096001-0.751999,0.287998C33.091,40.853699,32.971001,41.1283,32.923,41.491001z M39.773701,44.011002v-4.048H38.5737v-0.695999h0.487999c0.213402,0,0.3867-0.026699,0.52-0.080002c0.1334-0.058701,0.229401-0.154701,0.287998-0.287998c0.058701-0.138699,0.088001-0.327999,0.088001-0.568001h0.68v5.68H39.773701z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M18.604099,36.656601c-0.5466,0-1.0233-0.103401-1.43-0.310001c-0.406601-0.206699-0.73-0.490002-0.969999-0.849998c-0.2333-0.366699-0.37-0.790001-0.41-1.27l0.9-0.060001c0.0467,0.353298,0.15,0.653301,0.309999,0.900002c0.16,0.246601,0.3734,0.4333,0.639999,0.560001c0.273399,0.126598,0.6,0.189999,0.98,0.189999c0.333401,0,0.616699-0.0434,0.85-0.130001c0.2334-0.0867,0.41-0.213402,0.530001-0.380001c0.126699-0.166698,0.190001-0.369999,0.190001-0.610001c0-0.220001-0.053301-0.413399-0.16-0.580002c-0.1-0.173401-0.2966-0.330002-0.59-0.470001c-0.2866-0.146702-0.713301-0.290001-1.280001-0.43c-0.5466-0.139999-0.983299-0.2934-1.309999-0.459999c-0.32-0.166698-0.553301-0.369999-0.700001-0.610001c-0.139999-0.24-0.21-0.536699-0.21-0.889999c0-0.4,0.0934-0.75,0.28-1.049999c0.193399-0.3067,0.4667-0.5434,0.82-0.709999c0.353399-0.173401,0.773399-0.26,1.26-0.26c0.52,0,0.9667,0.1,1.34,0.299999c0.3734,0.1933,0.67,0.459999,0.889999,0.799999s0.356701,0.726601,0.41,1.16l-0.9,0.059999c-0.040001-0.286699-0.133301-0.540001-0.280001-0.76c-0.139999-0.2267-0.3333-0.4034-0.58-0.530001c-0.246599-0.126699-0.5466-0.190001-0.9-0.190001c-0.440001,0-0.790001,0.1066-1.049999,0.32c-0.26,0.2066-0.389999,0.48-0.389999,0.82c0,0.219999,0.049999,0.403299,0.15,0.549999c0.106701,0.139999,0.2934,0.2666,0.559999,0.379999c0.266701,0.106602,0.65,0.223301,1.15,0.349998c0.593399,0.146599,1.0634,0.323299,1.41,0.529999c0.353399,0.200001,0.603399,0.4333,0.75,0.700001c0.1534,0.266602,0.23,0.57,0.23,0.91c0,0.4133-0.1066,0.7733-0.32,1.080002c-0.213301,0.299999-0.506599,0.533298-0.879999,0.700001C19.5208,36.576599,19.090799,36.656601,18.604099,36.656601zM25.330601,36.656601c-0.6733,0-1.2533-0.146702-1.74-0.439999c-0.48-0.299999-0.85-0.7267-1.110001-1.279999c-0.26-0.553398-0.389999-1.213402-0.389999-1.98c0-0.766701,0.129999-1.426701,0.389999-1.98c0.26-0.559999,0.629999-0.99,1.110001-1.290001c0.4867-0.299999,1.0667-0.450001,1.74-0.450001c0.68,0,1.26,0.15,1.74,0.450001c0.4867,0.299999,0.860001,0.73,1.120001,1.290001c0.26,0.553301,0.389999,1.213299,0.389999,1.98c0,0.766602-0.129999,1.426601-0.389999,1.98c-0.26,0.553299-0.633301,0.98-1.120001,1.279999C26.590599,36.509899,26.010599,36.656601,25.330601,36.656601z M25.330601,35.816601c0.493401,0,0.913401-0.1134,1.26-0.34c0.353399-0.2267,0.6234-0.553398,0.809999-0.98c0.186701-0.426701,0.280001-0.939999,0.280001-1.540001s-0.0933-1.1134-0.280001-1.540001c-0.1866-0.433399-0.4566-0.763399-0.809999-0.99c-0.3466-0.2334-0.7666-0.35-1.26-0.35c-0.486601,0-0.906601,0.1166-1.26,0.35c-0.3466,0.226601-0.6133,0.556601-0.799999,0.99c-0.1866,0.4266-0.280001,0.939999-0.280001,1.540001s0.093399,1.1133,0.280001,1.540001c0.186701,0.426601,0.4534,0.7533,0.799999,0.98C24.424,35.703201,24.844,35.816601,25.330601,35.816601z M32.673199,36.656601c-0.633301,0-1.190001-0.146702-1.67-0.439999c-0.48-0.299999-0.8533-0.7267-1.120001-1.279999c-0.266701-0.553398-0.4-1.213402-0.4-1.98c0-0.766701,0.133301-1.426701,0.4-1.98c0.266701-0.559999,0.639999-0.99,1.120001-1.290001s1.036699-0.450001,1.67-0.450001c0.860001,0,1.526699,0.2166,2,0.65c0.473301,0.4333,0.783298,1.0233,0.93,1.77l-0.91,0.059999c-0.099998-0.506701-0.313301-0.9067-0.639999-1.200001c-0.326698-0.2934-0.786701-0.440001-1.380001-0.440001c-0.4533,0-0.8533,0.1166-1.200001,0.35c-0.34,0.226601-0.606701,0.556601-0.799999,0.99c-0.1933,0.4266-0.290001,0.940001-0.290001,1.539999s0.096701,1.1133,0.290001,1.540001c0.1933,0.426601,0.459999,0.7533,0.799999,0.98c0.346701,0.226601,0.7467,0.34,1.200001,0.34c0.619999,0,1.099998-0.16,1.439999-0.48c0.34-0.326698,0.553299-0.766701,0.639999-1.32l0.91,0.060001c-0.0867,0.513302-0.256699,0.963299-0.509998,1.349998c-0.2533,0.3866-0.59,0.689999-1.009998,0.91C33.7299,36.5499,33.239899,36.656601,32.673199,36.656601z M39.164501,36.496601c0-0.5,0.076599-0.950001,0.23-1.349998c0.16-0.4067,0.4366-0.7934,0.830002-1.16c0.400002-0.366699,0.9533-0.736698,1.66-1.110001c0.326599-0.173401,0.59-0.333401,0.790001-0.48c0.200001-0.146702,0.3466-0.303398,0.439999-0.469999c0.0933-0.1667,0.139999-0.370001,0.139999-0.610001c0-0.2467-0.053398-0.459999-0.16-0.639999c-0.106701-0.186701-0.266701-0.333401-0.48-0.440001c-0.206699-0.106701-0.466702-0.16-0.779999-0.16c-0.5,0-0.896702,0.129999-1.189999,0.389999c-0.286701,0.26-0.466702,0.629999-0.540001,1.110001l-0.900002-0.059999c0.080002-0.693399,0.3466-1.2467,0.799999-1.66c0.4533-0.413401,1.063301-0.620001,1.830002-0.620001c0.486599,0,0.903301,0.086599,1.25,0.26c0.3466,0.1733,0.610001,0.416599,0.790001,0.73c0.1866,0.306601,0.279999,0.6633,0.279999,1.07c0,0.360001-0.060001,0.6733-0.18,0.940001c-0.119999,0.259998-0.323399,0.5033-0.610001,0.73c-0.279999,0.226601-0.666698,0.470001-1.16,0.73c-0.639999,0.34-1.126701,0.6833-1.459999,1.029999c-0.326698,0.3466-0.5,0.656601-0.52,0.93h3.93v0.84H39.164501z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M15.9129,27.0574l2.56-7.1h1.16l2.559999,7.1h-0.940001l-0.709999-2.02h-2.98l-0.709999,2.02H15.9129zM17.8529,24.197399h2.4l-1.200001-3.49L17.8529,24.197399z M23.1173,27.0574v-7.1h0.860001v7.1H23.1173z M28.395901,27.2174c-0.6334,0-1.190001-0.1467-1.67-0.440001c-0.48-0.299999-0.853399-0.7267-1.120001-1.280001c-0.266701-0.5534-0.4-1.2134-0.4-1.98c0-0.766701,0.133301-1.426701,0.4-1.98c0.2666-0.559999,0.639999-0.99,1.120001-1.290001s1.0366-0.450001,1.67-0.450001c0.860001,0,1.5266,0.2166,2,0.65c0.473301,0.4333,0.7833,1.0233,0.93,1.77l-0.91,0.059999c-0.1-0.506701-0.3134-0.9067-0.639999-1.200001c-0.3267-0.2934-0.786699-0.440001-1.379999-0.440001c-0.4534,0-0.853399,0.1166-1.200001,0.35c-0.34,0.226601-0.606701,0.556601-0.799999,0.99c-0.193399,0.4266-0.290001,0.940001-0.290001,1.539999s0.0966,1.1133,0.290001,1.540001c0.1933,0.4266,0.459999,0.7533,0.799999,0.98c0.3466,0.226601,0.746599,0.34,1.200001,0.34c0.620001,0,1.1-0.16,1.440001-0.48c0.34-0.3267,0.553301-0.766701,0.639999-1.32l0.91,0.059999c-0.0867,0.5133-0.256701,0.963301-0.51,1.35c-0.253401,0.3866-0.59,0.690001-1.01,0.91C29.452499,27.110701,28.9625,27.2174,28.395901,27.2174z M32.726601,27.0574v-7.1H35.2766c0.7934,0,1.41,0.190001,1.849998,0.57s0.66,0.906599,0.66,1.58c0,0.4533-0.099998,0.8466-0.299999,1.18c-0.200001,0.326599-0.486599,0.576599-0.860001,0.75c-0.373299,0.1733-0.823299,0.26-1.349998,0.26h-1.689999v2.76H32.726601zM33.586601,23.457399H35.2766c0.533401,0,0.933399-0.1134,1.200001-0.34c0.273399-0.2267,0.41-0.5634,0.41-1.01c0-0.433399-0.1366-0.76-0.41-0.98c-0.266602-0.219999-0.666599-0.33-1.200001-0.33h-1.689999V23.457399z M37.8074,27.0574l2.560001-7.1h1.16l2.560001,7.1h-0.939999l-0.709999-2.02h-2.98l-0.709999,2.02H37.8074z M39.747398,24.197399H42.1474l-1.200001-3.49L39.747398,24.197399z"
|
||||
/>
|
||||
</svg>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1,36 +1,36 @@
|
||||
export function SOC2_TYPE2() {
|
||||
return (
|
||||
<svg
|
||||
version="1.1"
|
||||
id="Layer_1"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlnsXlink="http://www.w3.org/1999/xlink"
|
||||
x="0px"
|
||||
y="0px"
|
||||
viewBox="0 0 60 60"
|
||||
enable-background="new 0 0 60 60"
|
||||
xmlSpace="preserve"
|
||||
>
|
||||
<path
|
||||
className="fill-none stroke-txt-primary"
|
||||
d="M53.766602,16.297899c0.002499,0.042101,0.005901,0.0895,0.008801,0.1416c0.014599,0.2644,0.032501,0.654699,0.045898,1.154301c0.026798,0.9998,0.0354,2.437401-0.039101,4.1796c-0.148998,3.486599-0.628498,8.185101-1.9482,13.046898C49.1991,44.526997,43.2533,54.779999,30,57.488297c-13.253201-2.708302-19.1991-12.9613-21.833981-22.667999c-1.31967-4.861801-1.79927-9.560299-1.94825-13.0469c-0.07443-1.742201-0.06582-3.1798-0.03906-4.1796c0.01338-0.499599,0.03132-0.8899,0.0459-1.154301c0.00287-0.052099,0.00527-0.099501,0.00781-0.1416L30,2.576167L53.766602,16.297899z"
|
||||
/>
|
||||
<path
|
||||
className="fill-none stroke-txt-primary"
|
||||
d="M49.890099,18.444099c0.001598,0.027201,0.0042,0.056601,0.005901,0.0879c0.012199,0.2304,0.027802,0.5704,0.039101,1.0058c0.0224,0.871201,0.029202,2.1231-0.033199,3.640699c-0.125099,3.0373-0.528099,7.1287-1.635799,11.355398c-2.212002,8.440601-7.193298,17.298798-18.2666,19.570297c-11.072401-2.2719-16.053699-11.130001-18.2656-19.570297c-1.1077-4.2267-1.5107-8.3181-1.6358-11.3554c-0.0624-1.5175-0.0556-2.769501-0.0332-3.640699c0.0113-0.4354,0.0269-0.7754,0.0391-1.0058c0.0017-0.0313,0.0033-0.060699,0.0049-0.0879L29.9995,6.959718L49.890099,18.444099z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M18.604099,36.656601c-0.5466,0-1.0233-0.103401-1.43-0.310001c-0.406601-0.206699-0.73-0.490002-0.969999-0.849998c-0.2333-0.366699-0.37-0.790001-0.41-1.27l0.9-0.060001c0.0467,0.353298,0.15,0.653301,0.309999,0.900002c0.16,0.246601,0.3734,0.4333,0.639999,0.560001c0.273399,0.126598,0.6,0.189999,0.98,0.189999c0.333401,0,0.616699-0.0434,0.85-0.130001c0.2334-0.0867,0.41-0.213402,0.530001-0.380001c0.126699-0.166698,0.190001-0.369999,0.190001-0.610001c0-0.220001-0.053301-0.413399-0.16-0.580002c-0.1-0.173401-0.2966-0.330002-0.59-0.470001c-0.2866-0.146702-0.713301-0.290001-1.280001-0.43c-0.5466-0.139999-0.983299-0.2934-1.309999-0.459999c-0.32-0.166698-0.553301-0.369999-0.700001-0.610001c-0.139999-0.24-0.21-0.536699-0.21-0.889999c0-0.4,0.0934-0.75,0.28-1.049999c0.193399-0.3067,0.4667-0.5434,0.82-0.709999c0.353399-0.173401,0.773399-0.26,1.26-0.26c0.52,0,0.9667,0.1,1.34,0.299999c0.3734,0.1933,0.67,0.459999,0.889999,0.799999s0.356701,0.726601,0.41,1.16l-0.9,0.059999c-0.040001-0.286699-0.133301-0.540001-0.280001-0.76c-0.139999-0.2267-0.3333-0.4034-0.58-0.530001c-0.246599-0.126699-0.5466-0.190001-0.9-0.190001c-0.440001,0-0.790001,0.1066-1.049999,0.32c-0.26,0.2066-0.389999,0.48-0.389999,0.82c0,0.219999,0.049999,0.403299,0.15,0.549999c0.106701,0.139999,0.2934,0.2666,0.559999,0.379999c0.266701,0.106602,0.65,0.223301,1.15,0.349998c0.593399,0.146599,1.0634,0.323299,1.41,0.529999c0.353399,0.200001,0.603399,0.4333,0.75,0.700001c0.1534,0.266602,0.23,0.57,0.23,0.91c0,0.4133-0.1066,0.7733-0.32,1.080002c-0.213301,0.299999-0.506599,0.533298-0.879999,0.700001C19.520798,36.576591,19.090797,36.656593,18.604099,36.656601zM25.330599,36.656601c-0.6733,0-1.2533-0.146702-1.74-0.439999c-0.48-0.299999-0.85-0.7267-1.110001-1.279999c-0.26-0.553398-0.389999-1.213402-0.389999-1.98c0-0.766701,0.129999-1.426701,0.389999-1.98c0.26-0.559999,0.629999-0.99,1.110001-1.290001c0.4867-0.299999,1.0667-0.450001,1.74-0.450001c0.68,0,1.26,0.15,1.74,0.450001c0.4867,0.299999,0.860001,0.73,1.120001,1.290001c0.26,0.553301,0.389999,1.213299,0.389999,1.98c0,0.766602-0.129999,1.426601-0.389999,1.98c-0.26,0.553299-0.633301,0.98-1.120001,1.279999C26.590599,36.509903,26.010599,36.656601,25.330599,36.656601z M25.330599,35.816601c0.493401,0,0.913401-0.1134,1.26-0.34c0.353399-0.2267,0.6234-0.553398,0.809999-0.98c0.186701-0.426701,0.280001-0.939999,0.280001-1.540001s-0.0933-1.1134-0.280001-1.540001c-0.1866-0.433399-0.4566-0.763399-0.809999-0.99c-0.3466-0.2334-0.7666-0.35-1.26-0.35c-0.486601,0-0.906599,0.1166-1.26,0.35c-0.3466,0.226601-0.6133,0.556601-0.799999,0.99c-0.1866,0.4266-0.280001,0.939999-0.280001,1.540001s0.093401,1.1133,0.280001,1.540001c0.186701,0.426601,0.4534,0.7533,0.799999,0.98C24.423998,35.703201,24.843998,35.816601,25.330599,35.816601zM32.673199,36.656601c-0.633301,0-1.190001-0.146702-1.67-0.439999c-0.48-0.299999-0.8533-0.7267-1.120001-1.279999c-0.266701-0.553398-0.4-1.213402-0.4-1.98c0-0.766701,0.133301-1.426701,0.4-1.98c0.266701-0.559999,0.639999-0.99,1.120001-1.290001s1.036699-0.450001,1.67-0.450001c0.860001,0,1.526699,0.2166,2,0.65c0.473301,0.4333,0.783298,1.0233,0.93,1.77l-0.91,0.059999c-0.099998-0.506701-0.313301-0.9067-0.639999-1.200001c-0.326698-0.2934-0.786701-0.440001-1.380001-0.440001c-0.4533,0-0.8533,0.1166-1.200001,0.35c-0.34,0.226601-0.606701,0.556601-0.799999,0.99c-0.1933,0.4266-0.290001,0.940001-0.290001,1.539999s0.096701,1.1133,0.290001,1.540001c0.1933,0.426601,0.459999,0.7533,0.799999,0.98c0.346701,0.226601,0.7467,0.34,1.200001,0.34c0.619999,0,1.099998-0.16,1.439999-0.48c0.34-0.326698,0.553299-0.766701,0.639999-1.32l0.91,0.060001c-0.0867,0.513302-0.256699,0.963299-0.509998,1.349998c-0.2533,0.3866-0.59,0.689999-1.009998,0.91C33.7299,36.5499,33.239899,36.656601,32.673199,36.656601z M39.164497,36.496601c0-0.5,0.076599-0.950001,0.23-1.349998c0.16-0.4067,0.4366-0.7934,0.830002-1.16c0.400002-0.366699,0.9533-0.736698,1.66-1.110001c0.326599-0.173401,0.59-0.333401,0.790001-0.48c0.200001-0.146702,0.3466-0.303398,0.439999-0.469999c0.0933-0.1667,0.139999-0.370001,0.139999-0.610001c0-0.2467-0.053398-0.459999-0.16-0.639999c-0.106701-0.186701-0.266701-0.333401-0.48-0.440001c-0.206699-0.106701-0.466702-0.16-0.779999-0.16c-0.5,0-0.896702,0.129999-1.189999,0.389999c-0.286701,0.26-0.466702,0.629999-0.540001,1.110001l-0.900002-0.059999c0.080002-0.693399,0.3466-1.2467,0.799999-1.66c0.4533-0.413401,1.063301-0.620001,1.830002-0.620001c0.486599,0,0.903301,0.086599,1.25,0.26c0.3466,0.1733,0.610001,0.416599,0.790001,0.73c0.1866,0.306601,0.279999,0.6633,0.279999,1.07c0,0.360001-0.060001,0.6733-0.18,0.940001c-0.119999,0.259998-0.323399,0.5033-0.610001,0.73c-0.279999,0.226601-0.666698,0.470001-1.16,0.73c-0.639999,0.34-1.126701,0.6833-1.459999,1.029999c-0.326698,0.3466-0.5,0.656601-0.52,0.93h3.93v0.84H39.164497z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M15.9129,27.0574l2.56-7.1h1.16l2.559999,7.1h-0.940001l-0.709999-2.02h-2.98l-0.709999,2.02H15.9129zM17.8529,24.197399h2.4l-1.200001-3.49L17.8529,24.197399z M23.1173,27.0574v-7.1h0.860001v7.1H23.1173z M28.395901,27.2174c-0.6334,0-1.190001-0.1467-1.67-0.440001c-0.48-0.299999-0.853399-0.7267-1.120001-1.280001c-0.266701-0.5534-0.4-1.2134-0.4-1.98c0-0.766701,0.133301-1.426701,0.4-1.98c0.2666-0.559999,0.639999-0.99,1.120001-1.290001s1.0366-0.450001,1.67-0.450001c0.860001,0,1.5266,0.2166,2,0.65c0.473301,0.4333,0.7833,1.0233,0.93,1.77l-0.91,0.059999c-0.1-0.506701-0.3134-0.9067-0.639999-1.200001c-0.3267-0.2934-0.786699-0.440001-1.379999-0.440001c-0.4534,0-0.853399,0.1166-1.200001,0.35c-0.34,0.226601-0.606701,0.556601-0.799999,0.99c-0.193399,0.4266-0.290001,0.940001-0.290001,1.539999s0.0966,1.1133,0.290001,1.540001c0.1933,0.4266,0.459999,0.7533,0.799999,0.98c0.3466,0.226601,0.746599,0.34,1.200001,0.34c0.620001,0,1.1-0.16,1.440001-0.48c0.34-0.3267,0.553301-0.766701,0.639999-1.32l0.91,0.059999c-0.0867,0.5133-0.256701,0.963301-0.51,1.35c-0.253401,0.3866-0.59,0.690001-1.01,0.91C29.452501,27.110697,28.962502,27.217396,28.395901,27.2174z M32.726601,27.0574v-7.1H35.2766c0.7934,0,1.41,0.190001,1.849998,0.57s0.66,0.906599,0.66,1.58c0,0.4533-0.099998,0.8466-0.299999,1.18c-0.200001,0.326599-0.486599,0.576599-0.860001,0.75c-0.373299,0.1733-0.823299,0.26-1.349998,0.26h-1.689999v2.76H32.726601zM33.586601,23.457399H35.2766c0.533401,0,0.933399-0.1134,1.200001-0.34c0.273399-0.2267,0.41-0.5634,0.41-1.01c0-0.433399-0.1366-0.76-0.41-0.98c-0.266602-0.219999-0.666599-0.33-1.200001-0.33h-1.689999V23.457399z M37.8074,27.0574l2.560001-7.1h1.16l2.560001,7.1h-0.939999l-0.709999-2.02h-2.98l-0.709999,2.02H37.8074z M39.747398,24.197399H42.1474l-1.200001-3.49L39.747398,24.197399z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M19.9338,44.011002v-4.888H18.1898v-0.792H22.5418v0.792H20.7978v4.888H19.9338z M23.129101,45.210999v-0.695999h0.519999c0.144001,0,0.250601-0.021301,0.320002-0.063999c0.0693-0.042702,0.122599-0.1147,0.16-0.216l0.136-0.352001h-0.264l-1.536001-4.127998h0.896l1.168001,3.343998l1.112-3.343998h0.903999L24.8491,44.507c-0.0854,0.2453-0.2134,0.424-0.384001,0.535999c-0.1654,0.112-0.3974,0.167999-0.695999,0.167999H23.129101z M27.1234,45.210999v-5.455997h0.800001L27.947399,40.667l-0.095999-0.048c0.106699-0.314701,0.2827-0.551998,0.528-0.711998c0.245399-0.165302,0.528-0.248001,0.848-0.248001c0.416,0,0.757401,0.104,1.024,0.312c0.271999,0.202698,0.472,0.472,0.6,0.807999c0.1334,0.336002,0.199999,0.704002,0.199999,1.104c0,0.400002-0.066599,0.768002-0.199999,1.104c-0.128,0.336002-0.328001,0.608002-0.6,0.816002c-0.2666,0.202698-0.608,0.303997-1.024,0.303997c-0.213301,0-0.4133-0.0373-0.6-0.112c-0.1866-0.074699-0.3466-0.178699-0.48-0.312c-0.128-0.138699-0.218599-0.3013-0.271999-0.487999l0.095999-0.096001v2.112H27.1234z M29.075399,43.370998c0.3414,0,0.608-0.130699,0.800001-0.391998c0.197399-0.261299,0.296-0.626701,0.296-1.096001s-0.0986-0.834698-0.296-1.096001C29.683399,40.5257,29.4168,40.395,29.075399,40.395c-0.223999,0-0.4186,0.056-0.584,0.167999c-0.1653,0.106701-0.293301,0.271999-0.383999,0.495998c-0.090601,0.224003-0.136002,0.498703-0.136002,0.824001c0,0.325302,0.0427,0.600002,0.128,0.824001c0.0907,0.223999,0.2187,0.391998,0.384001,0.503998C28.6541,43.317699,28.8514,43.370998,29.075399,43.370998z M33.664501,44.106998c-0.416,0-0.776001-0.090698-1.080002-0.271999c-0.298698-0.181297-0.530701-0.439999-0.695999-0.776001c-0.16-0.335999-0.24-0.727997-0.24-1.175999c0-0.447998,0.08-0.837299,0.24-1.167999c0.165298-0.335999,0.397301-0.5947,0.695999-0.776001c0.298702-0.186699,0.6507-0.279999,1.056-0.279999c0.384003,0,0.722702,0.090698,1.016003,0.271999c0.293297,0.175999,0.519997,0.431999,0.679996,0.768002c0.165302,0.335999,0.248001,0.741299,0.248001,1.216v0.216h-3.056c0.021301,0.416,0.130699,0.728001,0.327999,0.936001c0.202702,0.208,0.474701,0.312,0.816002,0.312c0.250698,0,0.458698-0.058701,0.624001-0.176003c0.165298-0.117298,0.279999-0.2747,0.343998-0.472l0.880001,0.056c-0.112,0.394703-0.333302,0.714703-0.664001,0.960003C34.5312,43.987,34.133801,44.106998,33.664501,44.106998z M32.5285,41.491001h2.16c-0.026699-0.3787-0.135998-0.658703-0.327999-0.84c-0.186699-0.181301-0.426701-0.271999-0.720001-0.271999c-0.304001,0-0.554699,0.095997-0.751999,0.287998C32.696499,40.853699,32.5765,41.1283,32.5285,41.491001z M38.339199,44.011002c0-0.426701,0.063999-0.808002,0.192001-1.144001c0.127998-0.336002,0.346699-0.647999,0.655998-0.936001c0.309299-0.287998,0.736-0.576,1.280003-0.863998c0.261299-0.133301,0.469299-0.256001,0.624001-0.368c0.16-0.117302,0.274696-0.237301,0.343998-0.360001s0.104-0.271999,0.104-0.448002c0-0.181297-0.040001-0.335999-0.119999-0.464001c-0.074699-0.133297-0.186703-0.237297-0.336002-0.311996c-0.1493-0.080002-0.338699-0.120003-0.567997-0.120003c-0.362701,0-0.650703,0.098701-0.864002,0.296001c-0.208,0.192001-0.338699,0.469299-0.391998,0.832001l-0.896-0.056C38.4272,39.4963,38.6432,39.042999,39.0112,38.707001c0.373299-0.336002,0.874699-0.504002,1.504002-0.504002c0.4053,0,0.749298,0.072002,1.031998,0.216c0.288002,0.138702,0.506702,0.333302,0.656002,0.584C42.357899,39.2537,42.4352,39.5443,42.4352,39.875c0,0.287998-0.048,0.535999-0.144001,0.743999c-0.095997,0.208-0.256001,0.402702-0.48,0.584c-0.223999,0.176003-0.528,0.365299-0.911999,0.568001c-0.4907,0.261299-0.861301,0.52-1.112,0.776001c-0.250702,0.250698-0.384003,0.474701-0.400002,0.672001h3.048v0.792H38.339199z"
|
||||
/>
|
||||
</svg>
|
||||
);
|
||||
return (
|
||||
<svg
|
||||
version="1.1"
|
||||
id="Layer_1"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlnsXlink="http://www.w3.org/1999/xlink"
|
||||
x="0px"
|
||||
y="0px"
|
||||
viewBox="0 0 60 60"
|
||||
enable-background="new 0 0 60 60"
|
||||
xmlSpace="preserve"
|
||||
>
|
||||
<path
|
||||
className="fill-none stroke-txt-primary"
|
||||
d="M53.766602,16.297899c0.002499,0.042101,0.005901,0.0895,0.008801,0.1416c0.014599,0.2644,0.032501,0.654699,0.045898,1.154301c0.026798,0.9998,0.0354,2.437401-0.039101,4.1796c-0.148998,3.486599-0.628498,8.185101-1.9482,13.046898C49.1991,44.526997,43.2533,54.779999,30,57.488297c-13.253201-2.708302-19.1991-12.9613-21.833981-22.667999c-1.31967-4.861801-1.79927-9.560299-1.94825-13.0469c-0.07443-1.742201-0.06582-3.1798-0.03906-4.1796c0.01338-0.499599,0.03132-0.8899,0.0459-1.154301c0.00287-0.052099,0.00527-0.099501,0.00781-0.1416L30,2.576167L53.766602,16.297899z"
|
||||
/>
|
||||
<path
|
||||
className="fill-none stroke-txt-primary"
|
||||
d="M49.890099,18.444099c0.001598,0.027201,0.0042,0.056601,0.005901,0.0879c0.012199,0.2304,0.027802,0.5704,0.039101,1.0058c0.0224,0.871201,0.029202,2.1231-0.033199,3.640699c-0.125099,3.0373-0.528099,7.1287-1.635799,11.355398c-2.212002,8.440601-7.193298,17.298798-18.2666,19.570297c-11.072401-2.2719-16.053699-11.130001-18.2656-19.570297c-1.1077-4.2267-1.5107-8.3181-1.6358-11.3554c-0.0624-1.5175-0.0556-2.769501-0.0332-3.640699c0.0113-0.4354,0.0269-0.7754,0.0391-1.0058c0.0017-0.0313,0.0033-0.060699,0.0049-0.0879L29.9995,6.959718L49.890099,18.444099z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M18.604099,36.656601c-0.5466,0-1.0233-0.103401-1.43-0.310001c-0.406601-0.206699-0.73-0.490002-0.969999-0.849998c-0.2333-0.366699-0.37-0.790001-0.41-1.27l0.9-0.060001c0.0467,0.353298,0.15,0.653301,0.309999,0.900002c0.16,0.246601,0.3734,0.4333,0.639999,0.560001c0.273399,0.126598,0.6,0.189999,0.98,0.189999c0.333401,0,0.616699-0.0434,0.85-0.130001c0.2334-0.0867,0.41-0.213402,0.530001-0.380001c0.126699-0.166698,0.190001-0.369999,0.190001-0.610001c0-0.220001-0.053301-0.413399-0.16-0.580002c-0.1-0.173401-0.2966-0.330002-0.59-0.470001c-0.2866-0.146702-0.713301-0.290001-1.280001-0.43c-0.5466-0.139999-0.983299-0.2934-1.309999-0.459999c-0.32-0.166698-0.553301-0.369999-0.700001-0.610001c-0.139999-0.24-0.21-0.536699-0.21-0.889999c0-0.4,0.0934-0.75,0.28-1.049999c0.193399-0.3067,0.4667-0.5434,0.82-0.709999c0.353399-0.173401,0.773399-0.26,1.26-0.26c0.52,0,0.9667,0.1,1.34,0.299999c0.3734,0.1933,0.67,0.459999,0.889999,0.799999s0.356701,0.726601,0.41,1.16l-0.9,0.059999c-0.040001-0.286699-0.133301-0.540001-0.280001-0.76c-0.139999-0.2267-0.3333-0.4034-0.58-0.530001c-0.246599-0.126699-0.5466-0.190001-0.9-0.190001c-0.440001,0-0.790001,0.1066-1.049999,0.32c-0.26,0.2066-0.389999,0.48-0.389999,0.82c0,0.219999,0.049999,0.403299,0.15,0.549999c0.106701,0.139999,0.2934,0.2666,0.559999,0.379999c0.266701,0.106602,0.65,0.223301,1.15,0.349998c0.593399,0.146599,1.0634,0.323299,1.41,0.529999c0.353399,0.200001,0.603399,0.4333,0.75,0.700001c0.1534,0.266602,0.23,0.57,0.23,0.91c0,0.4133-0.1066,0.7733-0.32,1.080002c-0.213301,0.299999-0.506599,0.533298-0.879999,0.700001C19.520798,36.576591,19.090797,36.656593,18.604099,36.656601zM25.330599,36.656601c-0.6733,0-1.2533-0.146702-1.74-0.439999c-0.48-0.299999-0.85-0.7267-1.110001-1.279999c-0.26-0.553398-0.389999-1.213402-0.389999-1.98c0-0.766701,0.129999-1.426701,0.389999-1.98c0.26-0.559999,0.629999-0.99,1.110001-1.290001c0.4867-0.299999,1.0667-0.450001,1.74-0.450001c0.68,0,1.26,0.15,1.74,0.450001c0.4867,0.299999,0.860001,0.73,1.120001,1.290001c0.26,0.553301,0.389999,1.213299,0.389999,1.98c0,0.766602-0.129999,1.426601-0.389999,1.98c-0.26,0.553299-0.633301,0.98-1.120001,1.279999C26.590599,36.509903,26.010599,36.656601,25.330599,36.656601z M25.330599,35.816601c0.493401,0,0.913401-0.1134,1.26-0.34c0.353399-0.2267,0.6234-0.553398,0.809999-0.98c0.186701-0.426701,0.280001-0.939999,0.280001-1.540001s-0.0933-1.1134-0.280001-1.540001c-0.1866-0.433399-0.4566-0.763399-0.809999-0.99c-0.3466-0.2334-0.7666-0.35-1.26-0.35c-0.486601,0-0.906599,0.1166-1.26,0.35c-0.3466,0.226601-0.6133,0.556601-0.799999,0.99c-0.1866,0.4266-0.280001,0.939999-0.280001,1.540001s0.093401,1.1133,0.280001,1.540001c0.186701,0.426601,0.4534,0.7533,0.799999,0.98C24.423998,35.703201,24.843998,35.816601,25.330599,35.816601zM32.673199,36.656601c-0.633301,0-1.190001-0.146702-1.67-0.439999c-0.48-0.299999-0.8533-0.7267-1.120001-1.279999c-0.266701-0.553398-0.4-1.213402-0.4-1.98c0-0.766701,0.133301-1.426701,0.4-1.98c0.266701-0.559999,0.639999-0.99,1.120001-1.290001s1.036699-0.450001,1.67-0.450001c0.860001,0,1.526699,0.2166,2,0.65c0.473301,0.4333,0.783298,1.0233,0.93,1.77l-0.91,0.059999c-0.099998-0.506701-0.313301-0.9067-0.639999-1.200001c-0.326698-0.2934-0.786701-0.440001-1.380001-0.440001c-0.4533,0-0.8533,0.1166-1.200001,0.35c-0.34,0.226601-0.606701,0.556601-0.799999,0.99c-0.1933,0.4266-0.290001,0.940001-0.290001,1.539999s0.096701,1.1133,0.290001,1.540001c0.1933,0.426601,0.459999,0.7533,0.799999,0.98c0.346701,0.226601,0.7467,0.34,1.200001,0.34c0.619999,0,1.099998-0.16,1.439999-0.48c0.34-0.326698,0.553299-0.766701,0.639999-1.32l0.91,0.060001c-0.0867,0.513302-0.256699,0.963299-0.509998,1.349998c-0.2533,0.3866-0.59,0.689999-1.009998,0.91C33.7299,36.5499,33.239899,36.656601,32.673199,36.656601z M39.164497,36.496601c0-0.5,0.076599-0.950001,0.23-1.349998c0.16-0.4067,0.4366-0.7934,0.830002-1.16c0.400002-0.366699,0.9533-0.736698,1.66-1.110001c0.326599-0.173401,0.59-0.333401,0.790001-0.48c0.200001-0.146702,0.3466-0.303398,0.439999-0.469999c0.0933-0.1667,0.139999-0.370001,0.139999-0.610001c0-0.2467-0.053398-0.459999-0.16-0.639999c-0.106701-0.186701-0.266701-0.333401-0.48-0.440001c-0.206699-0.106701-0.466702-0.16-0.779999-0.16c-0.5,0-0.896702,0.129999-1.189999,0.389999c-0.286701,0.26-0.466702,0.629999-0.540001,1.110001l-0.900002-0.059999c0.080002-0.693399,0.3466-1.2467,0.799999-1.66c0.4533-0.413401,1.063301-0.620001,1.830002-0.620001c0.486599,0,0.903301,0.086599,1.25,0.26c0.3466,0.1733,0.610001,0.416599,0.790001,0.73c0.1866,0.306601,0.279999,0.6633,0.279999,1.07c0,0.360001-0.060001,0.6733-0.18,0.940001c-0.119999,0.259998-0.323399,0.5033-0.610001,0.73c-0.279999,0.226601-0.666698,0.470001-1.16,0.73c-0.639999,0.34-1.126701,0.6833-1.459999,1.029999c-0.326698,0.3466-0.5,0.656601-0.52,0.93h3.93v0.84H39.164497z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M15.9129,27.0574l2.56-7.1h1.16l2.559999,7.1h-0.940001l-0.709999-2.02h-2.98l-0.709999,2.02H15.9129zM17.8529,24.197399h2.4l-1.200001-3.49L17.8529,24.197399z M23.1173,27.0574v-7.1h0.860001v7.1H23.1173z M28.395901,27.2174c-0.6334,0-1.190001-0.1467-1.67-0.440001c-0.48-0.299999-0.853399-0.7267-1.120001-1.280001c-0.266701-0.5534-0.4-1.2134-0.4-1.98c0-0.766701,0.133301-1.426701,0.4-1.98c0.2666-0.559999,0.639999-0.99,1.120001-1.290001s1.0366-0.450001,1.67-0.450001c0.860001,0,1.5266,0.2166,2,0.65c0.473301,0.4333,0.7833,1.0233,0.93,1.77l-0.91,0.059999c-0.1-0.506701-0.3134-0.9067-0.639999-1.200001c-0.3267-0.2934-0.786699-0.440001-1.379999-0.440001c-0.4534,0-0.853399,0.1166-1.200001,0.35c-0.34,0.226601-0.606701,0.556601-0.799999,0.99c-0.193399,0.4266-0.290001,0.940001-0.290001,1.539999s0.0966,1.1133,0.290001,1.540001c0.1933,0.4266,0.459999,0.7533,0.799999,0.98c0.3466,0.226601,0.746599,0.34,1.200001,0.34c0.620001,0,1.1-0.16,1.440001-0.48c0.34-0.3267,0.553301-0.766701,0.639999-1.32l0.91,0.059999c-0.0867,0.5133-0.256701,0.963301-0.51,1.35c-0.253401,0.3866-0.59,0.690001-1.01,0.91C29.452501,27.110697,28.962502,27.217396,28.395901,27.2174z M32.726601,27.0574v-7.1H35.2766c0.7934,0,1.41,0.190001,1.849998,0.57s0.66,0.906599,0.66,1.58c0,0.4533-0.099998,0.8466-0.299999,1.18c-0.200001,0.326599-0.486599,0.576599-0.860001,0.75c-0.373299,0.1733-0.823299,0.26-1.349998,0.26h-1.689999v2.76H32.726601zM33.586601,23.457399H35.2766c0.533401,0,0.933399-0.1134,1.200001-0.34c0.273399-0.2267,0.41-0.5634,0.41-1.01c0-0.433399-0.1366-0.76-0.41-0.98c-0.266602-0.219999-0.666599-0.33-1.200001-0.33h-1.689999V23.457399z M37.8074,27.0574l2.560001-7.1h1.16l2.560001,7.1h-0.939999l-0.709999-2.02h-2.98l-0.709999,2.02H37.8074z M39.747398,24.197399H42.1474l-1.200001-3.49L39.747398,24.197399z"
|
||||
/>
|
||||
<path
|
||||
className="fill-txt-primary"
|
||||
d="M19.9338,44.011002v-4.888H18.1898v-0.792H22.5418v0.792H20.7978v4.888H19.9338z M23.129101,45.210999v-0.695999h0.519999c0.144001,0,0.250601-0.021301,0.320002-0.063999c0.0693-0.042702,0.122599-0.1147,0.16-0.216l0.136-0.352001h-0.264l-1.536001-4.127998h0.896l1.168001,3.343998l1.112-3.343998h0.903999L24.8491,44.507c-0.0854,0.2453-0.2134,0.424-0.384001,0.535999c-0.1654,0.112-0.3974,0.167999-0.695999,0.167999H23.129101z M27.1234,45.210999v-5.455997h0.800001L27.947399,40.667l-0.095999-0.048c0.106699-0.314701,0.2827-0.551998,0.528-0.711998c0.245399-0.165302,0.528-0.248001,0.848-0.248001c0.416,0,0.757401,0.104,1.024,0.312c0.271999,0.202698,0.472,0.472,0.6,0.807999c0.1334,0.336002,0.199999,0.704002,0.199999,1.104c0,0.400002-0.066599,0.768002-0.199999,1.104c-0.128,0.336002-0.328001,0.608002-0.6,0.816002c-0.2666,0.202698-0.608,0.303997-1.024,0.303997c-0.213301,0-0.4133-0.0373-0.6-0.112c-0.1866-0.074699-0.3466-0.178699-0.48-0.312c-0.128-0.138699-0.218599-0.3013-0.271999-0.487999l0.095999-0.096001v2.112H27.1234z M29.075399,43.370998c0.3414,0,0.608-0.130699,0.800001-0.391998c0.197399-0.261299,0.296-0.626701,0.296-1.096001s-0.0986-0.834698-0.296-1.096001C29.683399,40.5257,29.4168,40.395,29.075399,40.395c-0.223999,0-0.4186,0.056-0.584,0.167999c-0.1653,0.106701-0.293301,0.271999-0.383999,0.495998c-0.090601,0.224003-0.136002,0.498703-0.136002,0.824001c0,0.325302,0.0427,0.600002,0.128,0.824001c0.0907,0.223999,0.2187,0.391998,0.384001,0.503998C28.6541,43.317699,28.8514,43.370998,29.075399,43.370998z M33.664501,44.106998c-0.416,0-0.776001-0.090698-1.080002-0.271999c-0.298698-0.181297-0.530701-0.439999-0.695999-0.776001c-0.16-0.335999-0.24-0.727997-0.24-1.175999c0-0.447998,0.08-0.837299,0.24-1.167999c0.165298-0.335999,0.397301-0.5947,0.695999-0.776001c0.298702-0.186699,0.6507-0.279999,1.056-0.279999c0.384003,0,0.722702,0.090698,1.016003,0.271999c0.293297,0.175999,0.519997,0.431999,0.679996,0.768002c0.165302,0.335999,0.248001,0.741299,0.248001,1.216v0.216h-3.056c0.021301,0.416,0.130699,0.728001,0.327999,0.936001c0.202702,0.208,0.474701,0.312,0.816002,0.312c0.250698,0,0.458698-0.058701,0.624001-0.176003c0.165298-0.117298,0.279999-0.2747,0.343998-0.472l0.880001,0.056c-0.112,0.394703-0.333302,0.714703-0.664001,0.960003C34.5312,43.987,34.133801,44.106998,33.664501,44.106998z M32.5285,41.491001h2.16c-0.026699-0.3787-0.135998-0.658703-0.327999-0.84c-0.186699-0.181301-0.426701-0.271999-0.720001-0.271999c-0.304001,0-0.554699,0.095997-0.751999,0.287998C32.696499,40.853699,32.5765,41.1283,32.5285,41.491001z M38.339199,44.011002c0-0.426701,0.063999-0.808002,0.192001-1.144001c0.127998-0.336002,0.346699-0.647999,0.655998-0.936001c0.309299-0.287998,0.736-0.576,1.280003-0.863998c0.261299-0.133301,0.469299-0.256001,0.624001-0.368c0.16-0.117302,0.274696-0.237301,0.343998-0.360001s0.104-0.271999,0.104-0.448002c0-0.181297-0.040001-0.335999-0.119999-0.464001c-0.074699-0.133297-0.186703-0.237297-0.336002-0.311996c-0.1493-0.080002-0.338699-0.120003-0.567997-0.120003c-0.362701,0-0.650703,0.098701-0.864002,0.296001c-0.208,0.192001-0.338699,0.469299-0.391998,0.832001l-0.896-0.056C38.4272,39.4963,38.6432,39.042999,39.0112,38.707001c0.373299-0.336002,0.874699-0.504002,1.504002-0.504002c0.4053,0,0.749298,0.072002,1.031998,0.216c0.288002,0.138702,0.506702,0.333302,0.656002,0.584C42.357899,39.2537,42.4352,39.5443,42.4352,39.875c0,0.287998-0.048,0.535999-0.144001,0.743999c-0.095997,0.208-0.256001,0.402702-0.48,0.584c-0.223999,0.176003-0.528,0.365299-0.911999,0.568001c-0.4907,0.261299-0.861301,0.52-1.112,0.776001c-0.250702,0.250698-0.384003,0.474701-0.400002,0.672001h3.048v0.792H38.339199z"
|
||||
/>
|
||||
</svg>
|
||||
);
|
||||
}
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -1,8 +1,9 @@
|
||||
import type {IconProps} from "./type.ts";
|
||||
import type { IconProps } from "./type.ts";
|
||||
|
||||
export function IconArrowBoxLeft({size = 24, className}: IconProps) {
|
||||
return <svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M7 5C5.89543 5 5 5.89543 5 7V17C5 18.1046 5.89543 19 7 19H11.25C11.8023 19 12.25 19.4477 12.25 20C12.25 20.5523 11.8023 21 11.25 21H7C4.79086 21 3 19.2091 3 17V7C3 4.79086 4.79086 3 7 3H11.25C11.8023 3 12.25 3.44772 12.25 4C12.25 4.55228 11.8023 5 11.25 5H7ZM14.7929 6.79289C15.1834 6.40237 15.8166 6.40237 16.2071 6.79289L20.7071 11.2929C21.0976 11.6834 21.0976 12.3166 20.7071 12.7071L16.2071 17.2071C15.8166 17.5976 15.1834 17.5976 14.7929 17.2071C14.4024 16.8166 14.4024 16.1834 14.7929 15.7929L17.5858 13H8.75C8.19772 13 7.75 12.5523 7.75 12C7.75 11.4477 8.19772 11 8.75 11H17.5858L14.7929 8.20711C14.4024 7.81658 14.4024 7.18342 14.7929 6.79289Z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
}
|
||||
export function IconArrowBoxLeft({ size = 24, className }: IconProps) {
|
||||
return (
|
||||
<svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M7 5C5.89543 5 5 5.89543 5 7V17C5 18.1046 5.89543 19 7 19H11.25C11.8023 19 12.25 19.4477 12.25 20C12.25 20.5523 11.8023 21 11.25 21H7C4.79086 21 3 19.2091 3 17V7C3 4.79086 4.79086 3 7 3H11.25C11.8023 3 12.25 3.44772 12.25 4C12.25 4.55228 11.8023 5 11.25 5H7ZM14.7929 6.79289C15.1834 6.40237 15.8166 6.40237 16.2071 6.79289L20.7071 11.2929C21.0976 11.6834 21.0976 12.3166 20.7071 12.7071L16.2071 17.2071C15.8166 17.5976 15.1834 17.5976 14.7929 17.2071C14.4024 16.8166 14.4024 16.1834 14.7929 15.7929L17.5858 13H8.75C8.19772 13 7.75 12.5523 7.75 12C7.75 11.4477 8.19772 11 8.75 11H17.5858L14.7929 8.20711C14.4024 7.81658 14.4024 7.18342 14.7929 6.79289Z" fill="currentColor" />
|
||||
</svg>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1,8 +1,9 @@
|
||||
import type {IconProps} from "./type.ts";
|
||||
import type { IconProps } from "./type.ts";
|
||||
|
||||
export function IconArrowCornerDownLeft({size = 24, className}: IconProps) {
|
||||
return <svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M7.29297 10.293C7.68349 9.90244 8.31651 9.90244 8.70703 10.293C9.09756 10.6835 9.09756 11.3165 8.70703 11.707L6.41406 14H17C18.1046 14 19 13.1046 19 12V5C19 4.44772 19.4477 4 20 4C20.5523 4 21 4.44772 21 5V12C21 14.2092 19.2092 16 17 16H6.41406L8.70703 18.293L8.77539 18.3691C9.09574 18.7619 9.07315 19.3409 8.70703 19.707C8.34092 20.0731 7.76192 20.0957 7.36914 19.7754L7.29297 19.707L3.29297 15.707C2.90245 15.3165 2.90245 14.6835 3.29297 14.293L7.29297 10.293Z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
}
|
||||
export function IconArrowCornerDownLeft({ size = 24, className }: IconProps) {
|
||||
return (
|
||||
<svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M7.29297 10.293C7.68349 9.90244 8.31651 9.90244 8.70703 10.293C9.09756 10.6835 9.09756 11.3165 8.70703 11.707L6.41406 14H17C18.1046 14 19 13.1046 19 12V5C19 4.44772 19.4477 4 20 4C20.5523 4 21 4.44772 21 5V12C21 14.2092 19.2092 16 17 16H6.41406L8.70703 18.293L8.77539 18.3691C9.09574 18.7619 9.07315 19.3409 8.70703 19.707C8.34092 20.0731 7.76192 20.0957 7.36914 19.7754L7.29297 19.707L3.29297 15.707C2.90245 15.3165 2.90245 14.6835 3.29297 14.293L7.29297 10.293Z" fill="currentColor" />
|
||||
</svg>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1,8 +1,9 @@
|
||||
import type {IconProps} from "./type.ts";
|
||||
import type { IconProps } from "./type.ts";
|
||||
|
||||
export function IconArrowDown({size = 24, className}: IconProps) {
|
||||
return <svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M12 21C11.6022 21 11.2207 20.842 10.9394 20.5607L5.43934 15.0607C4.85355 14.4749 4.85355 13.5251 5.43934 12.9393C6.02512 12.3536 6.97487 12.3536 7.56066 12.9393L10.5 15.8787V4.5C10.5 3.67157 11.1716 3 12 3C12.8284 3 13.5 3.67157 13.5 4.5V15.8787L16.4393 12.9393C17.0251 12.3536 17.9749 12.3536 18.5607 12.9393C19.1464 13.5251 19.1464 14.4749 18.5607 15.0607L13.0607 20.5607C12.7794 20.842 12.3978 21 12 21Z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
}
|
||||
export function IconArrowDown({ size = 24, className }: IconProps) {
|
||||
return (
|
||||
<svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M12 21C11.6022 21 11.2207 20.842 10.9394 20.5607L5.43934 15.0607C4.85355 14.4749 4.85355 13.5251 5.43934 12.9393C6.02512 12.3536 6.97487 12.3536 7.56066 12.9393L10.5 15.8787V4.5C10.5 3.67157 11.1716 3 12 3C12.8284 3 13.5 3.67157 13.5 4.5V15.8787L16.4393 12.9393C17.0251 12.3536 17.9749 12.3536 18.5607 12.9393C19.1464 13.5251 19.1464 14.4749 18.5607 15.0607L13.0607 20.5607C12.7794 20.842 12.3978 21 12 21Z" fill="currentColor" />
|
||||
</svg>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1,8 +1,9 @@
|
||||
import type {IconProps} from "./type.ts";
|
||||
import type { IconProps } from "./type.ts";
|
||||
|
||||
export function IconArrowInbox({size = 24, className}: IconProps) {
|
||||
return <svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M12 3C12.5523 3 13 3.44772 13 4V12.0858L14.7929 10.2929C15.1834 9.90237 15.8166 9.90237 16.2071 10.2929C16.5976 10.6834 16.5976 11.3166 16.2071 11.7071L12.7071 15.2071C12.3166 15.5976 11.6834 15.5976 11.2929 15.2071L7.79289 11.7071C7.40237 11.3166 7.40237 10.6834 7.79289 10.2929C8.18342 9.90237 8.81658 9.90237 9.20711 10.2929L11 12.0858V4C11 3.44772 11.4477 3 12 3ZM4 14C4.55228 14 5 14.4477 5 15V17C5 18.1046 5.89542 19 7 19H17C18.1046 19 19 18.1046 19 17V15C19 14.4477 19.4477 14 20 14C20.5523 14 21 14.4477 21 15V17C21 19.2092 19.2092 21 17 21H7C4.79088 21 3 19.2092 3 17V15C3 14.4477 3.44772 14 4 14Z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
}
|
||||
export function IconArrowInbox({ size = 24, className }: IconProps) {
|
||||
return (
|
||||
<svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M12 3C12.5523 3 13 3.44772 13 4V12.0858L14.7929 10.2929C15.1834 9.90237 15.8166 9.90237 16.2071 10.2929C16.5976 10.6834 16.5976 11.3166 16.2071 11.7071L12.7071 15.2071C12.3166 15.5976 11.6834 15.5976 11.2929 15.2071L7.79289 11.7071C7.40237 11.3166 7.40237 10.6834 7.79289 10.2929C8.18342 9.90237 8.81658 9.90237 9.20711 10.2929L11 12.0858V4C11 3.44772 11.4477 3 12 3ZM4 14C4.55228 14 5 14.4477 5 15V17C5 18.1046 5.89542 19 7 19H17C18.1046 19 19 18.1046 19 17V15C19 14.4477 19.4477 14 20 14C20.5523 14 21 14.4477 21 15V17C21 19.2092 19.2092 21 17 21H7C4.79088 21 3 19.2092 3 17V15C3 14.4477 3.44772 14 4 14Z" fill="currentColor" />
|
||||
</svg>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1,8 +1,9 @@
|
||||
import type {IconProps} from "./type.ts";
|
||||
import type { IconProps } from "./type.ts";
|
||||
|
||||
export function IconArrowInbox1({size = 24, className}: IconProps) {
|
||||
return <svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M20 15V17C20 18.6569 18.6569 20 17 20H7C5.34315 20 4 18.6569 4 17V15M12 14.5V4M12 14.5L8.5 11M12 14.5L15.5 11" stroke="#141E12" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round"/>
|
||||
</svg>
|
||||
|
||||
}
|
||||
export function IconArrowInbox1({ size = 24, className }: IconProps) {
|
||||
return (
|
||||
<svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M20 15V17C20 18.6569 18.6569 20 17 20H7C5.34315 20 4 18.6569 4 17V15M12 14.5V4M12 14.5L8.5 11M12 14.5L15.5 11" stroke="#141E12" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round" />
|
||||
</svg>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1,9 +1,10 @@
|
||||
import type {IconProps} from "./type.ts";
|
||||
import type { IconProps } from "./type.ts";
|
||||
|
||||
export function IconArrowLink({size = 24, className}: IconProps) {
|
||||
return <svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M20.5607 3.43934C21.1464 4.02513 21.1464 4.97487 20.5607 5.56066L5.56066 20.5607C4.97487 21.1464 4.02513 21.1464 3.43934 20.5607C2.85355 19.9749 2.85355 19.0251 3.43934 18.4393L18.4393 3.43934C19.0251 2.85355 19.9749 2.85355 20.5607 3.43934Z" fill="currentColor"/>
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M3 4.5C3 3.67157 3.67157 3 4.5 3H19.5C20.3284 3 21 3.67157 21 4.5V19.5C21 20.3284 20.3284 21 19.5 21C18.6716 21 18 20.3284 18 19.5V6H4.5C3.67157 6 3 5.32843 3 4.5Z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
}
|
||||
export function IconArrowLink({ size = 24, className }: IconProps) {
|
||||
return (
|
||||
<svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M20.5607 3.43934C21.1464 4.02513 21.1464 4.97487 20.5607 5.56066L5.56066 20.5607C4.97487 21.1464 4.02513 21.1464 3.43934 20.5607C2.85355 19.9749 2.85355 19.0251 3.43934 18.4393L18.4393 3.43934C19.0251 2.85355 19.9749 2.85355 20.5607 3.43934Z" fill="currentColor" />
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M3 4.5C3 3.67157 3.67157 3 4.5 3H19.5C20.3284 3 21 3.67157 21 4.5V19.5C21 20.3284 20.3284 21 19.5 21C18.6716 21 18 20.3284 18 19.5V6H4.5C3.67157 6 3 5.32843 3 4.5Z" fill="currentColor" />
|
||||
</svg>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1,8 +1,9 @@
|
||||
import type {IconProps} from "./type.ts";
|
||||
import type { IconProps } from "./type.ts";
|
||||
|
||||
export function IconArrowUp({size = 24, className}: IconProps) {
|
||||
return <svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M12 3C12.3978 3 12.7793 3.15803 13.0606 3.43934L18.5607 8.93934C19.1464 9.52512 19.1464 10.4749 18.5607 11.0607C17.9749 11.6464 17.0251 11.6464 16.4393 11.0607L13.5 8.12131V19.5C13.5 20.3284 12.8284 21 12 21C11.1716 21 10.5 20.3284 10.5 19.5V8.12133L7.56066 11.0607C6.97488 11.6464 6.02513 11.6464 5.43934 11.0607C4.85355 10.4749 4.85355 9.52513 5.43934 8.93934L10.9393 3.43934C11.2206 3.15804 11.6022 3 12 3Z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
}
|
||||
export function IconArrowUp({ size = 24, className }: IconProps) {
|
||||
return (
|
||||
<svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M12 3C12.3978 3 12.7793 3.15803 13.0606 3.43934L18.5607 8.93934C19.1464 9.52512 19.1464 10.4749 18.5607 11.0607C17.9749 11.6464 17.0251 11.6464 16.4393 11.0607L13.5 8.12131V19.5C13.5 20.3284 12.8284 21 12 21C11.1716 21 10.5 20.3284 10.5 19.5V8.12133L7.56066 11.0607C6.97488 11.6464 6.02513 11.6464 5.43934 11.0607C4.85355 10.4749 4.85355 9.52513 5.43934 8.93934L10.9393 3.43934C11.2206 3.15804 11.6022 3 12 3Z" fill="currentColor" />
|
||||
</svg>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1,8 +1,9 @@
|
||||
import type {IconProps} from "./type.ts";
|
||||
import type { IconProps } from "./type.ts";
|
||||
|
||||
export function IconBank({size = 24, className}: IconProps) {
|
||||
return <svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M20 7.76416C20 7.69721 19.9716 7.63436 19.9238 7.59034L19.8691 7.55225L12.8945 4.06495C12.402 3.81864 11.833 3.78845 11.3213 3.97315L11.1055 4.06495L4.13086 7.55225C4.05089 7.59223 4 7.67474 4 7.76416C4.00017 7.89438 4.10605 7.99952 4.23633 7.99952H19.7637C19.894 7.99952 19.9998 7.89437 20 7.76416ZM5.92676 17.9995C5.25877 17.9995 4.66023 18.3967 4.39551 18.9995H19.6045C19.3577 18.4374 18.8211 18.0545 18.208 18.0054L18.0732 17.9995H5.92676ZM16 15.9995H18V9.99952H16V15.9995ZM10 15.9995H14V9.99952H10V15.9995ZM6 15.9995H8V9.99952H6V15.9995ZM22 7.76416C21.9998 8.91921 21.1238 9.86885 20 9.98682V16.5454C20.717 16.9873 21.2783 17.6731 21.5576 18.5112L21.6191 18.7407C21.8507 19.8885 20.9737 20.9995 19.7637 20.9995H4.23633C2.9458 20.9995 2.03423 19.7356 2.44238 18.5112L2.5459 18.2358C2.84866 17.5227 3.36314 16.9379 4 16.5454V9.98682C2.87617 9.86886 2.00016 8.91921 2 7.76416C2 6.91721 2.47878 6.14294 3.23633 5.76416L10.2109 2.27588L10.4248 2.17725C11.5023 1.71547 12.7335 1.74804 13.7891 2.27588L20.7637 5.76416L20.9023 5.83936C21.5793 6.23961 22 6.97007 22 7.76416Z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
}
|
||||
export function IconBank({ size = 24, className }: IconProps) {
|
||||
return (
|
||||
<svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M20 7.76416C20 7.69721 19.9716 7.63436 19.9238 7.59034L19.8691 7.55225L12.8945 4.06495C12.402 3.81864 11.833 3.78845 11.3213 3.97315L11.1055 4.06495L4.13086 7.55225C4.05089 7.59223 4 7.67474 4 7.76416C4.00017 7.89438 4.10605 7.99952 4.23633 7.99952H19.7637C19.894 7.99952 19.9998 7.89437 20 7.76416ZM5.92676 17.9995C5.25877 17.9995 4.66023 18.3967 4.39551 18.9995H19.6045C19.3577 18.4374 18.8211 18.0545 18.208 18.0054L18.0732 17.9995H5.92676ZM16 15.9995H18V9.99952H16V15.9995ZM10 15.9995H14V9.99952H10V15.9995ZM6 15.9995H8V9.99952H6V15.9995ZM22 7.76416C21.9998 8.91921 21.1238 9.86885 20 9.98682V16.5454C20.717 16.9873 21.2783 17.6731 21.5576 18.5112L21.6191 18.7407C21.8507 19.8885 20.9737 20.9995 19.7637 20.9995H4.23633C2.9458 20.9995 2.03423 19.7356 2.44238 18.5112L2.5459 18.2358C2.84866 17.5227 3.36314 16.9379 4 16.5454V9.98682C2.87617 9.86886 2.00016 8.91921 2 7.76416C2 6.91721 2.47878 6.14294 3.23633 5.76416L10.2109 2.27588L10.4248 2.17725C11.5023 1.71547 12.7335 1.74804 13.7891 2.27588L20.7637 5.76416L20.9023 5.83936C21.5793 6.23961 22 6.97007 22 7.76416Z" fill="currentColor" />
|
||||
</svg>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1,8 +1,9 @@
|
||||
import type {IconProps} from "./type.ts";
|
||||
import type { IconProps } from "./type.ts";
|
||||
|
||||
export function IconBell2({size = 24, className}: IconProps) {
|
||||
return <svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M12 4C9.17177 4 6.84036 6.21776 6.69912 9.04245L6.53019 12.4211C6.53019 12.4211 6.53019 12.4211 6.53019 12.4211C6.50255 12.9741 6.36043 13.5151 6.11292 14.0103L6.11289 14.0103L5.11804 16H18.882L17.8871 14.0103L17.887 14.0101C17.6396 13.5151 17.4975 12.9742 17.4698 12.4212C17.4698 12.4211 17.4698 12.4211 17.4698 12.4211L17.3008 9.04247L17.3008 9.04243C17.1597 6.21776 14.8282 4 12 4ZM19.0203 16.2767C19.0203 16.2766 19.0202 16.2765 19.0202 16.2764L19.0203 16.2767ZM4.97984 16.2764L4.9799 16.2763L4.97984 16.2764ZM4.70162 8.94257C4.89608 5.05346 8.10603 2 12 2C15.894 2 19.1039 5.05344 19.2984 8.94255C19.2984 8.94256 19.2984 8.94257 19.2984 8.94259L19.4674 12.3212L19.4674 12.3213C19.4811 12.5976 19.5522 12.8681 19.6759 13.1159C19.676 13.1159 19.676 13.116 19.676 13.1161L20.8089 15.3817C20.9348 15.6333 21 15.9104 21 16.191C21 17.1901 20.1901 18 19.191 18H16.9C16.4367 20.2822 14.4189 22 12 22C9.58104 22 7.56329 20.2822 7.10002 18H4.80902C3.80995 18 3 17.1901 3 16.191C3 15.9103 3.06533 15.6332 3.19098 15.382C3.191 15.3819 3.19103 15.3819 3.19105 15.3819L4.324 13.1159C4.44782 12.8683 4.51887 12.5977 4.53269 12.3213L4.53269 12.3213L4.70162 8.94257L5.70037 8.99251L4.70162 8.94257ZM9.17071 18C9.58255 19.1652 10.6938 20 12 20C13.3062 20 14.4174 19.1652 14.8293 18H9.17071Z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
}
|
||||
export function IconBell2({ size = 24, className }: IconProps) {
|
||||
return (
|
||||
<svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M12 4C9.17177 4 6.84036 6.21776 6.69912 9.04245L6.53019 12.4211C6.53019 12.4211 6.53019 12.4211 6.53019 12.4211C6.50255 12.9741 6.36043 13.5151 6.11292 14.0103L6.11289 14.0103L5.11804 16H18.882L17.8871 14.0103L17.887 14.0101C17.6396 13.5151 17.4975 12.9742 17.4698 12.4212C17.4698 12.4211 17.4698 12.4211 17.4698 12.4211L17.3008 9.04247L17.3008 9.04243C17.1597 6.21776 14.8282 4 12 4ZM19.0203 16.2767C19.0203 16.2766 19.0202 16.2765 19.0202 16.2764L19.0203 16.2767ZM4.97984 16.2764L4.9799 16.2763L4.97984 16.2764ZM4.70162 8.94257C4.89608 5.05346 8.10603 2 12 2C15.894 2 19.1039 5.05344 19.2984 8.94255C19.2984 8.94256 19.2984 8.94257 19.2984 8.94259L19.4674 12.3212L19.4674 12.3213C19.4811 12.5976 19.5522 12.8681 19.6759 13.1159C19.676 13.1159 19.676 13.116 19.676 13.1161L20.8089 15.3817C20.9348 15.6333 21 15.9104 21 16.191C21 17.1901 20.1901 18 19.191 18H16.9C16.4367 20.2822 14.4189 22 12 22C9.58104 22 7.56329 20.2822 7.10002 18H4.80902C3.80995 18 3 17.1901 3 16.191C3 15.9103 3.06533 15.6332 3.19098 15.382C3.191 15.3819 3.19103 15.3819 3.19105 15.3819L4.324 13.1159C4.44782 12.8683 4.51887 12.5977 4.53269 12.3213L4.53269 12.3213L4.70162 8.94257L5.70037 8.99251L4.70162 8.94257ZM9.17071 18C9.58255 19.1652 10.6938 20 12 20C13.3062 20 14.4174 19.1652 14.8293 18H9.17071Z" fill="currentColor" />
|
||||
</svg>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1,8 +1,9 @@
|
||||
import type {IconProps} from "./type.ts";
|
||||
import type { IconProps } from "./type.ts";
|
||||
|
||||
export function IconBlock({size = 24, className}: IconProps) {
|
||||
return <svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M8 5C6.89543 5 6 5.89543 6 7V19H18V7C18 5.89542 17.1046 5 16 5H8ZM20 19V7C20 4.79088 18.2092 3 16 3H8C5.79087 3 4 4.79087 4 7V19H3C2.44772 19 2 19.4477 2 20C2 20.5523 2.44772 21 3 21H21C21.5523 21 22 20.5523 22 20C22 19.4477 21.5523 19 21 19H20ZM8 8C8 7.44772 8.44772 7 9 7H10C10.5523 7 11 7.44772 11 8C11 8.55228 10.5523 9 10 9H9C8.44772 9 8 8.55228 8 8ZM13 8C13 7.44772 13.4477 7 14 7H15C15.5523 7 16 7.44772 16 8C16 8.55228 15.5523 9 15 9H14C13.4477 9 13 8.55228 13 8ZM8 12C8 11.4477 8.44772 11 9 11H10C10.5523 11 11 11.4477 11 12C11 12.5523 10.5523 13 10 13H9C8.44772 13 8 12.5523 8 12ZM13 12C13 11.4477 13.4477 11 14 11H15C15.5523 11 16 11.4477 16 12C16 12.5523 15.5523 13 15 13H14C13.4477 13 13 12.5523 13 12ZM8 16C8 15.4477 8.44772 15 9 15H10C10.5523 15 11 15.4477 11 16C11 16.5523 10.5523 17 10 17H9C8.44772 17 8 16.5523 8 16ZM13 16C13 15.4477 13.4477 15 14 15H15C15.5523 15 16 15.4477 16 16C16 16.5523 15.5523 17 15 17H14C13.4477 17 13 16.5523 13 16Z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
}
|
||||
export function IconBlock({ size = 24, className }: IconProps) {
|
||||
return (
|
||||
<svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M8 5C6.89543 5 6 5.89543 6 7V19H18V7C18 5.89542 17.1046 5 16 5H8ZM20 19V7C20 4.79088 18.2092 3 16 3H8C5.79087 3 4 4.79087 4 7V19H3C2.44772 19 2 19.4477 2 20C2 20.5523 2.44772 21 3 21H21C21.5523 21 22 20.5523 22 20C22 19.4477 21.5523 19 21 19H20ZM8 8C8 7.44772 8.44772 7 9 7H10C10.5523 7 11 7.44772 11 8C11 8.55228 10.5523 9 10 9H9C8.44772 9 8 8.55228 8 8ZM13 8C13 7.44772 13.4477 7 14 7H15C15.5523 7 16 7.44772 16 8C16 8.55228 15.5523 9 15 9H14C13.4477 9 13 8.55228 13 8ZM8 12C8 11.4477 8.44772 11 9 11H10C10.5523 11 11 11.4477 11 12C11 12.5523 10.5523 13 10 13H9C8.44772 13 8 12.5523 8 12ZM13 12C13 11.4477 13.4477 11 14 11H15C15.5523 11 16 11.4477 16 12C16 12.5523 15.5523 13 15 13H14C13.4477 13 13 12.5523 13 12ZM8 16C8 15.4477 8.44772 15 9 15H10C10.5523 15 11 15.4477 11 16C11 16.5523 10.5523 17 10 17H9C8.44772 17 8 16.5523 8 16ZM13 16C13 15.4477 13.4477 15 14 15H15C15.5523 15 16 15.4477 16 16C16 16.5523 15.5523 17 15 17H14C13.4477 17 13 16.5523 13 16Z" fill="currentColor" />
|
||||
</svg>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1,8 +1,9 @@
|
||||
import type {IconProps} from "./type.ts";
|
||||
import type { IconProps } from "./type.ts";
|
||||
|
||||
export function IconBlock1({size = 24, className}: IconProps) {
|
||||
return <svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M21 19H20V7C20 4.79086 18.2091 3 16 3H8C5.79086 3 4 4.79086 4 7V19H3C2.44772 19 2 19.4477 2 20C2 20.5523 2.44772 21 3 21H21C21.5523 21 22 20.5523 22 20C22 19.4477 21.5523 19 21 19ZM9 7C8.44772 7 8 7.44772 8 8C8 8.55228 8.44772 9 9 9H10C10.5523 9 11 8.55228 11 8C11 7.44772 10.5523 7 10 7H9ZM14 7C13.4477 7 13 7.44772 13 8C13 8.55228 13.4477 9 14 9H15C15.5523 9 16 8.55228 16 8C16 7.44772 15.5523 7 15 7H14ZM9 11C8.44772 11 8 11.4477 8 12C8 12.5523 8.44772 13 9 13H10C10.5523 13 11 12.5523 11 12C11 11.4477 10.5523 11 10 11H9ZM14 11C13.4477 11 13 11.4477 13 12C13 12.5523 13.4477 13 14 13H15C15.5523 13 16 12.5523 16 12C16 11.4477 15.5523 11 15 11H14ZM9 15C8.44772 15 8 15.4477 8 16C8 16.5523 8.44772 17 9 17H10C10.5523 17 11 16.5523 11 16C11 15.4477 10.5523 15 10 15H9ZM14 15C13.4477 15 13 15.4477 13 16C13 16.5523 13.4477 17 14 17H15C15.5523 17 16 16.5523 16 16C16 15.4477 15.5523 15 15 15H14Z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
}
|
||||
export function IconBlock1({ size = 24, className }: IconProps) {
|
||||
return (
|
||||
<svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M21 19H20V7C20 4.79086 18.2091 3 16 3H8C5.79086 3 4 4.79086 4 7V19H3C2.44772 19 2 19.4477 2 20C2 20.5523 2.44772 21 3 21H21C21.5523 21 22 20.5523 22 20C22 19.4477 21.5523 19 21 19ZM9 7C8.44772 7 8 7.44772 8 8C8 8.55228 8.44772 9 9 9H10C10.5523 9 11 8.55228 11 8C11 7.44772 10.5523 7 10 7H9ZM14 7C13.4477 7 13 7.44772 13 8C13 8.55228 13.4477 9 14 9H15C15.5523 9 16 8.55228 16 8C16 7.44772 15.5523 7 15 7H14ZM9 11C8.44772 11 8 11.4477 8 12C8 12.5523 8.44772 13 9 13H10C10.5523 13 11 12.5523 11 12C11 11.4477 10.5523 11 10 11H9ZM14 11C13.4477 11 13 11.4477 13 12C13 12.5523 13.4477 13 14 13H15C15.5523 13 16 12.5523 16 12C16 11.4477 15.5523 11 15 11H14ZM9 15C8.44772 15 8 15.4477 8 16C8 16.5523 8.44772 17 9 17H10C10.5523 17 11 16.5523 11 16C11 15.4477 10.5523 15 10 15H9ZM14 15C13.4477 15 13 15.4477 13 16C13 16.5523 13.4477 17 14 17H15C15.5523 17 16 16.5523 16 16C16 15.4477 15.5523 15 15 15H14Z" fill="currentColor" />
|
||||
</svg>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1,8 +1,9 @@
|
||||
import type {IconProps} from "./type.ts";
|
||||
import type { IconProps } from "./type.ts";
|
||||
|
||||
export function IconBook({size = 24, className}: IconProps) {
|
||||
return <svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M6.5 16C7.28333 16 8.04583 16.0875 8.7875 16.2625C9.52917 16.4375 10.2667 16.7 11 17.05V7.2C10.3167 6.8 9.59167 6.5 8.825 6.3C8.05833 6.1 7.28333 6 6.5 6C5.9 6 5.30417 6.05833 4.7125 6.175C4.12083 6.29167 3.55 6.46667 3 6.7V16.6C3.58333 16.4 4.1625 16.25 4.7375 16.15C5.3125 16.05 5.9 16 6.5 16ZM13 17.05C13.7333 16.7 14.4708 16.4375 15.2125 16.2625C15.9542 16.0875 16.7167 16 17.5 16C18.1 16 18.6875 16.05 19.2625 16.15C19.8375 16.25 20.4167 16.4 21 16.6V6.7C20.45 6.46667 19.8792 6.29167 19.2875 6.175C18.6958 6.05833 18.1 6 17.5 6C16.7167 6 15.9417 6.1 15.175 6.3C14.4083 6.5 13.6833 6.8 13 7.2V17.05ZM12 19.475C11.7667 19.475 11.5458 19.4458 11.3375 19.3875C11.1292 19.3292 10.9333 19.25 10.75 19.15C10.1 18.7667 9.41667 18.4792 8.7 18.2875C7.98333 18.0958 7.25 18 6.5 18C5.8 18 5.1125 18.0917 4.4375 18.275C3.7625 18.4583 3.11667 18.7167 2.5 19.05C2.15 19.2333 1.8125 19.225 1.4875 19.025C1.1625 18.825 1 18.5333 1 18.15V6.1C1 5.91667 1.04583 5.74167 1.1375 5.575C1.22917 5.40833 1.36667 5.28333 1.55 5.2C2.31667 4.8 3.11667 4.5 3.95 4.3C4.78333 4.1 5.63333 4 6.5 4C7.46667 4 8.4125 4.125 9.3375 4.375C10.2625 4.625 11.15 5 12 5.5C12.85 5 13.7375 4.625 14.6625 4.375C15.5875 4.125 16.5333 4 17.5 4C18.3667 4 19.2167 4.1 20.05 4.3C20.8833 4.5 21.6833 4.8 22.45 5.2C22.6333 5.28333 22.7708 5.40833 22.8625 5.575C22.9542 5.74167 23 5.91667 23 6.1V18.15C23 18.5333 22.8375 18.825 22.5125 19.025C22.1875 19.225 21.85 19.2333 21.5 19.05C20.8833 18.7167 20.2375 18.4583 19.5625 18.275C18.8875 18.0917 18.2 18 17.5 18C16.75 18 16.0167 18.0958 15.3 18.2875C14.5833 18.4792 13.9 18.7667 13.25 19.15C13.0667 19.25 12.8708 19.3292 12.6625 19.3875C12.4542 19.4458 12.2333 19.475 12 19.475ZM14 8.775C14 8.625 14.0542 8.47083 14.1625 8.3125C14.2708 8.15417 14.3917 8.05 14.525 8C15.0083 7.83333 15.4917 7.70833 15.975 7.625C16.4583 7.54167 16.9667 7.5 17.5 7.5C17.8333 7.5 18.1625 7.52083 18.4875 7.5625C18.8125 7.60417 19.1333 7.65833 19.45 7.725C19.6 7.75833 19.7292 7.84167 19.8375 7.975C19.9458 8.10833 20 8.25833 20 8.425C20 8.70833 19.9083 8.91667 19.725 9.05C19.5417 9.18333 19.3083 9.21667 19.025 9.15C18.7917 9.1 18.5458 9.0625 18.2875 9.0375C18.0292 9.0125 17.7667 9 17.5 9C17.0667 9 16.6417 9.04167 16.225 9.125C15.8083 9.20833 15.4083 9.31667 15.025 9.45C14.725 9.56667 14.4792 9.55833 14.2875 9.425C14.0958 9.29167 14 9.075 14 8.775ZM14 14.275C14 14.125 14.0542 13.9708 14.1625 13.8125C14.2708 13.6542 14.3917 13.55 14.525 13.5C15.0083 13.3333 15.4917 13.2083 15.975 13.125C16.4583 13.0417 16.9667 13 17.5 13C17.8333 13 18.1625 13.0208 18.4875 13.0625C18.8125 13.1042 19.1333 13.1583 19.45 13.225C19.6 13.2583 19.7292 13.3417 19.8375 13.475C19.9458 13.6083 20 13.7583 20 13.925C20 14.2083 19.9083 14.4167 19.725 14.55C19.5417 14.6833 19.3083 14.7167 19.025 14.65C18.7917 14.6 18.5458 14.5625 18.2875 14.5375C18.0292 14.5125 17.7667 14.5 17.5 14.5C17.0667 14.5 16.6417 14.5375 16.225 14.6125C15.8083 14.6875 15.4083 14.7917 15.025 14.925C14.725 15.0417 14.4792 15.0375 14.2875 14.9125C14.0958 14.7875 14 14.575 14 14.275ZM14 11.525C14 11.375 14.0542 11.2208 14.1625 11.0625C14.2708 10.9042 14.3917 10.8 14.525 10.75C15.0083 10.5833 15.4917 10.4583 15.975 10.375C16.4583 10.2917 16.9667 10.25 17.5 10.25C17.8333 10.25 18.1625 10.2708 18.4875 10.3125C18.8125 10.3542 19.1333 10.4083 19.45 10.475C19.6 10.5083 19.7292 10.5917 19.8375 10.725C19.9458 10.8583 20 11.0083 20 11.175C20 11.4583 19.9083 11.6667 19.725 11.8C19.5417 11.9333 19.3083 11.9667 19.025 11.9C18.7917 11.85 18.5458 11.8125 18.2875 11.7875C18.0292 11.7625 17.7667 11.75 17.5 11.75C17.0667 11.75 16.6417 11.7917 16.225 11.875C15.8083 11.9583 15.4083 12.0667 15.025 12.2C14.725 12.3167 14.4792 12.3083 14.2875 12.175C14.0958 12.0417 14 11.825 14 11.525Z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
}
|
||||
export function IconBook({ size = 24, className }: IconProps) {
|
||||
return (
|
||||
<svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M6.5 16C7.28333 16 8.04583 16.0875 8.7875 16.2625C9.52917 16.4375 10.2667 16.7 11 17.05V7.2C10.3167 6.8 9.59167 6.5 8.825 6.3C8.05833 6.1 7.28333 6 6.5 6C5.9 6 5.30417 6.05833 4.7125 6.175C4.12083 6.29167 3.55 6.46667 3 6.7V16.6C3.58333 16.4 4.1625 16.25 4.7375 16.15C5.3125 16.05 5.9 16 6.5 16ZM13 17.05C13.7333 16.7 14.4708 16.4375 15.2125 16.2625C15.9542 16.0875 16.7167 16 17.5 16C18.1 16 18.6875 16.05 19.2625 16.15C19.8375 16.25 20.4167 16.4 21 16.6V6.7C20.45 6.46667 19.8792 6.29167 19.2875 6.175C18.6958 6.05833 18.1 6 17.5 6C16.7167 6 15.9417 6.1 15.175 6.3C14.4083 6.5 13.6833 6.8 13 7.2V17.05ZM12 19.475C11.7667 19.475 11.5458 19.4458 11.3375 19.3875C11.1292 19.3292 10.9333 19.25 10.75 19.15C10.1 18.7667 9.41667 18.4792 8.7 18.2875C7.98333 18.0958 7.25 18 6.5 18C5.8 18 5.1125 18.0917 4.4375 18.275C3.7625 18.4583 3.11667 18.7167 2.5 19.05C2.15 19.2333 1.8125 19.225 1.4875 19.025C1.1625 18.825 1 18.5333 1 18.15V6.1C1 5.91667 1.04583 5.74167 1.1375 5.575C1.22917 5.40833 1.36667 5.28333 1.55 5.2C2.31667 4.8 3.11667 4.5 3.95 4.3C4.78333 4.1 5.63333 4 6.5 4C7.46667 4 8.4125 4.125 9.3375 4.375C10.2625 4.625 11.15 5 12 5.5C12.85 5 13.7375 4.625 14.6625 4.375C15.5875 4.125 16.5333 4 17.5 4C18.3667 4 19.2167 4.1 20.05 4.3C20.8833 4.5 21.6833 4.8 22.45 5.2C22.6333 5.28333 22.7708 5.40833 22.8625 5.575C22.9542 5.74167 23 5.91667 23 6.1V18.15C23 18.5333 22.8375 18.825 22.5125 19.025C22.1875 19.225 21.85 19.2333 21.5 19.05C20.8833 18.7167 20.2375 18.4583 19.5625 18.275C18.8875 18.0917 18.2 18 17.5 18C16.75 18 16.0167 18.0958 15.3 18.2875C14.5833 18.4792 13.9 18.7667 13.25 19.15C13.0667 19.25 12.8708 19.3292 12.6625 19.3875C12.4542 19.4458 12.2333 19.475 12 19.475ZM14 8.775C14 8.625 14.0542 8.47083 14.1625 8.3125C14.2708 8.15417 14.3917 8.05 14.525 8C15.0083 7.83333 15.4917 7.70833 15.975 7.625C16.4583 7.54167 16.9667 7.5 17.5 7.5C17.8333 7.5 18.1625 7.52083 18.4875 7.5625C18.8125 7.60417 19.1333 7.65833 19.45 7.725C19.6 7.75833 19.7292 7.84167 19.8375 7.975C19.9458 8.10833 20 8.25833 20 8.425C20 8.70833 19.9083 8.91667 19.725 9.05C19.5417 9.18333 19.3083 9.21667 19.025 9.15C18.7917 9.1 18.5458 9.0625 18.2875 9.0375C18.0292 9.0125 17.7667 9 17.5 9C17.0667 9 16.6417 9.04167 16.225 9.125C15.8083 9.20833 15.4083 9.31667 15.025 9.45C14.725 9.56667 14.4792 9.55833 14.2875 9.425C14.0958 9.29167 14 9.075 14 8.775ZM14 14.275C14 14.125 14.0542 13.9708 14.1625 13.8125C14.2708 13.6542 14.3917 13.55 14.525 13.5C15.0083 13.3333 15.4917 13.2083 15.975 13.125C16.4583 13.0417 16.9667 13 17.5 13C17.8333 13 18.1625 13.0208 18.4875 13.0625C18.8125 13.1042 19.1333 13.1583 19.45 13.225C19.6 13.2583 19.7292 13.3417 19.8375 13.475C19.9458 13.6083 20 13.7583 20 13.925C20 14.2083 19.9083 14.4167 19.725 14.55C19.5417 14.6833 19.3083 14.7167 19.025 14.65C18.7917 14.6 18.5458 14.5625 18.2875 14.5375C18.0292 14.5125 17.7667 14.5 17.5 14.5C17.0667 14.5 16.6417 14.5375 16.225 14.6125C15.8083 14.6875 15.4083 14.7917 15.025 14.925C14.725 15.0417 14.4792 15.0375 14.2875 14.9125C14.0958 14.7875 14 14.575 14 14.275ZM14 11.525C14 11.375 14.0542 11.2208 14.1625 11.0625C14.2708 10.9042 14.3917 10.8 14.525 10.75C15.0083 10.5833 15.4917 10.4583 15.975 10.375C16.4583 10.2917 16.9667 10.25 17.5 10.25C17.8333 10.25 18.1625 10.2708 18.4875 10.3125C18.8125 10.3542 19.1333 10.4083 19.45 10.475C19.6 10.5083 19.7292 10.5917 19.8375 10.725C19.9458 10.8583 20 11.0083 20 11.175C20 11.4583 19.9083 11.6667 19.725 11.8C19.5417 11.9333 19.3083 11.9667 19.025 11.9C18.7917 11.85 18.5458 11.8125 18.2875 11.7875C18.0292 11.7625 17.7667 11.75 17.5 11.75C17.0667 11.75 16.6417 11.7917 16.225 11.875C15.8083 11.9583 15.4083 12.0667 15.025 12.2C14.725 12.3167 14.4792 12.3083 14.2875 12.175C14.0958 12.0417 14 11.825 14 11.525Z" fill="currentColor" />
|
||||
</svg>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -2,22 +2,22 @@ import type { IconProps } from "./type.ts";
|
||||
|
||||
// https://lucide.dev/icons/box
|
||||
export function IconBox({ size = 24, className }: IconProps) {
|
||||
return (
|
||||
<svg
|
||||
width={size}
|
||||
height={size}
|
||||
viewBox="0 0 24 24"
|
||||
className={className}
|
||||
fill="none"
|
||||
stroke="currentColor"
|
||||
strokeWidth="2"
|
||||
strokeLinecap="round"
|
||||
strokeLinejoin="round"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
>
|
||||
<path d="M21 8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16Z" />
|
||||
<path d="m3.3 7 8.7 5 8.7-5"></path>
|
||||
<path d="M12 22V12"></path>
|
||||
</svg>
|
||||
);
|
||||
return (
|
||||
<svg
|
||||
width={size}
|
||||
height={size}
|
||||
viewBox="0 0 24 24"
|
||||
className={className}
|
||||
fill="none"
|
||||
stroke="currentColor"
|
||||
strokeWidth="2"
|
||||
strokeLinecap="round"
|
||||
strokeLinejoin="round"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
>
|
||||
<path d="M21 8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16Z" />
|
||||
<path d="m3.3 7 8.7 5 8.7-5"></path>
|
||||
<path d="M12 22V12"></path>
|
||||
</svg>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1,9 +1,10 @@
|
||||
import type {IconProps} from "./type.ts";
|
||||
import type { IconProps } from "./type.ts";
|
||||
|
||||
export function IconCalendar1({size = 24, className}: IconProps) {
|
||||
return <svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M8 2C8.55228 2 9 2.44772 9 3V4H15V3C15 2.44772 15.4477 2 16 2C16.5523 2 17 2.44772 17 3V4C19.2091 4 21 5.79086 21 8V9H3V8C3 5.79086 4.79086 4 7 4V3C7 2.44772 7.44772 2 8 2Z" fill="currentColor"/>
|
||||
<path d="M3 11V17C3 19.2091 4.79086 21 7 21H17C19.2091 21 21 19.2091 21 17V11H3Z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
}
|
||||
export function IconCalendar1({ size = 24, className }: IconProps) {
|
||||
return (
|
||||
<svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M8 2C8.55228 2 9 2.44772 9 3V4H15V3C15 2.44772 15.4477 2 16 2C16.5523 2 17 2.44772 17 3V4C19.2091 4 21 5.79086 21 8V9H3V8C3 5.79086 4.79086 4 7 4V3C7 2.44772 7.44772 2 8 2Z" fill="currentColor" />
|
||||
<path d="M3 11V17C3 19.2091 4.79086 21 7 21H17C19.2091 21 21 19.2091 21 17V11H3Z" fill="currentColor" />
|
||||
</svg>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1,8 +1,9 @@
|
||||
import type {IconProps} from "./type.ts";
|
||||
import type { IconProps } from "./type.ts";
|
||||
|
||||
export function IconCalendar2({size = 24, className}: IconProps) {
|
||||
return <svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M8 2C8.55228 2 9 2.44772 9 3V4H15V3C15 2.44772 15.4477 2 16 2C16.5523 2 17 2.44772 17 3V4C19.2092 4 21 5.79088 21 8V17C21 19.2092 19.2092 21 17 21H7C4.79088 21 3 19.2092 3 17V8C3 5.79087 4.79087 4 7 4V3C7 2.44772 7.44772 2 8 2ZM7 6C5.89543 6 5 6.89543 5 8V9H19V8C19 6.89542 18.1046 6 17 6H7ZM19 11H5V17C5 18.1046 5.89542 19 7 19H17C18.1046 19 19 18.1046 19 17V11Z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
}
|
||||
export function IconCalendar2({ size = 24, className }: IconProps) {
|
||||
return (
|
||||
<svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M8 2C8.55228 2 9 2.44772 9 3V4H15V3C15 2.44772 15.4477 2 16 2C16.5523 2 17 2.44772 17 3V4C19.2092 4 21 5.79088 21 8V17C21 19.2092 19.2092 21 17 21H7C4.79088 21 3 19.2092 3 17V8C3 5.79087 4.79087 4 7 4V3C7 2.44772 7.44772 2 8 2ZM7 6C5.89543 6 5 6.89543 5 8V9H19V8C19 6.89542 18.1046 6 17 6H7ZM19 11H5V17C5 18.1046 5.89542 19 7 19H17C18.1046 19 19 18.1046 19 17V11Z" fill="currentColor" />
|
||||
</svg>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1,8 +1,9 @@
|
||||
import type {IconProps} from "./type.ts";
|
||||
import type { IconProps } from "./type.ts";
|
||||
|
||||
export function IconCheckmark1({size = 24, className}: IconProps) {
|
||||
return <svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M19.3209 4.24472C20.0143 4.69807 20.2088 5.62768 19.7555 6.32105L11.2555 19.321C10.9972 19.7161 10.5681 19.9665 10.0971 19.997C9.62616 20.0276 9.16828 19.8347 8.86114 19.4764L4.36114 14.2264C3.82201 13.5974 3.89485 12.6504 4.52384 12.1113C5.15283 11.5722 6.09978 11.645 6.63891 12.274L9.83828 16.0066L17.2446 4.6793C17.6979 3.98593 18.6275 3.79136 19.3209 4.24472Z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
}
|
||||
export function IconCheckmark1({ size = 24, className }: IconProps) {
|
||||
return (
|
||||
<svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M19.3209 4.24472C20.0143 4.69807 20.2088 5.62768 19.7555 6.32105L11.2555 19.321C10.9972 19.7161 10.5681 19.9665 10.0971 19.997C9.62616 20.0276 9.16828 19.8347 8.86114 19.4764L4.36114 14.2264C3.82201 13.5974 3.89485 12.6504 4.52384 12.1113C5.15283 11.5722 6.09978 11.645 6.63891 12.274L9.83828 16.0066L17.2446 4.6793C17.6979 3.98593 18.6275 3.79136 19.3209 4.24472Z" fill="currentColor" />
|
||||
</svg>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1,8 +1,9 @@
|
||||
import type {IconProps} from "./type.ts";
|
||||
import type { IconProps } from "./type.ts";
|
||||
|
||||
export function IconCheckmark2Small({size = 24, className}: IconProps) {
|
||||
return <svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M17.6585 7.24744C18.0741 7.61112 18.1163 8.24288 17.7526 8.65852L10.7526 16.6585C10.5703 16.8668 10.3099 16.9902 10.0333 16.9995C9.75666 17.0087 9.4886 16.9028 9.29289 16.7071L6.29289 13.7071C5.90237 13.3166 5.90237 12.6834 6.29289 12.2929C6.68342 11.9024 7.31658 11.9024 7.70711 12.2929L9.95129 14.5371L16.2474 7.34151C16.6111 6.92587 17.2429 6.88375 17.6585 7.24744Z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
}
|
||||
export function IconCheckmark2Small({ size = 24, className }: IconProps) {
|
||||
return (
|
||||
<svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M17.6585 7.24744C18.0741 7.61112 18.1163 8.24288 17.7526 8.65852L10.7526 16.6585C10.5703 16.8668 10.3099 16.9902 10.0333 16.9995C9.75666 17.0087 9.4886 16.9028 9.29289 16.7071L6.29289 13.7071C5.90237 13.3166 5.90237 12.6834 6.29289 12.2929C6.68342 11.9024 7.31658 11.9024 7.70711 12.2929L9.95129 14.5371L16.2474 7.34151C16.6111 6.92587 17.2429 6.88375 17.6585 7.24744Z" fill="currentColor" />
|
||||
</svg>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1,8 +1,9 @@
|
||||
import type {IconProps} from "./type.ts";
|
||||
import type { IconProps } from "./type.ts";
|
||||
|
||||
export function IconChevronDown({size = 24, className}: IconProps) {
|
||||
return <svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M3.35147 8.15147C3.8201 7.68284 4.5799 7.68284 5.04853 8.15147L12 15.1029L18.9515 8.15147C19.4201 7.68284 20.1799 7.68284 20.6485 8.15147C21.1172 8.6201 21.1172 9.3799 20.6485 9.84853L12.8485 17.6485C12.3799 18.1172 11.6201 18.1172 11.1515 17.6485L3.35147 9.84853C2.88284 9.3799 2.88284 8.6201 3.35147 8.15147Z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
}
|
||||
export function IconChevronDown({ size = 24, className }: IconProps) {
|
||||
return (
|
||||
<svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M3.35147 8.15147C3.8201 7.68284 4.5799 7.68284 5.04853 8.15147L12 15.1029L18.9515 8.15147C19.4201 7.68284 20.1799 7.68284 20.6485 8.15147C21.1172 8.6201 21.1172 9.3799 20.6485 9.84853L12.8485 17.6485C12.3799 18.1172 11.6201 18.1172 11.1515 17.6485L3.35147 9.84853C2.88284 9.3799 2.88284 8.6201 3.35147 8.15147Z" fill="currentColor" />
|
||||
</svg>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1,8 +1,9 @@
|
||||
import type {IconProps} from "./type.ts";
|
||||
import type { IconProps } from "./type.ts";
|
||||
|
||||
export function IconChevronGrabberVertical({size = 24, className}: IconProps) {
|
||||
return <svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M11.8232 6.59108L8.70711 9.70717C8.31659 10.0977 7.68342 10.0977 7.2929 9.70717C6.90237 9.31665 6.90237 8.68348 7.29289 8.29296L10.409 5.17684C11.2877 4.29819 12.7123 4.29816 13.591 5.17681L16.7071 8.29296C17.0976 8.68348 17.0976 9.31665 16.7071 9.70717C16.3166 10.0977 15.6834 10.0977 15.2929 9.70717L12.1768 6.59108C12.0791 6.49344 11.9209 6.49345 11.8232 6.59108ZM7.29289 14.293C7.68342 13.9025 8.31658 13.9025 8.70711 14.293L11.8231 17.409C11.9208 17.5066 12.0791 17.5067 12.1768 17.4091L15.2929 14.293C15.6834 13.9025 16.3166 13.9025 16.7071 14.293C17.0976 14.6835 17.0976 15.3167 16.7071 15.7072L13.591 18.8233C12.7123 19.7018 11.2878 19.7019 10.4091 18.8234L7.29289 15.7072C6.90237 15.3167 6.90237 14.6835 7.29289 14.293Z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
}
|
||||
export function IconChevronGrabberVertical({ size = 24, className }: IconProps) {
|
||||
return (
|
||||
<svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M11.8232 6.59108L8.70711 9.70717C8.31659 10.0977 7.68342 10.0977 7.2929 9.70717C6.90237 9.31665 6.90237 8.68348 7.29289 8.29296L10.409 5.17684C11.2877 4.29819 12.7123 4.29816 13.591 5.17681L16.7071 8.29296C17.0976 8.68348 17.0976 9.31665 16.7071 9.70717C16.3166 10.0977 15.6834 10.0977 15.2929 9.70717L12.1768 6.59108C12.0791 6.49344 11.9209 6.49345 11.8232 6.59108ZM7.29289 14.293C7.68342 13.9025 8.31658 13.9025 8.70711 14.293L11.8231 17.409C11.9208 17.5066 12.0791 17.5067 12.1768 17.4091L15.2929 14.293C15.6834 13.9025 16.3166 13.9025 16.7071 14.293C17.0976 14.6835 17.0976 15.3167 16.7071 15.7072L13.591 18.8233C12.7123 19.7018 11.2878 19.7019 10.4091 18.8234L7.29289 15.7072C6.90237 15.3167 6.90237 14.6835 7.29289 14.293Z" fill="currentColor" />
|
||||
</svg>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1,8 +1,9 @@
|
||||
import type {IconProps} from "./type.ts";
|
||||
import type { IconProps } from "./type.ts";
|
||||
|
||||
export function IconChevronLeft({size = 24, className}: IconProps) {
|
||||
return <svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M15.8485 3.35147C16.3172 3.8201 16.3172 4.5799 15.8485 5.04853L8.89706 12L15.8485 18.9515C16.3172 19.4201 16.3172 20.1799 15.8485 20.6485C15.3799 21.1172 14.6201 21.1172 14.1515 20.6485L6.35147 12.8485C5.88284 12.3799 5.88284 11.6201 6.35147 11.1515L14.1515 3.35147C14.6201 2.88284 15.3799 2.88284 15.8485 3.35147Z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
}
|
||||
export function IconChevronLeft({ size = 24, className }: IconProps) {
|
||||
return (
|
||||
<svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M15.8485 3.35147C16.3172 3.8201 16.3172 4.5799 15.8485 5.04853L8.89706 12L15.8485 18.9515C16.3172 19.4201 16.3172 20.1799 15.8485 20.6485C15.3799 21.1172 14.6201 21.1172 14.1515 20.6485L6.35147 12.8485C5.88284 12.3799 5.88284 11.6201 6.35147 11.1515L14.1515 3.35147C14.6201 2.88284 15.3799 2.88284 15.8485 3.35147Z" fill="currentColor" />
|
||||
</svg>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1,8 +1,9 @@
|
||||
import type {IconProps} from "./type.ts";
|
||||
import type { IconProps } from "./type.ts";
|
||||
|
||||
export function IconChevronRight({size = 24, className}: IconProps) {
|
||||
return <svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M8.15147 3.35147C8.6201 2.88284 9.37989 2.88284 9.84852 3.35147L17.6485 11.1515C18.1172 11.6201 18.1172 12.3799 17.6485 12.8485L9.84852 20.6485C9.37989 21.1172 8.6201 21.1172 8.15147 20.6485C7.68284 20.1799 7.68284 19.4201 8.15147 18.9515L15.1029 12L8.15147 5.04853C7.68284 4.5799 7.68284 3.8201 8.15147 3.35147Z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
}
|
||||
export function IconChevronRight({ size = 24, className }: IconProps) {
|
||||
return (
|
||||
<svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M8.15147 3.35147C8.6201 2.88284 9.37989 2.88284 9.84852 3.35147L17.6485 11.1515C18.1172 11.6201 18.1172 12.3799 17.6485 12.8485L9.84852 20.6485C9.37989 21.1172 8.6201 21.1172 8.15147 20.6485C7.68284 20.1799 7.68284 19.4201 8.15147 18.9515L15.1029 12L8.15147 5.04853C7.68284 4.5799 7.68284 3.8201 8.15147 3.35147Z" fill="currentColor" />
|
||||
</svg>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1,8 +1,9 @@
|
||||
import type {IconProps} from "./type.ts";
|
||||
import type { IconProps } from "./type.ts";
|
||||
|
||||
export function IconChevronTriangleDownSmall({size = 24, className}: IconProps) {
|
||||
return <svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M9.52231 9.75C8.27409 9.75 7.57194 11.1856 8.33828 12.1709L10.816 15.3565C11.4165 16.1286 12.5835 16.1286 13.184 15.3565L15.6617 12.1709C16.428 11.1856 15.7259 9.75 14.4777 9.75H9.52231Z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
}
|
||||
export function IconChevronTriangleDownSmall({ size = 24, className }: IconProps) {
|
||||
return (
|
||||
<svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M9.52231 9.75C8.27409 9.75 7.57194 11.1856 8.33828 12.1709L10.816 15.3565C11.4165 16.1286 12.5835 16.1286 13.184 15.3565L15.6617 12.1709C16.428 11.1856 15.7259 9.75 14.4777 9.75H9.52231Z" fill="currentColor" />
|
||||
</svg>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1,8 +1,9 @@
|
||||
import type {IconProps} from "./type.ts";
|
||||
import type { IconProps } from "./type.ts";
|
||||
|
||||
export function IconChevronUp({size = 24, className}: IconProps) {
|
||||
return <svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M11.1515 6.35147C11.6201 5.88284 12.3799 5.88284 12.8485 6.35147L20.6485 14.1515C21.1172 14.6201 21.1172 15.3799 20.6485 15.8485C20.1799 16.3172 19.4201 16.3172 18.9515 15.8485L12 8.89706L5.04853 15.8485C4.5799 16.3172 3.8201 16.3172 3.35147 15.8485C2.88284 15.3799 2.88284 14.6201 3.35147 14.1515L11.1515 6.35147Z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
}
|
||||
export function IconChevronUp({ size = 24, className }: IconProps) {
|
||||
return (
|
||||
<svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M11.1515 6.35147C11.6201 5.88284 12.3799 5.88284 12.8485 6.35147L20.6485 14.1515C21.1172 14.6201 21.1172 15.3799 20.6485 15.8485C20.1799 16.3172 19.4201 16.3172 18.9515 15.8485L12 8.89706L5.04853 15.8485C4.5799 16.3172 3.8201 16.3172 3.35147 15.8485C2.88284 15.3799 2.88284 14.6201 3.35147 14.1515L11.1515 6.35147Z" fill="currentColor" />
|
||||
</svg>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1,8 +1,9 @@
|
||||
import type {IconProps} from "./type.ts";
|
||||
import type { IconProps } from "./type.ts";
|
||||
|
||||
export function IconCircleCheck({size = 24, className}: IconProps) {
|
||||
return <svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2ZM15.774 10.1333C16.1237 9.70582 16.0607 9.0758 15.6332 8.72607C15.2058 8.37635 14.5758 8.43935 14.226 8.86679L10.4258 13.5116L9.20711 12.2929C8.81658 11.9024 8.18342 11.9024 7.79289 12.2929C7.40237 12.6834 7.40237 13.3166 7.79289 13.7071L9.79289 15.7071C9.99267 15.9069 10.2676 16.0129 10.5498 15.9988C10.832 15.9847 11.095 15.8519 11.274 15.6333L15.774 10.1333Z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
}
|
||||
export function IconCircleCheck({ size = 24, className }: IconProps) {
|
||||
return (
|
||||
<svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2ZM15.774 10.1333C16.1237 9.70582 16.0607 9.0758 15.6332 8.72607C15.2058 8.37635 14.5758 8.43935 14.226 8.86679L10.4258 13.5116L9.20711 12.2929C8.81658 11.9024 8.18342 11.9024 7.79289 12.2929C7.40237 12.6834 7.40237 13.3166 7.79289 13.7071L9.79289 15.7071C9.99267 15.9069 10.2676 16.0129 10.5498 15.9988C10.832 15.9847 11.095 15.8519 11.274 15.6333L15.774 10.1333Z" fill="currentColor" />
|
||||
</svg>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1,9 +1,10 @@
|
||||
import type {IconProps} from "./type.ts";
|
||||
import type { IconProps } from "./type.ts";
|
||||
|
||||
export function IconCircleCheck1({size = 24, className}: IconProps) {
|
||||
return <svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M20 12C20 7.58172 16.4183 4 12 4C7.58172 4 4 7.58172 4 12C4 16.4183 7.58172 20 12 20C16.4183 20 20 16.4183 20 12ZM22 12C22 17.5229 17.5229 22 12 22C6.47716 22 2 17.5229 2 12C2 6.47716 6.47716 2 12 2C17.5229 2 22 6.47716 22 12Z" fill="currentColor"/>
|
||||
<path d="M14.2256 8.86719C14.5752 8.4399 15.2054 8.3763 15.6328 8.72559C16.0601 9.07518 16.1237 9.70538 15.7744 10.1328L11.2744 15.6328C11.0955 15.8515 10.832 15.985 10.5498 15.999C10.3028 16.0113 10.0614 15.9314 9.87109 15.7773L9.79297 15.707L7.79297 13.707L7.72461 13.6309C7.40426 13.2381 7.42685 12.6591 7.79297 12.293C8.15908 11.9269 8.73809 11.9043 9.13086 12.2246L9.20703 12.293L10.4248 13.5107L14.2256 8.86719Z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
}
|
||||
export function IconCircleCheck1({ size = 24, className }: IconProps) {
|
||||
return (
|
||||
<svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M20 12C20 7.58172 16.4183 4 12 4C7.58172 4 4 7.58172 4 12C4 16.4183 7.58172 20 12 20C16.4183 20 20 16.4183 20 12ZM22 12C22 17.5229 17.5229 22 12 22C6.47716 22 2 17.5229 2 12C2 6.47716 6.47716 2 12 2C17.5229 2 22 6.47716 22 12Z" fill="currentColor" />
|
||||
<path d="M14.2256 8.86719C14.5752 8.4399 15.2054 8.3763 15.6328 8.72559C16.0601 9.07518 16.1237 9.70538 15.7744 10.1328L11.2744 15.6328C11.0955 15.8515 10.832 15.985 10.5498 15.999C10.3028 16.0113 10.0614 15.9314 9.87109 15.7773L9.79297 15.707L7.79297 13.707L7.72461 13.6309C7.40426 13.2381 7.42685 12.6591 7.79297 12.293C8.15908 11.9269 8.73809 11.9043 9.13086 12.2246L9.20703 12.293L10.4248 13.5107L14.2256 8.86719Z" fill="currentColor" />
|
||||
</svg>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1,8 +1,9 @@
|
||||
import type {IconProps} from "./type.ts";
|
||||
import type { IconProps } from "./type.ts";
|
||||
|
||||
export function IconCircleInfo({size = 24, className}: IconProps) {
|
||||
return <svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2ZM10 11C10 10.4477 10.4477 10 11 10H12C12.5523 10 13 10.4477 13 11V16C13 16.5523 12.5523 17 12 17C11.4477 17 11 16.5523 11 16V12C10.4477 12 10 11.5523 10 11ZM12 7C11.4477 7 11 7.44772 11 8C11 8.55228 11.4477 9 12 9C12.5523 9 13 8.55228 13 8C13 7.44772 12.5523 7 12 7Z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
}
|
||||
export function IconCircleInfo({ size = 24, className }: IconProps) {
|
||||
return (
|
||||
<svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2ZM10 11C10 10.4477 10.4477 10 11 10H12C12.5523 10 13 10.4477 13 11V16C13 16.5523 12.5523 17 12 17C11.4477 17 11 16.5523 11 16V12C10.4477 12 10 11.5523 10 11ZM12 7C11.4477 7 11 7.44772 11 8C11 8.55228 11.4477 9 12 9C12.5523 9 13 8.55228 13 8C13 7.44772 12.5523 7 12 7Z" fill="currentColor" />
|
||||
</svg>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1,8 +1,9 @@
|
||||
import type {IconProps} from "./type.ts";
|
||||
import type { IconProps } from "./type.ts";
|
||||
|
||||
export function IconCircleProgress({size = 24, className}: IconProps) {
|
||||
return <svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M10.2686 20.7061C10.6885 20.7891 11.1193 20.8427 11.5586 20.8643L12 20.875C12.5791 20.875 13.1455 20.8177 13.6934 20.7119L13.6943 20.7129L13.7578 20.7031C13.826 20.6987 13.8906 20.7327 13.9268 20.7891L13.9531 20.8535C13.9727 20.9524 13.9096 21.0482 13.8115 21.0713L13.3535 21.1523C12.9126 21.217 12.4603 21.25 12 21.25L11.54 21.2383C11.2349 21.2233 10.9335 21.1942 10.6367 21.1504L10.1953 21.0742C10.1187 21.059 10.0627 20.9991 10.0479 20.9277L10.0469 20.8535C10.0645 20.7649 10.1431 20.7027 10.2305 20.7021L10.2686 20.7061ZM5.06348 17.5361C5.54244 18.1352 6.09709 18.6714 6.71289 19.1289L6.72656 19.1387L7.03809 19.3594H7.03906L7.08594 19.3936C7.13994 19.4388 7.16311 19.5104 7.14844 19.5771L7.12109 19.6406C7.06844 19.7193 6.96543 19.745 6.88281 19.7041L6.84863 19.6836L6.47559 19.4189C5.83054 18.9378 5.25075 18.3745 4.75098 17.7451L5.06348 17.5361ZM19.6074 16.8623L19.6406 16.8799C19.7052 16.9232 19.7346 16.9996 19.7207 17.0713L19.6924 17.1396C19.1565 17.94 18.4968 18.6497 17.7441 19.2471L17.5352 18.9346C18.1339 18.456 18.6714 17.9039 19.1289 17.2881L19.3799 16.9316H19.3809C19.4311 16.8566 19.5264 16.8291 19.6074 16.8623ZM12 7.125C14.6924 7.125 16.8749 9.30763 16.875 12C16.875 14.6924 14.6924 16.875 12 16.875C9.30763 16.8749 7.125 14.6924 7.125 12C7.12508 9.30768 9.30768 7.12508 12 7.125ZM3.14648 10.0469C3.23507 10.0645 3.29728 10.1429 3.29785 10.2305L3.29395 10.2686C3.18327 10.8282 3.12503 11.4073 3.125 12L3.13086 12.332C3.14306 12.6626 3.17342 12.9885 3.2207 13.3086L3.22266 13.3174L3.22363 13.3262L3.28711 13.6934V13.6943L3.2959 13.7578C3.30033 13.8262 3.26726 13.8907 3.21094 13.9268L3.14648 13.9531C3.05242 13.9717 2.96029 13.9159 2.93164 13.8281L2.9248 13.7998L2.84863 13.3574C2.78348 12.9144 2.75001 12.4608 2.75 12L2.76172 11.54C2.7767 11.2349 2.80575 10.9335 2.84961 10.6367L2.92578 10.1953C2.94092 10.1189 3.00077 10.0627 3.07227 10.0479L3.14648 10.0469ZM21.1865 10.9365C21.2265 11.2857 21.25 11.6404 21.25 12L21.2383 12.4609C21.2161 12.9128 21.162 13.3563 21.0771 13.7891L21.0674 13.8281C21.0459 13.8936 20.9901 13.941 20.9238 13.9531H20.8535C20.7518 13.9328 20.6861 13.8336 20.7061 13.7324L20.708 13.7246L20.709 13.7158L20.7764 13.3281L20.7803 13.3086C20.8434 12.8809 20.875 12.4435 20.875 12L20.8643 11.5586C20.8552 11.374 20.8375 11.1912 20.8174 11.0098L21.1865 10.9365ZM6.88086 4.2959C6.94273 4.26456 7.01679 4.27193 7.07227 4.31055L7.12109 4.36035C7.17773 4.44575 7.15476 4.56129 7.06836 4.61914L7.05273 4.63086L6.72656 4.86133L6.71289 4.87109C5.99852 5.40185 5.3658 6.03774 4.83887 6.75586L4.63672 7.04395L4.60254 7.08984C4.54208 7.15747 4.43818 7.1738 4.35938 7.12109H4.36035C4.29528 7.07753 4.26556 7.00042 4.2793 6.92871L4.30762 6.86035L4.58105 6.47559L4.58008 6.47461C5.2073 5.63366 5.97424 4.90321 6.8457 4.31738L6.88086 4.2959ZM17.1396 4.30762C18.0169 4.89492 18.7883 5.62923 19.4189 6.47461V6.47559L19.6836 6.84863L19.7041 6.88184C19.7351 6.94366 19.7288 7.01698 19.6904 7.07227L19.6406 7.12109C19.5609 7.17429 19.4538 7.15783 19.3936 7.08594L19.3594 7.03906L19.1387 6.72656L19.1289 6.71289L18.8945 6.41211C18.4143 5.82018 17.8598 5.2906 17.2441 4.83887L16.9316 4.61914C16.8672 4.57602 16.8377 4.50044 16.8516 4.42871L16.8799 4.36035C16.9234 4.29533 16.9998 4.26657 17.0713 4.28027L17.1396 4.30762ZM12 2.75C12.4608 2.75001 12.9144 2.78348 13.3574 2.84863L13.7998 2.9248L13.8281 2.93164C13.8936 2.95302 13.941 3.0097 13.9531 3.07617V3.14648C13.9347 3.23945 13.8495 3.30184 13.7578 3.2959L13.6943 3.28711H13.6934L13.3262 3.22363L13.3174 3.22266L13.3086 3.2207L12.9863 3.17969C12.7705 3.1558 12.5524 3.13899 12.332 3.13086L12 3.125C11.5554 3.12502 11.1183 3.15759 10.6914 3.2207L10.2686 3.29395C10.1921 3.30906 10.1173 3.27531 10.0762 3.21484L10.0469 3.14648C10.0294 3.05808 10.0779 2.97145 10.1582 2.9375L10.1953 2.92578C10.6332 2.83917 11.0824 2.78418 11.54 2.76172L12 2.75Z" fill="currentColor" stroke="currentColor" strokeWidth="1.5"/>
|
||||
</svg>
|
||||
|
||||
}
|
||||
export function IconCircleProgress({ size = 24, className }: IconProps) {
|
||||
return (
|
||||
<svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M10.2686 20.7061C10.6885 20.7891 11.1193 20.8427 11.5586 20.8643L12 20.875C12.5791 20.875 13.1455 20.8177 13.6934 20.7119L13.6943 20.7129L13.7578 20.7031C13.826 20.6987 13.8906 20.7327 13.9268 20.7891L13.9531 20.8535C13.9727 20.9524 13.9096 21.0482 13.8115 21.0713L13.3535 21.1523C12.9126 21.217 12.4603 21.25 12 21.25L11.54 21.2383C11.2349 21.2233 10.9335 21.1942 10.6367 21.1504L10.1953 21.0742C10.1187 21.059 10.0627 20.9991 10.0479 20.9277L10.0469 20.8535C10.0645 20.7649 10.1431 20.7027 10.2305 20.7021L10.2686 20.7061ZM5.06348 17.5361C5.54244 18.1352 6.09709 18.6714 6.71289 19.1289L6.72656 19.1387L7.03809 19.3594H7.03906L7.08594 19.3936C7.13994 19.4388 7.16311 19.5104 7.14844 19.5771L7.12109 19.6406C7.06844 19.7193 6.96543 19.745 6.88281 19.7041L6.84863 19.6836L6.47559 19.4189C5.83054 18.9378 5.25075 18.3745 4.75098 17.7451L5.06348 17.5361ZM19.6074 16.8623L19.6406 16.8799C19.7052 16.9232 19.7346 16.9996 19.7207 17.0713L19.6924 17.1396C19.1565 17.94 18.4968 18.6497 17.7441 19.2471L17.5352 18.9346C18.1339 18.456 18.6714 17.9039 19.1289 17.2881L19.3799 16.9316H19.3809C19.4311 16.8566 19.5264 16.8291 19.6074 16.8623ZM12 7.125C14.6924 7.125 16.8749 9.30763 16.875 12C16.875 14.6924 14.6924 16.875 12 16.875C9.30763 16.8749 7.125 14.6924 7.125 12C7.12508 9.30768 9.30768 7.12508 12 7.125ZM3.14648 10.0469C3.23507 10.0645 3.29728 10.1429 3.29785 10.2305L3.29395 10.2686C3.18327 10.8282 3.12503 11.4073 3.125 12L3.13086 12.332C3.14306 12.6626 3.17342 12.9885 3.2207 13.3086L3.22266 13.3174L3.22363 13.3262L3.28711 13.6934V13.6943L3.2959 13.7578C3.30033 13.8262 3.26726 13.8907 3.21094 13.9268L3.14648 13.9531C3.05242 13.9717 2.96029 13.9159 2.93164 13.8281L2.9248 13.7998L2.84863 13.3574C2.78348 12.9144 2.75001 12.4608 2.75 12L2.76172 11.54C2.7767 11.2349 2.80575 10.9335 2.84961 10.6367L2.92578 10.1953C2.94092 10.1189 3.00077 10.0627 3.07227 10.0479L3.14648 10.0469ZM21.1865 10.9365C21.2265 11.2857 21.25 11.6404 21.25 12L21.2383 12.4609C21.2161 12.9128 21.162 13.3563 21.0771 13.7891L21.0674 13.8281C21.0459 13.8936 20.9901 13.941 20.9238 13.9531H20.8535C20.7518 13.9328 20.6861 13.8336 20.7061 13.7324L20.708 13.7246L20.709 13.7158L20.7764 13.3281L20.7803 13.3086C20.8434 12.8809 20.875 12.4435 20.875 12L20.8643 11.5586C20.8552 11.374 20.8375 11.1912 20.8174 11.0098L21.1865 10.9365ZM6.88086 4.2959C6.94273 4.26456 7.01679 4.27193 7.07227 4.31055L7.12109 4.36035C7.17773 4.44575 7.15476 4.56129 7.06836 4.61914L7.05273 4.63086L6.72656 4.86133L6.71289 4.87109C5.99852 5.40185 5.3658 6.03774 4.83887 6.75586L4.63672 7.04395L4.60254 7.08984C4.54208 7.15747 4.43818 7.1738 4.35938 7.12109H4.36035C4.29528 7.07753 4.26556 7.00042 4.2793 6.92871L4.30762 6.86035L4.58105 6.47559L4.58008 6.47461C5.2073 5.63366 5.97424 4.90321 6.8457 4.31738L6.88086 4.2959ZM17.1396 4.30762C18.0169 4.89492 18.7883 5.62923 19.4189 6.47461V6.47559L19.6836 6.84863L19.7041 6.88184C19.7351 6.94366 19.7288 7.01698 19.6904 7.07227L19.6406 7.12109C19.5609 7.17429 19.4538 7.15783 19.3936 7.08594L19.3594 7.03906L19.1387 6.72656L19.1289 6.71289L18.8945 6.41211C18.4143 5.82018 17.8598 5.2906 17.2441 4.83887L16.9316 4.61914C16.8672 4.57602 16.8377 4.50044 16.8516 4.42871L16.8799 4.36035C16.9234 4.29533 16.9998 4.26657 17.0713 4.28027L17.1396 4.30762ZM12 2.75C12.4608 2.75001 12.9144 2.78348 13.3574 2.84863L13.7998 2.9248L13.8281 2.93164C13.8936 2.95302 13.941 3.0097 13.9531 3.07617V3.14648C13.9347 3.23945 13.8495 3.30184 13.7578 3.2959L13.6943 3.28711H13.6934L13.3262 3.22363L13.3174 3.22266L13.3086 3.2207L12.9863 3.17969C12.7705 3.1558 12.5524 3.13899 12.332 3.13086L12 3.125C11.5554 3.12502 11.1183 3.15759 10.6914 3.2207L10.2686 3.29395C10.1921 3.30906 10.1173 3.27531 10.0762 3.21484L10.0469 3.14648C10.0294 3.05808 10.0779 2.97145 10.1582 2.9375L10.1953 2.92578C10.6332 2.83917 11.0824 2.78418 11.54 2.76172L12 2.75Z" fill="currentColor" stroke="currentColor" strokeWidth="1.5" />
|
||||
</svg>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1,10 +1,11 @@
|
||||
import type {IconProps} from "./type.ts";
|
||||
import type { IconProps } from "./type.ts";
|
||||
|
||||
export function IconCircleQuestionmark({size = 24, className}: IconProps) {
|
||||
return <svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M2 12C2 6.47716 6.47716 2 12 2C17.5229 2 22 6.47716 22 12C22 17.5229 17.5229 22 12 22C6.47716 22 2 17.5229 2 12ZM12 4C7.58172 4 4 7.58172 4 12C4 16.4183 7.58172 20 12 20C16.4183 20 20 16.4183 20 12C20 7.58172 16.4183 4 12 4Z" fill="currentColor"/>
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M12 15C12.5523 15 13 15.4477 13 16V16.01C13 16.5623 12.5523 17.01 12 17.01C11.4477 17.01 11 16.5623 11 16.01V16C11 15.4477 11.4477 15 12 15Z" fill="currentColor"/>
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M9.40199 8.49928C9.91918 7.6052 10.8883 7 12 7C13.6569 7 15 8.34315 15 10C15 10.6733 14.8194 11.2219 14.4801 11.663C14.1667 12.0704 13.7667 12.3141 13.519 12.4645C13.2192 12.6466 13.121 12.7083 13.0539 12.7824L13.0508 12.7857C13.0347 12.8026 13 12.8389 13 13C13 13.5523 12.5523 14 12 14C11.4477 14 11 13.5523 11 13C11 12.3526 11.2103 11.839 11.5711 11.4403C11.8491 11.1332 12.2036 10.9211 12.4172 10.7933C12.4402 10.7796 12.4615 10.7668 12.481 10.755C12.7333 10.6018 12.8333 10.5236 12.8949 10.4435C12.9306 10.3971 13 10.2926 13 10C13 9.44771 12.5523 9 12 9C11.6311 9 11.3076 9.1992 11.1332 9.50072C10.8567 9.97878 10.2449 10.1421 9.76688 9.86561C9.28882 9.58907 9.12545 8.97735 9.40199 8.49928Z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
}
|
||||
export function IconCircleQuestionmark({ size = 24, className }: IconProps) {
|
||||
return (
|
||||
<svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M2 12C2 6.47716 6.47716 2 12 2C17.5229 2 22 6.47716 22 12C22 17.5229 17.5229 22 12 22C6.47716 22 2 17.5229 2 12ZM12 4C7.58172 4 4 7.58172 4 12C4 16.4183 7.58172 20 12 20C16.4183 20 20 16.4183 20 12C20 7.58172 16.4183 4 12 4Z" fill="currentColor" />
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M12 15C12.5523 15 13 15.4477 13 16V16.01C13 16.5623 12.5523 17.01 12 17.01C11.4477 17.01 11 16.5623 11 16.01V16C11 15.4477 11.4477 15 12 15Z" fill="currentColor" />
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M9.40199 8.49928C9.91918 7.6052 10.8883 7 12 7C13.6569 7 15 8.34315 15 10C15 10.6733 14.8194 11.2219 14.4801 11.663C14.1667 12.0704 13.7667 12.3141 13.519 12.4645C13.2192 12.6466 13.121 12.7083 13.0539 12.7824L13.0508 12.7857C13.0347 12.8026 13 12.8389 13 13C13 13.5523 12.5523 14 12 14C11.4477 14 11 13.5523 11 13C11 12.3526 11.2103 11.839 11.5711 11.4403C11.8491 11.1332 12.2036 10.9211 12.4172 10.7933C12.4402 10.7796 12.4615 10.7668 12.481 10.755C12.7333 10.6018 12.8333 10.5236 12.8949 10.4435C12.9306 10.3971 13 10.2926 13 10C13 9.44771 12.5523 9 12 9C11.6311 9 11.3076 9.1992 11.1332 9.50072C10.8567 9.97878 10.2449 10.1421 9.76688 9.86561C9.28882 9.58907 9.12545 8.97735 9.40199 8.49928Z" fill="currentColor" />
|
||||
</svg>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1,8 +1,9 @@
|
||||
import type {IconProps} from "./type.ts";
|
||||
import type { IconProps } from "./type.ts";
|
||||
|
||||
export function IconCircleQuestionmark1({size = 24, className}: IconProps) {
|
||||
return <svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M2 12C2 6.47715 6.47715 2 12 2C17.5229 2 22 6.47716 22 12C22 17.5229 17.5229 22 12 22C6.47716 22 2 17.5229 2 12ZM12 4.05607C7.61269 4.05607 4.05607 7.61269 4.05607 12C4.05607 16.3873 7.61269 19.9439 12 19.9439C16.3873 19.9439 19.9439 16.3873 19.9439 12C19.9439 7.61269 16.3873 4.05607 12 4.05607ZM9.3831 8.49459C9.90401 7.59407 10.8802 6.98443 12 6.98443C13.6689 6.98443 15.0218 8.33735 15.0218 10.0062C15.0218 10.6834 14.84 11.2372 14.4971 11.683C14.1807 12.0942 13.7773 12.3398 13.5304 12.4897C13.23 12.6721 13.1368 12.7312 13.0737 12.8009L13.0712 12.8035C13.0594 12.8149 13.028 12.8454 13.028 12.9969C13.028 13.5647 12.5677 14.0249 12 14.0249C11.4322 14.0249 10.9719 13.5647 10.9719 12.9969C10.9719 12.3441 11.1842 11.8245 11.5493 11.4212C11.8298 11.1112 12.1874 10.8974 12.3999 10.7703C12.4228 10.7566 12.444 10.744 12.4633 10.7323C12.7149 10.5795 12.8099 10.5042 12.8674 10.4294C12.8983 10.3893 12.9657 10.292 12.9657 10.0062C12.9657 9.47286 12.5334 9.0405 12 9.0405C11.6438 9.0405 11.3314 9.23276 11.1629 9.52411C10.8786 10.0156 10.2497 10.1835 9.75822 9.89923C9.26675 9.61494 9.0988 8.98606 9.3831 8.49459ZM12 14.9595C12.5678 14.9595 13.028 15.4198 13.028 15.9875V15.9961C13.028 16.5639 12.5678 17.0241 12 17.0241C11.4322 17.0241 10.972 16.5639 10.972 15.9961V15.9875C10.972 15.4198 11.4322 14.9595 12 14.9595Z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
}
|
||||
export function IconCircleQuestionmark1({ size = 24, className }: IconProps) {
|
||||
return (
|
||||
<svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M2 12C2 6.47715 6.47715 2 12 2C17.5229 2 22 6.47716 22 12C22 17.5229 17.5229 22 12 22C6.47716 22 2 17.5229 2 12ZM12 4.05607C7.61269 4.05607 4.05607 7.61269 4.05607 12C4.05607 16.3873 7.61269 19.9439 12 19.9439C16.3873 19.9439 19.9439 16.3873 19.9439 12C19.9439 7.61269 16.3873 4.05607 12 4.05607ZM9.3831 8.49459C9.90401 7.59407 10.8802 6.98443 12 6.98443C13.6689 6.98443 15.0218 8.33735 15.0218 10.0062C15.0218 10.6834 14.84 11.2372 14.4971 11.683C14.1807 12.0942 13.7773 12.3398 13.5304 12.4897C13.23 12.6721 13.1368 12.7312 13.0737 12.8009L13.0712 12.8035C13.0594 12.8149 13.028 12.8454 13.028 12.9969C13.028 13.5647 12.5677 14.0249 12 14.0249C11.4322 14.0249 10.9719 13.5647 10.9719 12.9969C10.9719 12.3441 11.1842 11.8245 11.5493 11.4212C11.8298 11.1112 12.1874 10.8974 12.3999 10.7703C12.4228 10.7566 12.444 10.744 12.4633 10.7323C12.7149 10.5795 12.8099 10.5042 12.8674 10.4294C12.8983 10.3893 12.9657 10.292 12.9657 10.0062C12.9657 9.47286 12.5334 9.0405 12 9.0405C11.6438 9.0405 11.3314 9.23276 11.1629 9.52411C10.8786 10.0156 10.2497 10.1835 9.75822 9.89923C9.26675 9.61494 9.0988 8.98606 9.3831 8.49459ZM12 14.9595C12.5678 14.9595 13.028 15.4198 13.028 15.9875V15.9961C13.028 16.5639 12.5678 17.0241 12 17.0241C11.4322 17.0241 10.972 16.5639 10.972 15.9961V15.9875C10.972 15.4198 11.4322 14.9595 12 14.9595Z" fill="currentColor" />
|
||||
</svg>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1,8 +1,9 @@
|
||||
import type {IconProps} from "./type.ts";
|
||||
import type { IconProps } from "./type.ts";
|
||||
|
||||
export function IconCircleQuestionmarkSolid({size = 24, className}: IconProps) {
|
||||
return <svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2ZM12 9C11.6227 9 11.2926 9.2086 11.1215 9.52152C10.8565 10.0061 10.2488 10.184 9.76427 9.91899C9.27973 9.65396 9.10178 9.04632 9.3668 8.56178C9.87463 7.63331 10.8626 7 12 7C13.5148 7 14.5669 8.00643 14.8664 9.189C15.1676 10.3779 14.7101 11.763 13.3416 12.4472C13.1323 12.5519 13 12.7659 13 13C13 13.5523 12.5523 14 12 14C11.4477 14 11 13.5523 11 13C11 12.0084 11.5603 11.1018 12.4472 10.6584C12.902 10.431 13.0188 10.0397 12.9277 9.6801C12.835 9.31417 12.5283 9 12 9ZM12 17C12.5523 17 13 16.5523 13 16C13 15.4477 12.5523 15 12 15C11.4477 15 11 15.4477 11 16C11 16.5523 11.4477 17 12 17Z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
}
|
||||
export function IconCircleQuestionmarkSolid({ size = 24, className }: IconProps) {
|
||||
return (
|
||||
<svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2ZM12 9C11.6227 9 11.2926 9.2086 11.1215 9.52152C10.8565 10.0061 10.2488 10.184 9.76427 9.91899C9.27973 9.65396 9.10178 9.04632 9.3668 8.56178C9.87463 7.63331 10.8626 7 12 7C13.5148 7 14.5669 8.00643 14.8664 9.189C15.1676 10.3779 14.7101 11.763 13.3416 12.4472C13.1323 12.5519 13 12.7659 13 13C13 13.5523 12.5523 14 12 14C11.4477 14 11 13.5523 11 13C11 12.0084 11.5603 11.1018 12.4472 10.6584C12.902 10.431 13.0188 10.0397 12.9277 9.6801C12.835 9.31417 12.5283 9 12 9ZM12 17C12.5523 17 13 16.5523 13 16C13 15.4477 12.5523 15 12 15C11.4477 15 11 15.4477 11 16C11 16.5523 11.4477 17 12 17Z" fill="currentColor" />
|
||||
</svg>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1,8 +1,9 @@
|
||||
import type {IconProps} from "./type.ts";
|
||||
import type { IconProps } from "./type.ts";
|
||||
|
||||
export function IconCircleX({size = 24, className}: IconProps) {
|
||||
return <svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12ZM9.70711 8.29289C9.31658 7.90237 8.68342 7.90237 8.29289 8.29289C7.90237 8.68342 7.90237 9.31658 8.29289 9.70711L10.5858 12L8.29289 14.2929C7.90237 14.6834 7.90237 15.3166 8.29289 15.7071C8.68342 16.0976 9.31658 16.0976 9.70711 15.7071L12 13.4142L14.2929 15.7071C14.6834 16.0976 15.3166 16.0976 15.7071 15.7071C16.0976 15.3166 16.0976 14.6834 15.7071 14.2929L13.4142 12L15.7071 9.70711C16.0976 9.31658 16.0976 8.68342 15.7071 8.29289C15.3166 7.90237 14.6834 7.90237 14.2929 8.29289L12 10.5858L9.70711 8.29289Z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
}
|
||||
export function IconCircleX({ size = 24, className }: IconProps) {
|
||||
return (
|
||||
<svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12ZM9.70711 8.29289C9.31658 7.90237 8.68342 7.90237 8.29289 8.29289C7.90237 8.68342 7.90237 9.31658 8.29289 9.70711L10.5858 12L8.29289 14.2929C7.90237 14.6834 7.90237 15.3166 8.29289 15.7071C8.68342 16.0976 9.31658 16.0976 9.70711 15.7071L12 13.4142L14.2929 15.7071C14.6834 16.0976 15.3166 16.0976 15.7071 15.7071C16.0976 15.3166 16.0976 14.6834 15.7071 14.2929L13.4142 12L15.7071 9.70711C16.0976 9.31658 16.0976 8.68342 15.7071 8.29289C15.3166 7.90237 14.6834 7.90237 14.2929 8.29289L12 10.5858L9.70711 8.29289Z" fill="currentColor" />
|
||||
</svg>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1,8 +1,9 @@
|
||||
import type {IconProps} from "./type.ts";
|
||||
import type { IconProps } from "./type.ts";
|
||||
|
||||
export function IconClock({size = 24, className}: IconProps) {
|
||||
return <svg width={size} height={size} viewBox="0 0 16 16" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M13.3335 8.00065C13.3335 5.05513 10.9457 2.66732 8.00016 2.66732C5.05465 2.66732 2.66683 5.05513 2.66683 8.00065C2.66683 10.9462 5.05464 13.334 8.00016 13.334C10.9457 13.334 13.3335 10.9462 13.3335 8.00065ZM7.3335 5.33398C7.3335 4.96579 7.63197 4.66732 8.00016 4.66732C8.36835 4.66732 8.66683 4.96579 8.66683 5.33398V7.72461L10.1382 9.19596L10.1838 9.24675C10.3973 9.50859 10.3823 9.8946 10.1382 10.1387C9.89411 10.3827 9.50811 10.3978 9.24626 10.1842L9.19548 10.1387L7.52881 8.47201C7.40378 8.34698 7.3335 8.17746 7.3335 8.00065V5.33398ZM14.6668 8.00065C14.6668 11.6826 11.6821 14.6673 8.00016 14.6673C4.31827 14.6673 1.3335 11.6826 1.3335 8.00065C1.3335 4.31875 4.31827 1.33398 8.00016 1.33398C11.6821 1.33398 14.6668 4.31876 14.6668 8.00065Z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
}
|
||||
export function IconClock({ size = 24, className }: IconProps) {
|
||||
return (
|
||||
<svg width={size} height={size} viewBox="0 0 16 16" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M13.3335 8.00065C13.3335 5.05513 10.9457 2.66732 8.00016 2.66732C5.05465 2.66732 2.66683 5.05513 2.66683 8.00065C2.66683 10.9462 5.05464 13.334 8.00016 13.334C10.9457 13.334 13.3335 10.9462 13.3335 8.00065ZM7.3335 5.33398C7.3335 4.96579 7.63197 4.66732 8.00016 4.66732C8.36835 4.66732 8.66683 4.96579 8.66683 5.33398V7.72461L10.1382 9.19596L10.1838 9.24675C10.3973 9.50859 10.3823 9.8946 10.1382 10.1387C9.89411 10.3827 9.50811 10.3978 9.24626 10.1842L9.19548 10.1387L7.52881 8.47201C7.40378 8.34698 7.3335 8.17746 7.3335 8.00065V5.33398ZM14.6668 8.00065C14.6668 11.6826 11.6821 14.6673 8.00016 14.6673C4.31827 14.6673 1.3335 11.6826 1.3335 8.00065C1.3335 4.31875 4.31827 1.33398 8.00016 1.33398C11.6821 1.33398 14.6668 4.31876 14.6668 8.00065Z" fill="currentColor" />
|
||||
</svg>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1,8 +1,9 @@
|
||||
import type {IconProps} from "./type.ts";
|
||||
import type { IconProps } from "./type.ts";
|
||||
|
||||
export function IconCollapse({size = 24, className}: IconProps) {
|
||||
return <svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M8.33235 2.66667H5C2.97496 2.66667 1.33333 4.3083 1.33333 6.33334V17.6667C1.33333 19.6917 2.97496 21.3333 5 21.3333H19C21.025 21.3333 22.6667 19.6917 22.6667 17.6667V6.33334C22.6667 4.3083 21.025 2.66667 19 2.66667H8.33432C8.33399 2.66667 8.33267 2.66667 8.33235 2.66667C8.33267 2.66667 8.33202 2.66667 8.33235 2.66667ZM9.33333 19.3333V4.66667H19C19.9205 4.66667 20.6667 5.41286 20.6667 6.33334V17.6667C20.6667 18.5871 19.9205 19.3333 19 19.3333H9.33333ZM7.33333 19.3333H5C4.07953 19.3333 3.33333 18.5871 3.33333 17.6667V6.33334C3.33333 5.41286 4.07953 4.66667 5 4.66667H7.33333V19.3333ZM17.0404 7.95956C17.431 8.35009 17.431 8.98325 17.0404 9.37378L14.4142 12L17.0404 14.6262C17.431 15.0168 17.431 15.6499 17.0404 16.0404C16.6499 16.431 16.0168 16.431 15.6262 16.0404L12.2929 12.7071C11.9024 12.3166 11.9024 11.6834 12.2929 11.2929L15.6262 7.95956C16.0168 7.56904 16.6499 7.56904 17.0404 7.95956Z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
}
|
||||
export function IconCollapse({ size = 24, className }: IconProps) {
|
||||
return (
|
||||
<svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M8.33235 2.66667H5C2.97496 2.66667 1.33333 4.3083 1.33333 6.33334V17.6667C1.33333 19.6917 2.97496 21.3333 5 21.3333H19C21.025 21.3333 22.6667 19.6917 22.6667 17.6667V6.33334C22.6667 4.3083 21.025 2.66667 19 2.66667H8.33432C8.33399 2.66667 8.33267 2.66667 8.33235 2.66667C8.33267 2.66667 8.33202 2.66667 8.33235 2.66667ZM9.33333 19.3333V4.66667H19C19.9205 4.66667 20.6667 5.41286 20.6667 6.33334V17.6667C20.6667 18.5871 19.9205 19.3333 19 19.3333H9.33333ZM7.33333 19.3333H5C4.07953 19.3333 3.33333 18.5871 3.33333 17.6667V6.33334C3.33333 5.41286 4.07953 4.66667 5 4.66667H7.33333V19.3333ZM17.0404 7.95956C17.431 8.35009 17.431 8.98325 17.0404 9.37378L14.4142 12L17.0404 14.6262C17.431 15.0168 17.431 15.6499 17.0404 16.0404C16.6499 16.431 16.0168 16.431 15.6262 16.0404L12.2929 12.7071C11.9024 12.3166 11.9024 11.6834 12.2929 11.2929L15.6262 7.95956C16.0168 7.56904 16.6499 7.56904 17.0404 7.95956Z" fill="currentColor" />
|
||||
</svg>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1,8 +1,9 @@
|
||||
import type {IconProps} from "./type.ts";
|
||||
import type { IconProps } from "./type.ts";
|
||||
|
||||
export function IconCrossLargeX({size = 24, className}: IconProps) {
|
||||
return <svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M4.18934 4.18934C4.77513 3.60355 5.72487 3.60355 6.31066 4.18934L12 9.87868L17.6893 4.18934C18.2751 3.60355 19.2249 3.60355 19.8107 4.18934C20.3964 4.77513 20.3964 5.72487 19.8107 6.31066L14.1213 12L19.8107 17.6893C20.3964 18.2751 20.3964 19.2249 19.8107 19.8107C19.2249 20.3964 18.2751 20.3964 17.6893 19.8107L12 14.1213L6.31066 19.8107C5.72487 20.3964 4.77513 20.3964 4.18934 19.8107C3.60355 19.2249 3.60355 18.2751 4.18934 17.6893L9.87868 12L4.18934 6.31066C3.60355 5.72487 3.60355 4.77513 4.18934 4.18934Z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
}
|
||||
export function IconCrossLargeX({ size = 24, className }: IconProps) {
|
||||
return (
|
||||
<svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M4.18934 4.18934C4.77513 3.60355 5.72487 3.60355 6.31066 4.18934L12 9.87868L17.6893 4.18934C18.2751 3.60355 19.2249 3.60355 19.8107 4.18934C20.3964 4.77513 20.3964 5.72487 19.8107 6.31066L14.1213 12L19.8107 17.6893C20.3964 18.2751 20.3964 19.2249 19.8107 19.8107C19.2249 20.3964 18.2751 20.3964 17.6893 19.8107L12 14.1213L6.31066 19.8107C5.72487 20.3964 4.77513 20.3964 4.18934 19.8107C3.60355 19.2249 3.60355 18.2751 4.18934 17.6893L9.87868 12L4.18934 6.31066C3.60355 5.72487 3.60355 4.77513 4.18934 4.18934Z" fill="currentColor" />
|
||||
</svg>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1,10 +1,11 @@
|
||||
import type {IconProps} from "./type.ts";
|
||||
import type { IconProps } from "./type.ts";
|
||||
|
||||
export function IconDotGrid1x3Horizontal({size = 24, className}: IconProps) {
|
||||
return <svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M10 12C10 10.8954 10.8954 10 12 10C13.1046 10 14 10.8954 14 12C14 13.1046 13.1046 14 12 14C10.8954 14 10 13.1046 10 12Z" fill="currentColor"/>
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M18 12C18 10.8954 18.8954 10 20 10C21.1046 10 22 10.8954 22 12C22 13.1046 21.1046 14 20 14C18.8954 14 18 13.1046 18 12Z" fill="currentColor"/>
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M2 12C2 10.8954 2.89545 10 4 10C5.10455 10 6 10.8954 6 12C6 13.1046 5.10455 14 4 14C2.89545 14 2 13.1046 2 12Z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
}
|
||||
export function IconDotGrid1x3Horizontal({ size = 24, className }: IconProps) {
|
||||
return (
|
||||
<svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M10 12C10 10.8954 10.8954 10 12 10C13.1046 10 14 10.8954 14 12C14 13.1046 13.1046 14 12 14C10.8954 14 10 13.1046 10 12Z" fill="currentColor" />
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M18 12C18 10.8954 18.8954 10 20 10C21.1046 10 22 10.8954 22 12C22 13.1046 21.1046 14 20 14C18.8954 14 18 13.1046 18 12Z" fill="currentColor" />
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M2 12C2 10.8954 2.89545 10 4 10C5.10455 10 6 10.8954 6 12C6 13.1046 5.10455 14 4 14C2.89545 14 2 13.1046 2 12Z" fill="currentColor" />
|
||||
</svg>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1,10 +1,11 @@
|
||||
import type {IconProps} from "./type.ts";
|
||||
import type { IconProps } from "./type.ts";
|
||||
|
||||
export function IconExpand({size = 24, className}: IconProps) {
|
||||
return <svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M15.6667 2.66666C16.219 2.66666 16.6667 3.11438 16.6667 3.66666V20.3333C16.6667 20.8856 16.219 21.3333 15.6667 21.3333C15.1144 21.3333 14.6667 20.8856 14.6667 20.3333V3.66666C14.6667 3.11438 15.1144 2.66666 15.6667 2.66666Z" fill="currentColor"/>
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M6.95956 7.95956C7.35009 7.56903 7.98325 7.56903 8.37378 7.95956L11.7071 11.2929C12.0976 11.6834 12.0976 12.3166 11.7071 12.7071L8.37378 16.0404C7.98325 16.431 7.35009 16.431 6.95956 16.0404C6.56904 15.6499 6.56904 15.0167 6.95956 14.6262L9.58579 12L6.95956 9.37377C6.56904 8.98325 6.56904 8.35008 6.95956 7.95956Z" fill="currentColor"/>
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M5 4.66666C4.07953 4.66666 3.33334 5.41286 3.33334 6.33333V17.6667C3.33334 18.5871 4.07953 19.3333 5 19.3333H19C19.9205 19.3333 20.6667 18.5871 20.6667 17.6667V6.33333C20.6667 5.41286 19.9205 4.66666 19 4.66666H5ZM1.33334 6.33333C1.33334 4.30829 2.97496 2.66666 5 2.66666H19C21.025 2.66666 22.6667 4.30829 22.6667 6.33333V17.6667C22.6667 19.6917 21.025 21.3333 19 21.3333H5C2.97496 21.3333 1.33334 19.6917 1.33334 17.6667V6.33333Z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
}
|
||||
export function IconExpand({ size = 24, className }: IconProps) {
|
||||
return (
|
||||
<svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M15.6667 2.66666C16.219 2.66666 16.6667 3.11438 16.6667 3.66666V20.3333C16.6667 20.8856 16.219 21.3333 15.6667 21.3333C15.1144 21.3333 14.6667 20.8856 14.6667 20.3333V3.66666C14.6667 3.11438 15.1144 2.66666 15.6667 2.66666Z" fill="currentColor" />
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M6.95956 7.95956C7.35009 7.56903 7.98325 7.56903 8.37378 7.95956L11.7071 11.2929C12.0976 11.6834 12.0976 12.3166 11.7071 12.7071L8.37378 16.0404C7.98325 16.431 7.35009 16.431 6.95956 16.0404C6.56904 15.6499 6.56904 15.0167 6.95956 14.6262L9.58579 12L6.95956 9.37377C6.56904 8.98325 6.56904 8.35008 6.95956 7.95956Z" fill="currentColor" />
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M5 4.66666C4.07953 4.66666 3.33334 5.41286 3.33334 6.33333V17.6667C3.33334 18.5871 4.07953 19.3333 5 19.3333H19C19.9205 19.3333 20.6667 18.5871 20.6667 17.6667V6.33333C20.6667 5.41286 19.9205 4.66666 19 4.66666H5ZM1.33334 6.33333C1.33334 4.30829 2.97496 2.66666 5 2.66666H19C21.025 2.66666 22.6667 4.30829 22.6667 6.33333V17.6667C22.6667 19.6917 21.025 21.3333 19 21.3333H5C2.97496 21.3333 1.33334 19.6917 1.33334 17.6667V6.33333Z" fill="currentColor" />
|
||||
</svg>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1,10 +1,11 @@
|
||||
import type {IconProps} from "./type.ts";
|
||||
import type { IconProps } from "./type.ts";
|
||||
|
||||
export function IconFilter({size = 24, className}: IconProps) {
|
||||
return <svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M6 12C6 11.3373 6.53726 10.8 7.2 10.8H16.8C17.4627 10.8 18 11.3373 18 12C18 12.6627 17.4627 13.2 16.8 13.2H7.2C6.53726 13.2 6 12.6627 6 12Z" fill="currentColor"/>
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M2.4 6C2.4 5.33726 2.93726 4.8 3.6 4.8H20.4C21.0627 4.8 21.6 5.33726 21.6 6C21.6 6.66274 21.0627 7.2 20.4 7.2H3.6C2.93726 7.2 2.4 6.66274 2.4 6Z" fill="currentColor"/>
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M9.6 18C9.6 17.3373 10.1373 16.8 10.8 16.8H13.2C13.8627 16.8 14.4 17.3373 14.4 18C14.4 18.6627 13.8627 19.2 13.2 19.2H10.8C10.1373 19.2 9.6 18.6627 9.6 18Z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
}
|
||||
export function IconFilter({ size = 24, className }: IconProps) {
|
||||
return (
|
||||
<svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M6 12C6 11.3373 6.53726 10.8 7.2 10.8H16.8C17.4627 10.8 18 11.3373 18 12C18 12.6627 17.4627 13.2 16.8 13.2H7.2C6.53726 13.2 6 12.6627 6 12Z" fill="currentColor" />
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M2.4 6C2.4 5.33726 2.93726 4.8 3.6 4.8H20.4C21.0627 4.8 21.6 5.33726 21.6 6C21.6 6.66274 21.0627 7.2 20.4 7.2H3.6C2.93726 7.2 2.4 6.66274 2.4 6Z" fill="currentColor" />
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M9.6 18C9.6 17.3373 10.1373 16.8 10.8 16.8H13.2C13.8627 16.8 14.4 17.3373 14.4 18C14.4 18.6627 13.8627 19.2 13.2 19.2H10.8C10.1373 19.2 9.6 18.6627 9.6 18Z" fill="currentColor" />
|
||||
</svg>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1,8 +1,9 @@
|
||||
import type {IconProps} from "./type.ts";
|
||||
import type { IconProps } from "./type.ts";
|
||||
|
||||
export function IconFire3({size = 24, className}: IconProps) {
|
||||
return <svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M11.0878 1.55112C11.4034 1.44613 11.7506 1.50496 12.014 1.70806C13.6854 2.99672 14.8321 4.40619 15.4545 6.04124C15.7381 6.78655 15.9052 7.55854 15.9713 8.36097C16.3539 7.91008 16.673 7.52007 16.8132 7.31773C16.9808 7.07589 17.2464 6.92012 17.5393 6.8919C17.8321 6.86367 18.1226 6.96585 18.3332 7.17122C19.6745 8.47874 20.2171 10.1387 20.4148 11.7441C21.0547 16.8981 18.0099 20.4744 14.2968 21.6103C10.5981 22.7419 6.17025 21.456 4.19221 16.9919L4.19175 16.9909C3.00508 14.3045 3.39442 11.6329 4.97916 9.27395C5.51315 8.47963 6.16338 7.77844 6.79319 7.15968L6.79391 7.15898C6.99563 6.9612 7.19225 6.77178 7.38317 6.58786C8.80007 5.22286 9.90252 4.16081 10.4401 2.23158C10.5294 1.91116 10.7722 1.6561 11.0878 1.55112ZM14.8195 11.196L15.5639 11.8638C15.2662 12.1956 14.7849 12.2903 14.3837 12.096C13.9825 11.9018 13.7583 11.4654 13.834 11.0261C14.125 9.33793 14.0444 7.95904 13.5853 6.75269C13.2487 5.86833 12.6887 5.02445 11.8369 4.19265C11.0506 5.85099 9.87183 6.97825 8.75558 8.0457C8.566 8.22698 8.37824 8.40654 8.1945 8.58669C7.60516 9.1657 7.06396 9.75763 6.63932 10.3893M14.8195 11.196L15.5639 11.8638L15.6652 11.7505C15.7296 11.6784 15.822 11.5747 15.9345 11.4479C16.1594 11.1946 16.465 10.8486 16.7872 10.4787C17.063 10.1621 17.363 9.81441 17.6377 9.48778C18.0752 10.2119 18.3151 11.0574 18.4298 11.9885L18.4299 11.9896C18.9411 16.1033 16.5721 18.8228 13.7117 19.6978C10.8368 20.5774 7.53103 19.5895 6.02096 16.1822C5.14159 14.191 5.39469 12.2421 6.63932 10.3893" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
}
|
||||
export function IconFire3({ size = 24, className }: IconProps) {
|
||||
return (
|
||||
<svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M11.0878 1.55112C11.4034 1.44613 11.7506 1.50496 12.014 1.70806C13.6854 2.99672 14.8321 4.40619 15.4545 6.04124C15.7381 6.78655 15.9052 7.55854 15.9713 8.36097C16.3539 7.91008 16.673 7.52007 16.8132 7.31773C16.9808 7.07589 17.2464 6.92012 17.5393 6.8919C17.8321 6.86367 18.1226 6.96585 18.3332 7.17122C19.6745 8.47874 20.2171 10.1387 20.4148 11.7441C21.0547 16.8981 18.0099 20.4744 14.2968 21.6103C10.5981 22.7419 6.17025 21.456 4.19221 16.9919L4.19175 16.9909C3.00508 14.3045 3.39442 11.6329 4.97916 9.27395C5.51315 8.47963 6.16338 7.77844 6.79319 7.15968L6.79391 7.15898C6.99563 6.9612 7.19225 6.77178 7.38317 6.58786C8.80007 5.22286 9.90252 4.16081 10.4401 2.23158C10.5294 1.91116 10.7722 1.6561 11.0878 1.55112ZM14.8195 11.196L15.5639 11.8638C15.2662 12.1956 14.7849 12.2903 14.3837 12.096C13.9825 11.9018 13.7583 11.4654 13.834 11.0261C14.125 9.33793 14.0444 7.95904 13.5853 6.75269C13.2487 5.86833 12.6887 5.02445 11.8369 4.19265C11.0506 5.85099 9.87183 6.97825 8.75558 8.0457C8.566 8.22698 8.37824 8.40654 8.1945 8.58669C7.60516 9.1657 7.06396 9.75763 6.63932 10.3893M14.8195 11.196L15.5639 11.8638L15.6652 11.7505C15.7296 11.6784 15.822 11.5747 15.9345 11.4479C16.1594 11.1946 16.465 10.8486 16.7872 10.4787C17.063 10.1621 17.363 9.81441 17.6377 9.48778C18.0752 10.2119 18.3151 11.0574 18.4298 11.9885L18.4299 11.9896C18.9411 16.1033 16.5721 18.8228 13.7117 19.6978C10.8368 20.5774 7.53103 19.5895 6.02096 16.1822C5.14159 14.191 5.39469 12.2421 6.63932 10.3893" fill="currentColor" />
|
||||
</svg>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1,8 +1,9 @@
|
||||
import type {IconProps} from "./type.ts";
|
||||
import type { IconProps } from "./type.ts";
|
||||
|
||||
export function IconFolder2({size = 24, className}: IconProps) {
|
||||
return <svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M6 5C4.89543 5 4 5.89543 4 7V9.53512C4.58835 9.19478 5.27143 9 6 9H18C18.7286 9 19.4117 9.19478 20 9.53511V9C20 7.89542 19.1046 7 18 7H13.2426C12.1818 7 11.1643 6.57858 10.4142 5.82842L10.1716 5.58578C9.79654 5.21075 9.28778 5 8.75736 5H6ZM20 13C20 11.8954 19.1046 11 18 11H6C4.89542 11 4 11.8954 4 13V16C4 17.1046 4.89542 18 6 18H18C19.1046 18 20 17.1046 20 16V13ZM2 16C2 18.2092 3.79088 20 6 20H18C20.2092 20 22 18.2092 22 16V9C22 6.79088 20.2092 5 18 5H13.2426C12.7122 5 12.2035 4.78928 11.8284 4.41422L11.5859 4.17163C10.8357 3.42147 9.81822 3 8.75736 3H6C3.79087 3 2 4.79087 2 7V16Z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
}
|
||||
export function IconFolder2({ size = 24, className }: IconProps) {
|
||||
return (
|
||||
<svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M6 5C4.89543 5 4 5.89543 4 7V9.53512C4.58835 9.19478 5.27143 9 6 9H18C18.7286 9 19.4117 9.19478 20 9.53511V9C20 7.89542 19.1046 7 18 7H13.2426C12.1818 7 11.1643 6.57858 10.4142 5.82842L10.1716 5.58578C9.79654 5.21075 9.28778 5 8.75736 5H6ZM20 13C20 11.8954 19.1046 11 18 11H6C4.89542 11 4 11.8954 4 13V16C4 17.1046 4.89542 18 6 18H18C19.1046 18 20 17.1046 20 16V13ZM2 16C2 18.2092 3.79088 20 6 20H18C20.2092 20 22 18.2092 22 16V9C22 6.79088 20.2092 5 18 5H13.2426C12.7122 5 12.2035 4.78928 11.8284 4.41422L11.5859 4.17163C10.8357 3.42147 9.81822 3 8.75736 3H6C3.79087 3 2 4.79087 2 7V16Z" fill="currentColor" />
|
||||
</svg>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1,8 +1,9 @@
|
||||
import type {IconProps} from "./type.ts";
|
||||
import type { IconProps } from "./type.ts";
|
||||
|
||||
export function IconFolderUpload({size = 24, className}: IconProps) {
|
||||
return <svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M2 7C2 4.79087 3.79087 3 6 3H8.39445C9.73185 3 10.9808 3.66839 11.7226 4.78118L12.2383 5.55468C12.4237 5.83282 12.736 6 13.0704 6H18C20.2092 6 22 7.79088 22 10V16C22 18.2092 20.2092 20 18 20H16C15.4477 20 15 19.5523 15 19C15 18.4477 15.4477 18 16 18H18C19.1046 18 20 17.1046 20 16V10C20 8.89542 19.1046 8 18 8H13.0704C12.0674 8 11.1307 7.49874 10.5743 6.66412L10.0586 5.89062C9.68763 5.33422 9.06316 5 8.39445 5H6C4.89543 5 4 5.89543 4 7V16C4 17.1046 4.89542 18 6 18H8C8.55228 18 9 18.4477 9 19C9 19.5523 8.55228 20 8 20H6C3.79088 20 2 18.2092 2 16V7ZM11.2929 12.2929C11.6834 11.9024 12.3166 11.9024 12.7071 12.2929L15.2071 14.7929C15.5976 15.1834 15.5976 15.8166 15.2071 16.2071C14.8166 16.5976 14.1834 16.5976 13.7929 16.2071L13 15.4142V19C13 19.5523 12.5523 20 12 20C11.4477 20 11 19.5523 11 19V15.4142L10.2071 16.2071C9.81658 16.5976 9.18342 16.5976 8.79289 16.2071C8.40237 15.8166 8.40237 15.1834 8.79289 14.7929L11.2929 12.2929Z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
}
|
||||
export function IconFolderUpload({ size = 24, className }: IconProps) {
|
||||
return (
|
||||
<svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M2 7C2 4.79087 3.79087 3 6 3H8.39445C9.73185 3 10.9808 3.66839 11.7226 4.78118L12.2383 5.55468C12.4237 5.83282 12.736 6 13.0704 6H18C20.2092 6 22 7.79088 22 10V16C22 18.2092 20.2092 20 18 20H16C15.4477 20 15 19.5523 15 19C15 18.4477 15.4477 18 16 18H18C19.1046 18 20 17.1046 20 16V10C20 8.89542 19.1046 8 18 8H13.0704C12.0674 8 11.1307 7.49874 10.5743 6.66412L10.0586 5.89062C9.68763 5.33422 9.06316 5 8.39445 5H6C4.89543 5 4 5.89543 4 7V16C4 17.1046 4.89542 18 6 18H8C8.55228 18 9 18.4477 9 19C9 19.5523 8.55228 20 8 20H6C3.79088 20 2 18.2092 2 16V7ZM11.2929 12.2929C11.6834 11.9024 12.3166 11.9024 12.7071 12.2929L15.2071 14.7929C15.5976 15.1834 15.5976 15.8166 15.2071 16.2071C14.8166 16.5976 14.1834 16.5976 13.7929 16.2071L13 15.4142V19C13 19.5523 12.5523 20 12 20C11.4477 20 11 19.5523 11 19V15.4142L10.2071 16.2071C9.81658 16.5976 9.18342 16.5976 8.79289 16.2071C8.40237 15.8166 8.40237 15.1834 8.79289 14.7929L11.2929 12.2929Z" fill="currentColor" />
|
||||
</svg>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1,8 +1,9 @@
|
||||
import type {IconProps} from "./type.ts";
|
||||
import type { IconProps } from "./type.ts";
|
||||
|
||||
export function IconFrame({size = 24, className}: IconProps) {
|
||||
return <svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M12 13.4L13.4 14.8C13.5833 14.9833 13.8167 15.075 14.1 15.075C14.3833 15.075 14.6167 14.9833 14.8 14.8C14.9833 14.6167 15.075 14.3833 15.075 14.1C15.075 13.8167 14.9833 13.5833 14.8 13.4L13.4 12L14.8 10.6C14.9833 10.4167 15.075 10.1833 15.075 9.9C15.075 9.61667 14.9833 9.38334 14.8 9.2C14.6167 9.01667 14.3833 8.925 14.1 8.925C13.8167 8.925 13.5833 9.01667 13.4 9.2L12 10.6L10.6 9.2C10.4167 9.01667 10.1833 8.925 9.9 8.925C9.61667 8.925 9.38333 9.01667 9.2 9.2C9.01667 9.38334 8.925 9.61667 8.925 9.9C8.925 10.1833 9.01667 10.4167 9.2 10.6L10.6 12L9.2 13.4C9.01667 13.5833 8.925 13.8167 8.925 14.1C8.925 14.3833 9.01667 14.6167 9.2 14.8C9.38333 14.9833 9.61667 15.075 9.9 15.075C10.1833 15.075 10.4167 14.9833 10.6 14.8L12 13.4ZM12 21.9C11.8833 21.9 11.775 21.8917 11.675 21.875C11.575 21.8583 11.475 21.8333 11.375 21.8C9.125 21.05 7.33333 19.6625 6 17.6375C4.66667 15.6125 4 13.4333 4 11.1V6.375C4 5.95833 4.12083 5.58333 4.3625 5.25C4.60417 4.91667 4.91667 4.675 5.3 4.525L11.3 2.275C11.5333 2.19167 11.7667 2.15 12 2.15C12.2333 2.15 12.4667 2.19167 12.7 2.275L18.7 4.525C19.0833 4.675 19.3958 4.91667 19.6375 5.25C19.8792 5.58333 20 5.95833 20 6.375V11.1C20 13.4333 19.3333 15.6125 18 17.6375C16.6667 19.6625 14.875 21.05 12.625 21.8C12.525 21.8333 12.425 21.8583 12.325 21.875C12.225 21.8917 12.1167 21.9 12 21.9ZM12 19.9C13.7333 19.35 15.1667 18.25 16.3 16.6C17.4333 14.95 18 13.1167 18 11.1V6.375L12 4.125L6 6.375V11.1C6 13.1167 6.56667 14.95 7.7 16.6C8.83333 18.25 10.2667 19.35 12 19.9Z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
}
|
||||
export function IconFrame({ size = 24, className }: IconProps) {
|
||||
return (
|
||||
<svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M12 13.4L13.4 14.8C13.5833 14.9833 13.8167 15.075 14.1 15.075C14.3833 15.075 14.6167 14.9833 14.8 14.8C14.9833 14.6167 15.075 14.3833 15.075 14.1C15.075 13.8167 14.9833 13.5833 14.8 13.4L13.4 12L14.8 10.6C14.9833 10.4167 15.075 10.1833 15.075 9.9C15.075 9.61667 14.9833 9.38334 14.8 9.2C14.6167 9.01667 14.3833 8.925 14.1 8.925C13.8167 8.925 13.5833 9.01667 13.4 9.2L12 10.6L10.6 9.2C10.4167 9.01667 10.1833 8.925 9.9 8.925C9.61667 8.925 9.38333 9.01667 9.2 9.2C9.01667 9.38334 8.925 9.61667 8.925 9.9C8.925 10.1833 9.01667 10.4167 9.2 10.6L10.6 12L9.2 13.4C9.01667 13.5833 8.925 13.8167 8.925 14.1C8.925 14.3833 9.01667 14.6167 9.2 14.8C9.38333 14.9833 9.61667 15.075 9.9 15.075C10.1833 15.075 10.4167 14.9833 10.6 14.8L12 13.4ZM12 21.9C11.8833 21.9 11.775 21.8917 11.675 21.875C11.575 21.8583 11.475 21.8333 11.375 21.8C9.125 21.05 7.33333 19.6625 6 17.6375C4.66667 15.6125 4 13.4333 4 11.1V6.375C4 5.95833 4.12083 5.58333 4.3625 5.25C4.60417 4.91667 4.91667 4.675 5.3 4.525L11.3 2.275C11.5333 2.19167 11.7667 2.15 12 2.15C12.2333 2.15 12.4667 2.19167 12.7 2.275L18.7 4.525C19.0833 4.675 19.3958 4.91667 19.6375 5.25C19.8792 5.58333 20 5.95833 20 6.375V11.1C20 13.4333 19.3333 15.6125 18 17.6375C16.6667 19.6625 14.875 21.05 12.625 21.8C12.525 21.8333 12.425 21.8583 12.325 21.875C12.225 21.8917 12.1167 21.9 12 21.9ZM12 19.9C13.7333 19.35 15.1667 18.25 16.3 16.6C17.4333 14.95 18 13.1167 18 11.1V6.375L12 4.125L6 6.375V11.1C6 13.1167 6.56667 14.95 7.7 16.6C8.83333 18.25 10.2667 19.35 12 19.9Z" fill="currentColor" />
|
||||
</svg>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1,8 +1,9 @@
|
||||
import type {IconProps} from "./type.ts";
|
||||
import type { IconProps } from "./type.ts";
|
||||
|
||||
export function IconFrame1({size = 24, className}: IconProps) {
|
||||
return <svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M12 17C12.2833 17 12.5208 16.9042 12.7125 16.7125C12.9042 16.5208 13 16.2833 13 16V12C13 11.7167 12.9042 11.4792 12.7125 11.2875C12.5208 11.0958 12.2833 11 12 11C11.7167 11 11.4792 11.0958 11.2875 11.2875C11.0958 11.4792 11 11.7167 11 12V16C11 16.2833 11.0958 16.5208 11.2875 16.7125C11.4792 16.9042 11.7167 17 12 17ZM12 9C12.2833 9 12.5208 8.90417 12.7125 8.7125C12.9042 8.52083 13 8.28333 13 8C13 7.71667 12.9042 7.47917 12.7125 7.2875C12.5208 7.09583 12.2833 7 12 7C11.7167 7 11.4792 7.09583 11.2875 7.2875C11.0958 7.47917 11 7.71667 11 8C11 8.28333 11.0958 8.52083 11.2875 8.7125C11.4792 8.90417 11.7167 9 12 9ZM12 21.9C11.8833 21.9 11.775 21.8917 11.675 21.875C11.575 21.8583 11.475 21.8333 11.375 21.8C9.125 21.05 7.33333 19.6625 6 17.6375C4.66667 15.6125 4 13.4333 4 11.1V6.375C4 5.95833 4.12083 5.58333 4.3625 5.25C4.60417 4.91667 4.91667 4.675 5.3 4.525L11.3 2.275C11.5333 2.19167 11.7667 2.15 12 2.15C12.2333 2.15 12.4667 2.19167 12.7 2.275L18.7 4.525C19.0833 4.675 19.3958 4.91667 19.6375 5.25C19.8792 5.58333 20 5.95833 20 6.375V11.1C20 13.4333 19.3333 15.6125 18 17.6375C16.6667 19.6625 14.875 21.05 12.625 21.8C12.525 21.8333 12.425 21.8583 12.325 21.875C12.225 21.8917 12.1167 21.9 12 21.9ZM12 19.9C13.7333 19.35 15.1667 18.25 16.3 16.6C17.4333 14.95 18 13.1167 18 11.1V6.375L12 4.125L6 6.375V11.1C6 13.1167 6.56667 14.95 7.7 16.6C8.83333 18.25 10.2667 19.35 12 19.9Z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
}
|
||||
export function IconFrame1({ size = 24, className }: IconProps) {
|
||||
return (
|
||||
<svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M12 17C12.2833 17 12.5208 16.9042 12.7125 16.7125C12.9042 16.5208 13 16.2833 13 16V12C13 11.7167 12.9042 11.4792 12.7125 11.2875C12.5208 11.0958 12.2833 11 12 11C11.7167 11 11.4792 11.0958 11.2875 11.2875C11.0958 11.4792 11 11.7167 11 12V16C11 16.2833 11.0958 16.5208 11.2875 16.7125C11.4792 16.9042 11.7167 17 12 17ZM12 9C12.2833 9 12.5208 8.90417 12.7125 8.7125C12.9042 8.52083 13 8.28333 13 8C13 7.71667 12.9042 7.47917 12.7125 7.2875C12.5208 7.09583 12.2833 7 12 7C11.7167 7 11.4792 7.09583 11.2875 7.2875C11.0958 7.47917 11 7.71667 11 8C11 8.28333 11.0958 8.52083 11.2875 8.7125C11.4792 8.90417 11.7167 9 12 9ZM12 21.9C11.8833 21.9 11.775 21.8917 11.675 21.875C11.575 21.8583 11.475 21.8333 11.375 21.8C9.125 21.05 7.33333 19.6625 6 17.6375C4.66667 15.6125 4 13.4333 4 11.1V6.375C4 5.95833 4.12083 5.58333 4.3625 5.25C4.60417 4.91667 4.91667 4.675 5.3 4.525L11.3 2.275C11.5333 2.19167 11.7667 2.15 12 2.15C12.2333 2.15 12.4667 2.19167 12.7 2.275L18.7 4.525C19.0833 4.675 19.3958 4.91667 19.6375 5.25C19.8792 5.58333 20 5.95833 20 6.375V11.1C20 13.4333 19.3333 15.6125 18 17.6375C16.6667 19.6625 14.875 21.05 12.625 21.8C12.525 21.8333 12.425 21.8583 12.325 21.875C12.225 21.8917 12.1167 21.9 12 21.9ZM12 19.9C13.7333 19.35 15.1667 18.25 16.3 16.6C17.4333 14.95 18 13.1167 18 11.1V6.375L12 4.125L6 6.375V11.1C6 13.1167 6.56667 14.95 7.7 16.6C8.83333 18.25 10.2667 19.35 12 19.9Z" fill="currentColor" />
|
||||
</svg>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1,8 +1,9 @@
|
||||
import type {IconProps} from "./type.ts";
|
||||
import type { IconProps } from "./type.ts";
|
||||
|
||||
export function IconFrame2({size = 24, className}: IconProps) {
|
||||
return <svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M10.95 12.7L9.55 11.3C9.35 11.1 9.11667 11 8.85 11C8.58333 11 8.35 11.1 8.15 11.3C7.95 11.5 7.85 11.7375 7.85 12.0125C7.85 12.2875 7.95 12.525 8.15 12.725L10.25 14.85C10.45 15.05 10.6833 15.15 10.95 15.15C11.2167 15.15 11.45 15.05 11.65 14.85L15.9 10.6C16.1 10.4 16.2 10.1625 16.2 9.8875C16.2 9.6125 16.1 9.375 15.9 9.175C15.7 8.975 15.4625 8.875 15.1875 8.875C14.9125 8.875 14.675 8.975 14.475 9.175L10.95 12.7ZM12 21.9C11.8833 21.9 11.775 21.8917 11.675 21.875C11.575 21.8583 11.475 21.8333 11.375 21.8C9.125 21.05 7.33333 19.6625 6 17.6375C4.66667 15.6125 4 13.4333 4 11.1V6.375C4 5.95833 4.12083 5.58333 4.3625 5.25C4.60417 4.91667 4.91667 4.675 5.3 4.525L11.3 2.275C11.5333 2.19167 11.7667 2.15 12 2.15C12.2333 2.15 12.4667 2.19167 12.7 2.275L18.7 4.525C19.0833 4.675 19.3958 4.91667 19.6375 5.25C19.8792 5.58333 20 5.95833 20 6.375V11.1C20 13.4333 19.3333 15.6125 18 17.6375C16.6667 19.6625 14.875 21.05 12.625 21.8C12.525 21.8333 12.425 21.8583 12.325 21.875C12.225 21.8917 12.1167 21.9 12 21.9ZM12 19.9C13.7333 19.35 15.1667 18.25 16.3 16.6C17.4333 14.95 18 13.1167 18 11.1V6.375L12 4.125L6 6.375V11.1C6 13.1167 6.56667 14.95 7.7 16.6C8.83333 18.25 10.2667 19.35 12 19.9Z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
}
|
||||
export function IconFrame2({ size = 24, className }: IconProps) {
|
||||
return (
|
||||
<svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M10.95 12.7L9.55 11.3C9.35 11.1 9.11667 11 8.85 11C8.58333 11 8.35 11.1 8.15 11.3C7.95 11.5 7.85 11.7375 7.85 12.0125C7.85 12.2875 7.95 12.525 8.15 12.725L10.25 14.85C10.45 15.05 10.6833 15.15 10.95 15.15C11.2167 15.15 11.45 15.05 11.65 14.85L15.9 10.6C16.1 10.4 16.2 10.1625 16.2 9.8875C16.2 9.6125 16.1 9.375 15.9 9.175C15.7 8.975 15.4625 8.875 15.1875 8.875C14.9125 8.875 14.675 8.975 14.475 9.175L10.95 12.7ZM12 21.9C11.8833 21.9 11.775 21.8917 11.675 21.875C11.575 21.8583 11.475 21.8333 11.375 21.8C9.125 21.05 7.33333 19.6625 6 17.6375C4.66667 15.6125 4 13.4333 4 11.1V6.375C4 5.95833 4.12083 5.58333 4.3625 5.25C4.60417 4.91667 4.91667 4.675 5.3 4.525L11.3 2.275C11.5333 2.19167 11.7667 2.15 12 2.15C12.2333 2.15 12.4667 2.19167 12.7 2.275L18.7 4.525C19.0833 4.675 19.3958 4.91667 19.6375 5.25C19.8792 5.58333 20 5.95833 20 6.375V11.1C20 13.4333 19.3333 15.6125 18 17.6375C16.6667 19.6625 14.875 21.05 12.625 21.8C12.525 21.8333 12.425 21.8583 12.325 21.875C12.225 21.8917 12.1167 21.9 12 21.9ZM12 19.9C13.7333 19.35 15.1667 18.25 16.3 16.6C17.4333 14.95 18 13.1167 18 11.1V6.375L12 4.125L6 6.375V11.1C6 13.1167 6.56667 14.95 7.7 16.6C8.83333 18.25 10.2667 19.35 12 19.9Z" fill="currentColor" />
|
||||
</svg>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1,8 +1,9 @@
|
||||
import type {IconProps} from "./type.ts";
|
||||
import type { IconProps } from "./type.ts";
|
||||
|
||||
export function IconGroup1({size = 24, className}: IconProps) {
|
||||
return <svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M9.00046 4C7.61975 4 6.50046 5.11928 6.50046 6.5C6.50046 7.88072 7.61975 9 9.00046 9C10.3812 9 11.5005 7.88071 11.5005 6.5C11.5005 5.11929 10.3812 4 9.00046 4ZM4.50046 6.5C4.50046 4.01472 6.51518 2 9.00046 2C11.4858 2 13.5005 4.01471 13.5005 6.5C13.5005 8.98529 11.4858 11 9.00046 11C6.51518 11 4.50046 8.98528 4.50046 6.5ZM14.0005 3C14.0005 2.44772 14.4482 2 15.0005 2C17.4858 2 19.5005 4.01471 19.5005 6.5C19.5005 8.98529 17.4858 11 15.0005 11C14.4482 11 14.0005 10.5523 14.0005 10C14.0005 9.44772 14.4482 9 15.0005 9C16.3812 9 17.5005 7.88071 17.5005 6.5C17.5005 5.11929 16.3812 4 15.0005 4C14.4482 4 14.0005 3.55228 14.0005 3ZM9.00046 14C6.09298 14 3.66519 15.5126 2.59775 17.5741L1.70973 17.1143L2.59775 17.5741C2.42563 17.9065 2.48005 18.193 2.70729 18.458C2.96422 18.7577 3.44188 19 4.00046 19H14.0005C14.559 19 15.0367 18.7577 15.2936 18.458C15.5209 18.193 15.5753 17.9065 15.4032 17.5741C14.3357 15.5126 11.9079 14 9.00046 14ZM0.821715 16.6545C2.26701 13.8632 5.42304 12 9.00046 12C12.5779 12 15.7339 13.8632 17.1792 16.6545L17.1792 16.6545C17.7689 17.7934 17.5064 18.9498 16.812 19.7597C16.1474 20.5351 15.0988 21 14.0005 21H4.00046C2.90218 21 1.85357 20.5351 1.18889 19.7597C0.494516 18.9498 0.232002 17.7934 0.821715 16.6545ZM17.0579 13.1749C17.2423 12.6543 17.8138 12.3818 18.3344 12.5662C20.6456 13.3848 22.5215 15.0451 23.4247 17.1766C23.8604 18.2049 23.593 19.216 22.9726 19.9208C22.3754 20.5993 21.4598 21 20.5005 21C19.9482 21 19.5005 20.5523 19.5005 20C19.5005 19.4477 19.9482 19 20.5005 19C20.9219 19 21.2774 18.8197 21.4714 18.5993C21.6421 18.4054 21.6861 18.1998 21.5832 17.9569L21.5831 17.9568C20.9235 16.3999 19.5112 15.1048 17.6666 14.4514C17.146 14.267 16.8735 13.6955 17.0579 13.1749Z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
}
|
||||
export function IconGroup1({ size = 24, className }: IconProps) {
|
||||
return (
|
||||
<svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M9.00046 4C7.61975 4 6.50046 5.11928 6.50046 6.5C6.50046 7.88072 7.61975 9 9.00046 9C10.3812 9 11.5005 7.88071 11.5005 6.5C11.5005 5.11929 10.3812 4 9.00046 4ZM4.50046 6.5C4.50046 4.01472 6.51518 2 9.00046 2C11.4858 2 13.5005 4.01471 13.5005 6.5C13.5005 8.98529 11.4858 11 9.00046 11C6.51518 11 4.50046 8.98528 4.50046 6.5ZM14.0005 3C14.0005 2.44772 14.4482 2 15.0005 2C17.4858 2 19.5005 4.01471 19.5005 6.5C19.5005 8.98529 17.4858 11 15.0005 11C14.4482 11 14.0005 10.5523 14.0005 10C14.0005 9.44772 14.4482 9 15.0005 9C16.3812 9 17.5005 7.88071 17.5005 6.5C17.5005 5.11929 16.3812 4 15.0005 4C14.4482 4 14.0005 3.55228 14.0005 3ZM9.00046 14C6.09298 14 3.66519 15.5126 2.59775 17.5741L1.70973 17.1143L2.59775 17.5741C2.42563 17.9065 2.48005 18.193 2.70729 18.458C2.96422 18.7577 3.44188 19 4.00046 19H14.0005C14.559 19 15.0367 18.7577 15.2936 18.458C15.5209 18.193 15.5753 17.9065 15.4032 17.5741C14.3357 15.5126 11.9079 14 9.00046 14ZM0.821715 16.6545C2.26701 13.8632 5.42304 12 9.00046 12C12.5779 12 15.7339 13.8632 17.1792 16.6545L17.1792 16.6545C17.7689 17.7934 17.5064 18.9498 16.812 19.7597C16.1474 20.5351 15.0988 21 14.0005 21H4.00046C2.90218 21 1.85357 20.5351 1.18889 19.7597C0.494516 18.9498 0.232002 17.7934 0.821715 16.6545ZM17.0579 13.1749C17.2423 12.6543 17.8138 12.3818 18.3344 12.5662C20.6456 13.3848 22.5215 15.0451 23.4247 17.1766C23.8604 18.2049 23.593 19.216 22.9726 19.9208C22.3754 20.5993 21.4598 21 20.5005 21C19.9482 21 19.5005 20.5523 19.5005 20C19.5005 19.4477 19.9482 19 20.5005 19C20.9219 19 21.2774 18.8197 21.4714 18.5993C21.6421 18.4054 21.6861 18.1998 21.5832 17.9569L21.5831 17.9568C20.9235 16.3999 19.5112 15.1048 17.6666 14.4514C17.146 14.267 16.8735 13.6955 17.0579 13.1749Z" fill="currentColor" />
|
||||
</svg>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1,11 +1,12 @@
|
||||
import type {IconProps} from "./type.ts";
|
||||
import type { IconProps } from "./type.ts";
|
||||
|
||||
export function IconGroup11({size = 24, className}: IconProps) {
|
||||
return <svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M13.501 6.5C13.501 4.01472 11.4863 2 9.00103 2C6.51575 2 4.50103 4.01472 4.50103 6.5C4.50103 8.98528 6.51575 11 9.00103 11C11.4863 11 13.501 8.98528 13.501 6.5Z" fill="currentColor"/>
|
||||
<path d="M17.501 6.5C17.501 5.11929 16.3817 4 15.001 4C14.4487 4 14.001 3.55228 14.001 3C14.001 2.44772 14.4487 2 15.001 2C17.4863 2 19.501 4.01472 19.501 6.5C19.501 8.98528 17.4863 11 15.001 11C14.4487 11 14.001 10.5523 14.001 10C14.001 9.44772 14.4487 9 15.001 9C16.3817 9 17.501 7.88071 17.501 6.5Z" fill="currentColor"/>
|
||||
<path d="M16.8126 19.7597C16.1479 20.5351 15.0993 21 14.001 21H4.001C2.90272 21 1.8541 20.5351 1.18942 19.7597C0.495057 18.9498 0.232544 17.7933 0.822256 16.6544C2.26755 13.8632 5.42359 12 9.001 12C12.5784 12 15.7345 13.8632 17.1797 16.6544C17.7695 17.7933 17.5069 18.9498 16.8126 19.7597Z" fill="currentColor"/>
|
||||
<path d="M18.3352 12.5662C17.8146 12.3818 17.2431 12.6544 17.0587 13.1749C16.8743 13.6955 17.1468 14.267 17.6674 14.4514C19.5121 15.1048 20.9243 16.3999 21.584 17.9569C21.6869 18.1998 21.6429 18.4054 21.4722 18.5994C21.2782 18.8197 20.9227 19 20.5013 19C19.949 19 19.5013 19.4477 19.5013 20C19.5013 20.5523 19.949 21 20.5013 21C21.4606 21 22.3761 20.5993 22.9734 19.9209C23.5938 19.216 23.8612 18.205 23.4255 17.1766C22.5224 15.0451 20.6464 13.3848 18.3352 12.5662Z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
}
|
||||
export function IconGroup11({ size = 24, className }: IconProps) {
|
||||
return (
|
||||
<svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M13.501 6.5C13.501 4.01472 11.4863 2 9.00103 2C6.51575 2 4.50103 4.01472 4.50103 6.5C4.50103 8.98528 6.51575 11 9.00103 11C11.4863 11 13.501 8.98528 13.501 6.5Z" fill="currentColor" />
|
||||
<path d="M17.501 6.5C17.501 5.11929 16.3817 4 15.001 4C14.4487 4 14.001 3.55228 14.001 3C14.001 2.44772 14.4487 2 15.001 2C17.4863 2 19.501 4.01472 19.501 6.5C19.501 8.98528 17.4863 11 15.001 11C14.4487 11 14.001 10.5523 14.001 10C14.001 9.44772 14.4487 9 15.001 9C16.3817 9 17.501 7.88071 17.501 6.5Z" fill="currentColor" />
|
||||
<path d="M16.8126 19.7597C16.1479 20.5351 15.0993 21 14.001 21H4.001C2.90272 21 1.8541 20.5351 1.18942 19.7597C0.495057 18.9498 0.232544 17.7933 0.822256 16.6544C2.26755 13.8632 5.42359 12 9.001 12C12.5784 12 15.7345 13.8632 17.1797 16.6544C17.7695 17.7933 17.5069 18.9498 16.8126 19.7597Z" fill="currentColor" />
|
||||
<path d="M18.3352 12.5662C17.8146 12.3818 17.2431 12.6544 17.0587 13.1749C16.8743 13.6955 17.1468 14.267 17.6674 14.4514C19.5121 15.1048 20.9243 16.3999 21.584 17.9569C21.6869 18.1998 21.6429 18.4054 21.4722 18.5994C21.2782 18.8197 20.9227 19 20.5013 19C19.949 19 19.5013 19.4477 19.5013 20C19.5013 20.5523 19.949 21 20.5013 21C21.4606 21 22.3761 20.5993 22.9734 19.9209C23.5938 19.216 23.8612 18.205 23.4255 17.1766C22.5224 15.0451 20.6464 13.3848 18.3352 12.5662Z" fill="currentColor" />
|
||||
</svg>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1,8 +1,9 @@
|
||||
import type {IconProps} from "./type.ts";
|
||||
import type { IconProps } from "./type.ts";
|
||||
|
||||
export function IconHome({size = 24, className}: IconProps) {
|
||||
return <svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M19 16.9998V10.3299C19 9.83575 18.8173 9.36167 18.4912 8.9969L18.3428 8.84749L13.3428 4.31624C12.6283 3.66912 11.563 3.62888 10.8047 4.19514L10.6572 4.31624L5.65723 8.84749C5.23888 9.22662 5 9.76534 5 10.3299V16.9998C5 18.1044 5.89542 18.9998 7 18.9998H9V15.9998C9.00009 14.343 10.3432 12.9998 12 12.9998C13.6568 12.9998 14.9999 14.343 15 15.9998V18.9998H17C18.1046 18.9998 19 18.1044 19 16.9998ZM21 16.9998C21 19.209 19.2092 20.9998 17 20.9998H15C13.8954 20.9998 13 20.1044 13 18.9998V15.9998C12.9999 15.4476 12.5523 14.9998 12 14.9998C11.4477 14.9998 11.0001 15.4476 11 15.9998V18.9998C11 20.1044 10.1046 20.9998 9 20.9998H7C4.79088 20.9998 3 19.209 3 16.9998V10.3299C3 9.20088 3.47698 8.12428 4.31348 7.36604L9.31348 2.83479L9.45898 2.70882C10.9826 1.45433 13.2098 1.49663 14.6865 2.83479L19.6865 7.36604L19.8389 7.51155C20.5807 8.25875 21 9.27132 21 10.3299V16.9998Z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
}
|
||||
export function IconHome({ size = 24, className }: IconProps) {
|
||||
return (
|
||||
<svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M19 16.9998V10.3299C19 9.83575 18.8173 9.36167 18.4912 8.9969L18.3428 8.84749L13.3428 4.31624C12.6283 3.66912 11.563 3.62888 10.8047 4.19514L10.6572 4.31624L5.65723 8.84749C5.23888 9.22662 5 9.76534 5 10.3299V16.9998C5 18.1044 5.89542 18.9998 7 18.9998H9V15.9998C9.00009 14.343 10.3432 12.9998 12 12.9998C13.6568 12.9998 14.9999 14.343 15 15.9998V18.9998H17C18.1046 18.9998 19 18.1044 19 16.9998ZM21 16.9998C21 19.209 19.2092 20.9998 17 20.9998H15C13.8954 20.9998 13 20.1044 13 18.9998V15.9998C12.9999 15.4476 12.5523 14.9998 12 14.9998C11.4477 14.9998 11.0001 15.4476 11 15.9998V18.9998C11 20.1044 10.1046 20.9998 9 20.9998H7C4.79088 20.9998 3 19.209 3 16.9998V10.3299C3 9.20088 3.47698 8.12428 4.31348 7.36604L9.31348 2.83479L9.45898 2.70882C10.9826 1.45433 13.2098 1.49663 14.6865 2.83479L19.6865 7.36604L19.8389 7.51155C20.5807 8.25875 21 9.27132 21 10.3299V16.9998Z" fill="currentColor" />
|
||||
</svg>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1,10 +1,11 @@
|
||||
import type {IconProps} from "./type.ts";
|
||||
import type { IconProps } from "./type.ts";
|
||||
|
||||
export function IconImage({size = 24, className}: IconProps) {
|
||||
return <svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M20.4 13.9032L17.1216 10.6248C15.9516 9.4548 14.0484 9.4548 12.8796 10.6248L4.48679 19.0176C4.46639 19.038 4.46039 19.0668 4.44239 19.0884C5.10239 19.884 6.08639 20.4 7.19999 20.4H16.8C18.7884 20.4 20.4 18.7884 20.4 16.8V13.9032Z" fill="currentColor"/>
|
||||
<path d="M7.1996 4.80038C5.87436 4.8006 4.80029 5.87454 4.80019 7.1998V16.8004C4.8004 18.1256 5.87443 19.1996 7.1996 19.1998H16.8002C18.1254 19.1997 19.1994 18.1256 19.1996 16.8004V7.1998C19.1995 5.87447 18.1255 4.80049 16.8002 4.80038H7.1996ZM16.8002 2.39999C19.451 2.4001 21.5999 4.54899 21.6 7.1998V16.8004C21.5998 19.4511 19.4509 21.6001 16.8002 21.6002H7.1996C4.54894 21.6 2.40001 19.451 2.3998 16.8004V7.1998C2.3999 4.54905 4.54888 2.4002 7.1996 2.39999H16.8002Z" fill="currentColor"/>
|
||||
<path d="M8.99999 10.8C9.9941 10.8 10.8 9.99411 10.8 8.99999C10.8 8.00588 9.9941 7.19999 8.99999 7.19999C8.00588 7.19999 7.19999 8.00588 7.19999 8.99999C7.19999 9.99411 8.00588 10.8 8.99999 10.8Z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
}
|
||||
export function IconImage({ size = 24, className }: IconProps) {
|
||||
return (
|
||||
<svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M20.4 13.9032L17.1216 10.6248C15.9516 9.4548 14.0484 9.4548 12.8796 10.6248L4.48679 19.0176C4.46639 19.038 4.46039 19.0668 4.44239 19.0884C5.10239 19.884 6.08639 20.4 7.19999 20.4H16.8C18.7884 20.4 20.4 18.7884 20.4 16.8V13.9032Z" fill="currentColor" />
|
||||
<path d="M7.1996 4.80038C5.87436 4.8006 4.80029 5.87454 4.80019 7.1998V16.8004C4.8004 18.1256 5.87443 19.1996 7.1996 19.1998H16.8002C18.1254 19.1997 19.1994 18.1256 19.1996 16.8004V7.1998C19.1995 5.87447 18.1255 4.80049 16.8002 4.80038H7.1996ZM16.8002 2.39999C19.451 2.4001 21.5999 4.54899 21.6 7.1998V16.8004C21.5998 19.4511 19.4509 21.6001 16.8002 21.6002H7.1996C4.54894 21.6 2.40001 19.451 2.3998 16.8004V7.1998C2.3999 4.54905 4.54888 2.4002 7.1996 2.39999H16.8002Z" fill="currentColor" />
|
||||
<path d="M8.99999 10.8C9.9941 10.8 10.8 9.99411 10.8 8.99999C10.8 8.00588 9.9941 7.19999 8.99999 7.19999C8.00588 7.19999 7.19999 8.00588 7.19999 8.99999C7.19999 9.99411 8.00588 10.8 8.99999 10.8Z" fill="currentColor" />
|
||||
</svg>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1,9 +1,10 @@
|
||||
import type {IconProps} from "./type.ts";
|
||||
import type { IconProps } from "./type.ts";
|
||||
|
||||
export function IconImport2({size = 24, className}: IconProps) {
|
||||
return <svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M6 6C4.89543 6 4 6.89543 4 8V16C4 17.1046 4.89542 18 6 18H18C19.1046 18 20 17.1046 20 16V9C20 8.44772 20.4477 8 21 8C21.5523 8 22 8.44772 22 9V16C22 18.2092 20.2092 20 18 20H6C3.79088 20 2 18.2092 2 16V8C2 5.79087 3.79087 4 6 4H8C8.55228 4 9 4.44772 9 5C9 5.55228 8.55228 6 8 6H6Z" fill="currentColor"/>
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M11 10C11 6.68629 13.6863 4 17 4H21C21.5523 4 22 4.44772 22 5C22 5.55228 21.5523 6 21 6H17C14.7909 6 13 7.79087 13 10V12.5858L15.0429 10.5429C15.4334 10.1524 16.0666 10.1524 16.4571 10.5429C16.8476 10.9334 16.8476 11.5666 16.4571 11.9571L12.7071 15.7071C12.3166 16.0976 11.6834 16.0976 11.2929 15.7071L7.54289 11.9571C7.15237 11.5666 7.15237 10.9334 7.54289 10.5429C7.93342 10.1524 8.56658 10.1524 8.95711 10.5429L11 12.5858V10Z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
}
|
||||
export function IconImport2({ size = 24, className }: IconProps) {
|
||||
return (
|
||||
<svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M6 6C4.89543 6 4 6.89543 4 8V16C4 17.1046 4.89542 18 6 18H18C19.1046 18 20 17.1046 20 16V9C20 8.44772 20.4477 8 21 8C21.5523 8 22 8.44772 22 9V16C22 18.2092 20.2092 20 18 20H6C3.79088 20 2 18.2092 2 16V8C2 5.79087 3.79087 4 6 4H8C8.55228 4 9 4.44772 9 5C9 5.55228 8.55228 6 8 6H6Z" fill="currentColor" />
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M11 10C11 6.68629 13.6863 4 17 4H21C21.5523 4 22 4.44772 22 5C22 5.55228 21.5523 6 21 6H17C14.7909 6 13 7.79087 13 10V12.5858L15.0429 10.5429C15.4334 10.1524 16.0666 10.1524 16.4571 10.5429C16.8476 10.9334 16.8476 11.5666 16.4571 11.9571L12.7071 15.7071C12.3166 16.0976 11.6834 16.0976 11.2929 15.7071L7.54289 11.9571C7.15237 11.5666 7.15237 10.9334 7.54289 10.5429C7.93342 10.1524 8.56658 10.1524 8.95711 10.5429L11 12.5858V10Z" fill="currentColor" />
|
||||
</svg>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1,9 +1,10 @@
|
||||
import type {IconProps} from "./type.ts";
|
||||
import type { IconProps } from "./type.ts";
|
||||
|
||||
export function IconInProgress({size = 24, className}: IconProps) {
|
||||
return <svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M12 3.875C7.51269 3.875 3.875 7.51269 3.875 12C3.875 16.4873 7.51269 20.125 12 20.125C16.4873 20.125 20.125 16.4873 20.125 12C20.125 7.51269 16.4873 3.875 12 3.875ZM2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12Z" fill="currentColor"/>
|
||||
<path d="M12 5.74985V18.2499C15.4513 18.2499 18.25 15.4511 18.25 11.9999C18.25 8.5486 15.4513 5.74985 12 5.74985Z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
}
|
||||
export function IconInProgress({ size = 24, className }: IconProps) {
|
||||
return (
|
||||
<svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M12 3.875C7.51269 3.875 3.875 7.51269 3.875 12C3.875 16.4873 7.51269 20.125 12 20.125C16.4873 20.125 20.125 16.4873 20.125 12C20.125 7.51269 16.4873 3.875 12 3.875ZM2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12Z" fill="currentColor" />
|
||||
<path d="M12 5.74985V18.2499C15.4513 18.2499 18.25 15.4511 18.25 11.9999C18.25 8.5486 15.4513 5.74985 12 5.74985Z" fill="currentColor" />
|
||||
</svg>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1,8 +1,9 @@
|
||||
import type {IconProps} from "./type.ts";
|
||||
import type { IconProps } from "./type.ts";
|
||||
|
||||
export function IconInboxEmpty({size = 24, className}: IconProps) {
|
||||
return <svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M4.268 6.01544C4.98017 4.76915 6.30554 4 7.74097 4H16.259C17.6945 4 19.0198 4.76916 19.732 6.01539L22.4729 10.8121C22.8184 11.4166 23 12.1006 23 12.7967V16C23 18.2092 21.2092 20 19 20H5C2.79088 20 1 18.2092 1 16V12.7967C1 12.1006 1.18167 11.4165 1.52702 10.8122L4.268 6.01544ZM20.2768 11L17.9956 7.00777C17.9956 7.00775 17.9956 7.00779 17.9956 7.00777C17.6394 6.3846 16.9767 6 16.259 6H7.74097C7.02326 6 6.36057 6.38457 6.00448 7.00772M6.00448 7.00772L3.72319 11H7.25C8.35166 11 9.38901 11.5187 10.05 12.4C10.3333 12.7777 10.7779 13 11.25 13H12.75C13.2222 13 13.6667 12.7777 13.95 12.4C14.6109 11.5187 15.6484 11 16.75 11H20.2768M3 13V16C3 17.1046 3.89542 18 5 18H19C20.1046 18 21 17.1046 21 16V13H16.75C16.2778 13 15.8333 13.2223 15.55 13.6C14.8891 14.4813 13.8516 15 12.75 15H11.25C10.1483 15 9.11099 14.4813 8.45001 13.6C8.16671 13.2223 7.72212 13 7.25 13H3Z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
}
|
||||
export function IconInboxEmpty({ size = 24, className }: IconProps) {
|
||||
return (
|
||||
<svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M4.268 6.01544C4.98017 4.76915 6.30554 4 7.74097 4H16.259C17.6945 4 19.0198 4.76916 19.732 6.01539L22.4729 10.8121C22.8184 11.4166 23 12.1006 23 12.7967V16C23 18.2092 21.2092 20 19 20H5C2.79088 20 1 18.2092 1 16V12.7967C1 12.1006 1.18167 11.4165 1.52702 10.8122L4.268 6.01544ZM20.2768 11L17.9956 7.00777C17.9956 7.00775 17.9956 7.00779 17.9956 7.00777C17.6394 6.3846 16.9767 6 16.259 6H7.74097C7.02326 6 6.36057 6.38457 6.00448 7.00772M6.00448 7.00772L3.72319 11H7.25C8.35166 11 9.38901 11.5187 10.05 12.4C10.3333 12.7777 10.7779 13 11.25 13H12.75C13.2222 13 13.6667 12.7777 13.95 12.4C14.6109 11.5187 15.6484 11 16.75 11H20.2768M3 13V16C3 17.1046 3.89542 18 5 18H19C20.1046 18 21 17.1046 21 16V13H16.75C16.2778 13 15.8333 13.2223 15.55 13.6C14.8891 14.4813 13.8516 15 12.75 15H11.25C10.1483 15 9.11099 14.4813 8.45001 13.6C8.16671 13.2223 7.72212 13 7.25 13H3Z" fill="currentColor" />
|
||||
</svg>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -2,21 +2,21 @@ import type { IconProps } from "./type.ts";
|
||||
|
||||
// https://lucide.dev/icons/key-round
|
||||
export function IconKey({ size = 24, className }: IconProps) {
|
||||
return (
|
||||
<svg
|
||||
width={size}
|
||||
height={size}
|
||||
viewBox="0 0 24 24"
|
||||
className={className}
|
||||
fill="none"
|
||||
stroke="currentColor"
|
||||
strokeWidth="2"
|
||||
strokeLinecap="round"
|
||||
strokeLinejoin="round"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
>
|
||||
<path d="M2.586 17.414A2 2 0 0 0 2 18.828V21a1 1 0 0 0 1 1h3a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1h1a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1h.172a2 2 0 0 0 1.414-.586l.814-.814a6.5 6.5 0 1 0-4-4z" />
|
||||
<circle cx="16.5" cy="7.5" r=".5" fill="currentColor" />
|
||||
</svg>
|
||||
);
|
||||
return (
|
||||
<svg
|
||||
width={size}
|
||||
height={size}
|
||||
viewBox="0 0 24 24"
|
||||
className={className}
|
||||
fill="none"
|
||||
stroke="currentColor"
|
||||
strokeWidth="2"
|
||||
strokeLinecap="round"
|
||||
strokeLinejoin="round"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
>
|
||||
<path d="M2.586 17.414A2 2 0 0 0 2 18.828V21a1 1 0 0 0 1 1h3a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1h1a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1h.172a2 2 0 0 0 1.414-.586l.814-.814a6.5 6.5 0 1 0-4-4z" />
|
||||
<circle cx="16.5" cy="7.5" r=".5" fill="currentColor" />
|
||||
</svg>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1,10 +1,11 @@
|
||||
import type {IconProps} from "./type.ts";
|
||||
import type { IconProps } from "./type.ts";
|
||||
|
||||
export function IconListStack({size = 24, className}: IconProps) {
|
||||
return <svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M11.4645 3.12042C11.906 2.95987 12.39 2.95986 12.8315 3.12042L20.9053 6.05635C22.6607 6.69466 22.6607 9.17721 20.9053 9.81553L12.8315 12.7514C12.39 12.912 11.906 12.912 11.4645 12.7514L3.39074 9.81553C1.63539 9.17722 1.63537 6.69467 3.39073 6.05635L11.4645 3.12042ZM20.2218 7.93594L12.148 5L4.07422 7.93594L12.148 10.8718L20.2218 7.93594Z" fill="currentColor"/>
|
||||
<path d="M20.9053 13.8155L12.8315 16.7514C12.39 16.912 11.906 16.912 11.4645 16.7514L3.39074 13.8155C2.25171 13.4013 1.85178 12.2106 2.19096 11.2511L12.148 14.8718L22.1051 11.2511C22.4443 12.2106 22.0444 13.4013 20.9053 13.8155Z" fill="currentColor"/>
|
||||
<path d="M20.9053 17.8155L12.8315 20.7514C12.39 20.912 11.906 20.912 11.4645 20.7514L3.39074 17.8155C2.25171 17.4013 1.85178 16.2106 2.19096 15.2511L12.148 18.8718L22.1051 15.2511C22.4443 16.2106 22.0444 17.4013 20.9053 17.8155Z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
}
|
||||
export function IconListStack({ size = 24, className }: IconProps) {
|
||||
return (
|
||||
<svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M11.4645 3.12042C11.906 2.95987 12.39 2.95986 12.8315 3.12042L20.9053 6.05635C22.6607 6.69466 22.6607 9.17721 20.9053 9.81553L12.8315 12.7514C12.39 12.912 11.906 12.912 11.4645 12.7514L3.39074 9.81553C1.63539 9.17722 1.63537 6.69467 3.39073 6.05635L11.4645 3.12042ZM20.2218 7.93594L12.148 5L4.07422 7.93594L12.148 10.8718L20.2218 7.93594Z" fill="currentColor" />
|
||||
<path d="M20.9053 13.8155L12.8315 16.7514C12.39 16.912 11.906 16.912 11.4645 16.7514L3.39074 13.8155C2.25171 13.4013 1.85178 12.2106 2.19096 11.2511L12.148 14.8718L22.1051 11.2511C22.4443 12.2106 22.0444 13.4013 20.9053 13.8155Z" fill="currentColor" />
|
||||
<path d="M20.9053 17.8155L12.8315 20.7514C12.39 20.912 11.906 20.912 11.4645 20.7514L3.39074 17.8155C2.25171 17.4013 1.85178 16.2106 2.19096 15.2511L12.148 18.8718L22.1051 15.2511C22.4443 16.2106 22.0444 17.4013 20.9053 17.8155Z" fill="currentColor" />
|
||||
</svg>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1,7 +1,9 @@
|
||||
import type {IconProps} from "./type.ts";
|
||||
import type { IconProps } from "./type.ts";
|
||||
|
||||
export function IconLock({size = 24, className}: IconProps) {
|
||||
return <svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M6 10V8C6 5.79086 7.79086 4 10 4H14C16.2091 4 18 5.79086 18 8V10H19C19.5523 10 20 10.4477 20 11V19C20 19.5523 19.5523 20 19 20H5C4.44772 20 4 19.5523 4 19V11C4 10.4477 4.44772 10 5 10H6ZM8 8V10H16V8C16 6.89543 15.1046 6 14 6H10C8.89543 6 8 6.89543 8 8ZM6 12V18H18V12H6ZM12 13C12.5523 13 13 13.4477 13 14C13 14.5523 12.5523 15 12 15C11.4477 15 11 14.5523 11 14C11 13.4477 11.4477 13 12 13Z" fill="currentColor"/>
|
||||
</svg>
|
||||
export function IconLock({ size = 24, className }: IconProps) {
|
||||
return (
|
||||
<svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M6 10V8C6 5.79086 7.79086 4 10 4H14C16.2091 4 18 5.79086 18 8V10H19C19.5523 10 20 10.4477 20 11V19C20 19.5523 19.5523 20 19 20H5C4.44772 20 4 19.5523 4 19V11C4 10.4477 4.44772 10 5 10H6ZM8 8V10H16V8C16 6.89543 15.1046 6 14 6H10C8.89543 6 8 6.89543 8 8ZM6 12V18H18V12H6ZM12 13C12.5523 13 13 13.4477 13 14C13 14.5523 12.5523 15 12 15C11.4477 15 11 14.5523 11 14C11 13.4477 11.4477 13 12 13Z" fill="currentColor" />
|
||||
</svg>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1,8 +1,9 @@
|
||||
import type {IconProps} from "./type.ts";
|
||||
import type { IconProps } from "./type.ts";
|
||||
|
||||
export function IconMagnifyingGlass({size = 24, className}: IconProps) {
|
||||
return <svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M11 5C7.68629 5 5 7.68629 5 11C5 14.3137 7.68629 17 11 17C14.3137 17 17 14.3137 17 11C17 7.68629 14.3137 5 11 5ZM3 11C3 6.58173 6.58173 3 11 3C15.4183 3 19 6.58173 19 11C19 12.8487 18.3729 14.551 17.3199 15.9056L20.7071 19.2929C21.0976 19.6834 21.0976 20.3166 20.7071 20.7071C20.3166 21.0976 19.6834 21.0976 19.2929 20.7071L15.9056 17.3199C14.551 18.3729 12.8487 19 11 19C6.58173 19 3 15.4183 3 11Z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
}
|
||||
export function IconMagnifyingGlass({ size = 24, className }: IconProps) {
|
||||
return (
|
||||
<svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M11 5C7.68629 5 5 7.68629 5 11C5 14.3137 7.68629 17 11 17C14.3137 17 17 14.3137 17 11C17 7.68629 14.3137 5 11 5ZM3 11C3 6.58173 6.58173 3 11 3C15.4183 3 19 6.58173 19 11C19 12.8487 18.3729 14.551 17.3199 15.9056L20.7071 19.2929C21.0976 19.6834 21.0976 20.3166 20.7071 20.7071C20.3166 21.0976 19.6834 21.0976 19.2929 20.7071L15.9056 17.3199C14.551 18.3729 12.8487 19 11 19C6.58173 19 3 15.4183 3 11Z" fill="currentColor" />
|
||||
</svg>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1,19 +1,19 @@
|
||||
import type { IconProps } from "./type.ts";
|
||||
|
||||
export function IconMail({ size = 24, className }: IconProps) {
|
||||
return (
|
||||
<svg
|
||||
width={size}
|
||||
height={size}
|
||||
className={className}
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
fill="none"
|
||||
viewBox="0 0 16 17"
|
||||
>
|
||||
<path
|
||||
fill="currentColor"
|
||||
d="M13.33 6.27v5.07h1.34V6.27h-1.34Zm-1.46 6.54H4.13v1.33h7.74v-1.33Zm-9.2-1.47V6.27H1.33v5.07h1.34Zm1.46-6.53h7.74V3.47H4.13v1.34Zm0 8c-.38 0-.63 0-.82-.02a.76.76 0 0 1-.28-.05l-.6 1.18c.25.13.51.18.77.2.26.02.57.02.93.02v-1.33Zm-2.8-1.47c0 .36 0 .68.02.93.03.26.07.53.2.78l1.19-.6a.76.76 0 0 1-.06-.29l-.01-.82H1.33Zm1.7 1.4a.67.67 0 0 1-.3-.3l-1.18.6c.2.39.5.7.88.88l.6-1.18Zm10.3-1.4-.01.82a.76.76 0 0 1-.06.28l1.19.6c.13-.24.17-.5.2-.77.02-.25.02-.57.02-.93h-1.34Zm-1.46 2.8c.36 0 .67 0 .93-.02s.52-.07.77-.2l-.6-1.18a.76.76 0 0 1-.28.05c-.2.02-.44.02-.82.02v1.33Zm1.4-1.7a.67.67 0 0 1-.3.3l.6 1.18a2 2 0 0 0 .88-.87l-1.19-.6Zm1.4-6.17c0-.36 0-.67-.02-.93a2.03 2.03 0 0 0-.2-.77l-1.19.6c.02.03.04.1.06.28l.01.82h1.34Zm-2.8-1.46.82.01c.18.02.25.04.28.06l.6-1.19a2.04 2.04 0 0 0-.77-.2c-.26-.02-.57-.02-.93-.02v1.34Zm2.58-.24a2 2 0 0 0-.88-.88l-.6 1.2c.12.05.23.16.3.28l1.18-.6ZM2.67 6.27l.01-.82a.76.76 0 0 1 .06-.28l-1.19-.6c-.13.25-.17.51-.2.77-.02.26-.02.57-.02.93h1.34Zm1.46-2.8c-.36 0-.67 0-.93.02-.26.03-.52.07-.77.2l.6 1.2c.03-.03.1-.05.28-.07l.82-.01V3.47Zm-1.4 1.7a.67.67 0 0 1 .3-.29l-.6-1.19a2 2 0 0 0-.88.88l1.19.6Zm10.85-1.12L8.42 8.27l.85 1.03 5.15-4.22-.84-1.03Zm-6 4.22L2.42 4.05l-.84 1.03L6.73 9.3l.85-1.03Zm.84 0c-.24.2-.6.2-.84 0L6.73 9.3a2 2 0 0 0 2.54 0l-.85-1.03Z"
|
||||
/>
|
||||
</svg>
|
||||
);
|
||||
return (
|
||||
<svg
|
||||
width={size}
|
||||
height={size}
|
||||
className={className}
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
fill="none"
|
||||
viewBox="0 0 16 17"
|
||||
>
|
||||
<path
|
||||
fill="currentColor"
|
||||
d="M13.33 6.27v5.07h1.34V6.27h-1.34Zm-1.46 6.54H4.13v1.33h7.74v-1.33Zm-9.2-1.47V6.27H1.33v5.07h1.34Zm1.46-6.53h7.74V3.47H4.13v1.34Zm0 8c-.38 0-.63 0-.82-.02a.76.76 0 0 1-.28-.05l-.6 1.18c.25.13.51.18.77.2.26.02.57.02.93.02v-1.33Zm-2.8-1.47c0 .36 0 .68.02.93.03.26.07.53.2.78l1.19-.6a.76.76 0 0 1-.06-.29l-.01-.82H1.33Zm1.7 1.4a.67.67 0 0 1-.3-.3l-1.18.6c.2.39.5.7.88.88l.6-1.18Zm10.3-1.4-.01.82a.76.76 0 0 1-.06.28l1.19.6c.13-.24.17-.5.2-.77.02-.25.02-.57.02-.93h-1.34Zm-1.46 2.8c.36 0 .67 0 .93-.02s.52-.07.77-.2l-.6-1.18a.76.76 0 0 1-.28.05c-.2.02-.44.02-.82.02v1.33Zm1.4-1.7a.67.67 0 0 1-.3.3l.6 1.18a2 2 0 0 0 .88-.87l-1.19-.6Zm1.4-6.17c0-.36 0-.67-.02-.93a2.03 2.03 0 0 0-.2-.77l-1.19.6c.02.03.04.1.06.28l.01.82h1.34Zm-2.8-1.46.82.01c.18.02.25.04.28.06l.6-1.19a2.04 2.04 0 0 0-.77-.2c-.26-.02-.57-.02-.93-.02v1.34Zm2.58-.24a2 2 0 0 0-.88-.88l-.6 1.2c.12.05.23.16.3.28l1.18-.6ZM2.67 6.27l.01-.82a.76.76 0 0 1 .06-.28l-1.19-.6c-.13.25-.17.51-.2.77-.02.26-.02.57-.02.93h1.34Zm1.46-2.8c-.36 0-.67 0-.93.02-.26.03-.52.07-.77.2l.6 1.2c.03-.03.1-.05.28-.07l.82-.01V3.47Zm-1.4 1.7a.67.67 0 0 1 .3-.29l-.6-1.19a2 2 0 0 0-.88.88l1.19.6Zm10.85-1.12L8.42 8.27l.85 1.03 5.15-4.22-.84-1.03Zm-6 4.22L2.42 4.05l-.84 1.03L6.73 9.3l.85-1.03Zm.84 0c-.24.2-.6.2-.84 0L6.73 9.3a2 2 0 0 0 2.54 0l-.85-1.03Z"
|
||||
/>
|
||||
</svg>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1,21 +1,21 @@
|
||||
import type { IconProps } from "./type.ts";
|
||||
|
||||
export function IconMedal({ size = 24, className }: IconProps) {
|
||||
return (
|
||||
<svg
|
||||
width={size}
|
||||
height={size}
|
||||
viewBox="0 0 16 16"
|
||||
fill="transparent"
|
||||
className={className}
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
>
|
||||
<path
|
||||
d="M5.33331 10.1673V14.0249C5.33331 14.3965 5.72447 14.6383 6.05692 14.4721L7.77638 13.6123C7.91711 13.5419 8.08285 13.5419 8.22358 13.6123L9.94305 14.4721C10.2755 14.6383 10.6666 14.3965 10.6666 14.0249V10.1673M12.6666 6.00065C12.6666 8.57798 10.5773 10.6673 7.99998 10.6673C5.42265 10.6673 3.33331 8.57798 3.33331 6.00065C3.33331 3.42332 5.42265 1.33398 7.99998 1.33398C10.5773 1.33398 12.6666 3.42332 12.6666 6.00065Z"
|
||||
stroke="currentColor"
|
||||
strokeWidth="1.33333"
|
||||
strokeLinejoin="round"
|
||||
/>
|
||||
</svg>
|
||||
);
|
||||
return (
|
||||
<svg
|
||||
width={size}
|
||||
height={size}
|
||||
viewBox="0 0 16 16"
|
||||
fill="transparent"
|
||||
className={className}
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
>
|
||||
<path
|
||||
d="M5.33331 10.1673V14.0249C5.33331 14.3965 5.72447 14.6383 6.05692 14.4721L7.77638 13.6123C7.91711 13.5419 8.08285 13.5419 8.22358 13.6123L9.94305 14.4721C10.2755 14.6383 10.6666 14.3965 10.6666 14.0249V10.1673M12.6666 6.00065C12.6666 8.57798 10.5773 10.6673 7.99998 10.6673C5.42265 10.6673 3.33331 8.57798 3.33331 6.00065C3.33331 3.42332 5.42265 1.33398 7.99998 1.33398C10.5773 1.33398 12.6666 3.42332 12.6666 6.00065Z"
|
||||
stroke="currentColor"
|
||||
strokeWidth="1.33333"
|
||||
strokeLinejoin="round"
|
||||
/>
|
||||
</svg>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import type {IconProps} from "./type.ts";
|
||||
import type { IconProps } from "./type.ts";
|
||||
|
||||
export function IconMinusLarge({size = 16, className}: IconProps) {
|
||||
export function IconMinusLarge({ size = 16, className }: IconProps) {
|
||||
return (
|
||||
<svg
|
||||
width={size}
|
||||
|
||||
@@ -1,8 +1,9 @@
|
||||
import type {IconProps} from "./type.ts";
|
||||
import type { IconProps } from "./type.ts";
|
||||
|
||||
export function IconNotStarted({size = 24, className}: IconProps) {
|
||||
return <svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M13.6823 19.9565C14.1551 19.9121 14.5942 20.2322 14.6885 20.7082C14.789 21.2161 14.4585 21.7091 13.9506 21.8096L13.4736 21.8929C12.9924 21.964 12.5004 22 12.0005 22C11.3338 22 10.6811 21.9345 10.0494 21.8096C9.5416 21.709 9.21104 21.216 9.31151 20.7082C9.41205 20.2003 9.90593 19.8698 10.4138 19.9702C10.9262 20.0716 11.4567 20.125 12.0005 20.125C12.5442 20.125 13.0747 20.0716 13.5871 19.9702L13.6823 19.9565ZM5.24285 16.5141C5.76211 17.2897 6.41193 17.9706 7.15999 18.5264L7.48592 18.7572L7.56374 18.8148C7.92958 19.1178 8.01407 19.6549 7.74411 20.0581C7.47405 20.4615 6.94505 20.5879 6.52552 20.3648L6.44312 20.3154L6.04211 20.0316C5.1222 19.3481 4.32321 18.5108 3.6846 17.5569L5.24285 16.5141ZM17.5569 20.3154C17.1267 20.6033 16.5449 20.4881 16.2568 20.0581C15.9688 19.6279 16.0838 19.0452 16.5141 18.7572L17.5569 20.3154ZM18.7572 16.5141C19.0452 16.0838 19.6279 15.9688 20.0581 16.2568C20.4881 16.5449 20.6033 17.1267 20.3154 17.5569C19.5856 18.647 18.647 19.5856 17.5569 20.3154L16.5141 18.7572C17.4004 18.1637 18.1637 17.4004 18.7572 16.5141ZM3.94278 16.2568C4.37302 15.9688 4.95482 16.0838 5.24285 16.5141L3.6846 17.5569C3.39678 17.1267 3.51262 16.5448 3.94278 16.2568ZM2 12.0005C2 11.3338 2.06548 10.6811 2.19043 10.0494C2.29095 9.54163 2.78399 9.21114 3.29183 9.31151C3.79976 9.412 4.13024 9.90589 4.02976 10.4138C3.92843 10.9261 3.87503 11.4568 3.87503 12.0005C3.87504 12.4081 3.90521 12.8082 3.96292 13.1989L4.02976 13.5871L4.04349 13.6823C4.0879 14.1552 3.76787 14.5943 3.29183 14.6885C2.81567 14.7826 2.35214 14.4984 2.21332 14.0439L2.19043 13.9506L2.10803 13.4736C2.03692 12.9924 2.00001 12.5005 2 12.0005ZM20.125 12.0005C20.125 11.4567 20.0716 10.9262 19.9702 10.4138L21.8096 10.0494C21.9345 10.6811 22 11.3338 22 12.0005C22 12.667 21.9345 13.3191 21.8096 13.9506L21.7867 14.0439C21.6478 14.4984 21.1843 14.7827 20.7082 14.6885C20.2004 14.5879 19.8699 14.0949 19.9702 13.5871L20.038 13.1989C20.0957 12.8083 20.125 12.4081 20.125 12.0005ZM20.7082 9.31151C21.216 9.21104 21.709 9.5416 21.8096 10.0494L19.9702 10.4138C19.8698 9.90593 20.2003 9.41205 20.7082 9.31151ZM6.52552 3.63607C6.94511 3.41279 7.47401 3.53934 7.74411 3.94278C8.03184 4.373 7.91606 4.95488 7.48592 5.24285L7.15999 5.47356C6.41194 6.02934 5.76212 6.71034 5.24285 7.48592L5.18608 7.56374C4.88327 7.92972 4.34608 8.01384 3.94278 7.74411C3.51255 7.45607 3.3966 6.87337 3.6846 6.44312L3.96841 6.04211C4.65188 5.12214 5.48919 4.32324 6.44312 3.6846L6.52552 3.63607ZM16.2568 3.94278C16.5448 3.51262 17.1267 3.39678 17.5569 3.6846C18.5108 4.32321 19.3481 5.1222 20.0316 6.04211L20.3154 6.44312L20.3648 6.52552C20.5879 6.94505 20.4615 7.47405 20.0581 7.74411C19.6549 8.01407 19.1178 7.92958 18.8148 7.56374L18.7572 7.48592L18.5264 7.15999C17.9706 6.41193 17.2897 5.76211 16.5141 5.24285C16.0838 4.95482 15.9688 4.37302 16.2568 3.94278ZM12.0005 2C12.5005 2.00001 12.9924 2.03692 13.4736 2.10803L13.9506 2.19043L14.0439 2.21332C14.4984 2.35214 14.7826 2.81567 14.6885 3.29183C14.5943 3.76787 14.1552 4.0879 13.6823 4.04349L13.5871 4.02976L13.1989 3.96292C12.8082 3.90521 12.4081 3.87504 12.0005 3.87503C11.4568 3.87503 10.9261 3.92843 10.4138 4.02976C9.90589 4.13024 9.412 3.79976 9.31151 3.29183C9.21114 2.78399 9.54163 2.29095 10.0494 2.19043C10.6811 2.06548 11.3338 2 12.0005 2Z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
}
|
||||
export function IconNotStarted({ size = 24, className }: IconProps) {
|
||||
return (
|
||||
<svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M13.6823 19.9565C14.1551 19.9121 14.5942 20.2322 14.6885 20.7082C14.789 21.2161 14.4585 21.7091 13.9506 21.8096L13.4736 21.8929C12.9924 21.964 12.5004 22 12.0005 22C11.3338 22 10.6811 21.9345 10.0494 21.8096C9.5416 21.709 9.21104 21.216 9.31151 20.7082C9.41205 20.2003 9.90593 19.8698 10.4138 19.9702C10.9262 20.0716 11.4567 20.125 12.0005 20.125C12.5442 20.125 13.0747 20.0716 13.5871 19.9702L13.6823 19.9565ZM5.24285 16.5141C5.76211 17.2897 6.41193 17.9706 7.15999 18.5264L7.48592 18.7572L7.56374 18.8148C7.92958 19.1178 8.01407 19.6549 7.74411 20.0581C7.47405 20.4615 6.94505 20.5879 6.52552 20.3648L6.44312 20.3154L6.04211 20.0316C5.1222 19.3481 4.32321 18.5108 3.6846 17.5569L5.24285 16.5141ZM17.5569 20.3154C17.1267 20.6033 16.5449 20.4881 16.2568 20.0581C15.9688 19.6279 16.0838 19.0452 16.5141 18.7572L17.5569 20.3154ZM18.7572 16.5141C19.0452 16.0838 19.6279 15.9688 20.0581 16.2568C20.4881 16.5449 20.6033 17.1267 20.3154 17.5569C19.5856 18.647 18.647 19.5856 17.5569 20.3154L16.5141 18.7572C17.4004 18.1637 18.1637 17.4004 18.7572 16.5141ZM3.94278 16.2568C4.37302 15.9688 4.95482 16.0838 5.24285 16.5141L3.6846 17.5569C3.39678 17.1267 3.51262 16.5448 3.94278 16.2568ZM2 12.0005C2 11.3338 2.06548 10.6811 2.19043 10.0494C2.29095 9.54163 2.78399 9.21114 3.29183 9.31151C3.79976 9.412 4.13024 9.90589 4.02976 10.4138C3.92843 10.9261 3.87503 11.4568 3.87503 12.0005C3.87504 12.4081 3.90521 12.8082 3.96292 13.1989L4.02976 13.5871L4.04349 13.6823C4.0879 14.1552 3.76787 14.5943 3.29183 14.6885C2.81567 14.7826 2.35214 14.4984 2.21332 14.0439L2.19043 13.9506L2.10803 13.4736C2.03692 12.9924 2.00001 12.5005 2 12.0005ZM20.125 12.0005C20.125 11.4567 20.0716 10.9262 19.9702 10.4138L21.8096 10.0494C21.9345 10.6811 22 11.3338 22 12.0005C22 12.667 21.9345 13.3191 21.8096 13.9506L21.7867 14.0439C21.6478 14.4984 21.1843 14.7827 20.7082 14.6885C20.2004 14.5879 19.8699 14.0949 19.9702 13.5871L20.038 13.1989C20.0957 12.8083 20.125 12.4081 20.125 12.0005ZM20.7082 9.31151C21.216 9.21104 21.709 9.5416 21.8096 10.0494L19.9702 10.4138C19.8698 9.90593 20.2003 9.41205 20.7082 9.31151ZM6.52552 3.63607C6.94511 3.41279 7.47401 3.53934 7.74411 3.94278C8.03184 4.373 7.91606 4.95488 7.48592 5.24285L7.15999 5.47356C6.41194 6.02934 5.76212 6.71034 5.24285 7.48592L5.18608 7.56374C4.88327 7.92972 4.34608 8.01384 3.94278 7.74411C3.51255 7.45607 3.3966 6.87337 3.6846 6.44312L3.96841 6.04211C4.65188 5.12214 5.48919 4.32324 6.44312 3.6846L6.52552 3.63607ZM16.2568 3.94278C16.5448 3.51262 17.1267 3.39678 17.5569 3.6846C18.5108 4.32321 19.3481 5.1222 20.0316 6.04211L20.3154 6.44312L20.3648 6.52552C20.5879 6.94505 20.4615 7.47405 20.0581 7.74411C19.6549 8.01407 19.1178 7.92958 18.8148 7.56374L18.7572 7.48592L18.5264 7.15999C17.9706 6.41193 17.2897 5.76211 16.5141 5.24285C16.0838 4.95482 15.9688 4.37302 16.2568 3.94278ZM12.0005 2C12.5005 2.00001 12.9924 2.03692 13.4736 2.10803L13.9506 2.19043L14.0439 2.21332C14.4984 2.35214 14.7826 2.81567 14.6885 3.29183C14.5943 3.76787 14.1552 4.0879 13.6823 4.04349L13.5871 4.02976L13.1989 3.96292C12.8082 3.90521 12.4081 3.87504 12.0005 3.87503C11.4568 3.87503 10.9261 3.92843 10.4138 4.02976C9.90589 4.13024 9.412 3.79976 9.31151 3.29183C9.21114 2.78399 9.54163 2.29095 10.0494 2.19043C10.6811 2.06548 11.3338 2 12.0005 2Z" fill="currentColor" />
|
||||
</svg>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1,9 +1,10 @@
|
||||
import type {IconProps} from "./type.ts";
|
||||
import type { IconProps } from "./type.ts";
|
||||
|
||||
export function IconPageCheck({size = 24, className}: IconProps) {
|
||||
return <svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M8 4C6.89543 4 6 4.89543 6 6V18C6 19.1046 6.89542 20 8 20H9C9.55228 20 10 20.4477 10 21C10 21.5523 9.55228 22 9 22H8C5.79088 22 4 20.2092 4 18V6C4 3.79087 5.79087 2 8 2H16C18.2092 2 20 3.79088 20 6V10C20 10.5523 19.5523 11 19 11C18.4477 11 18 10.5523 18 10V6C18 4.89542 17.1046 4 16 4H8Z" fill="currentColor"/>
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M21.1402 14.2318C21.5645 14.5853 21.6218 15.2159 21.2682 15.6402L16.2682 21.6404C16.0884 21.8562 15.826 21.9864 15.5453 21.9992C15.2646 22.0119 14.9915 21.906 14.7929 21.7073L12.7929 19.7071C12.4024 19.3165 12.4024 18.6834 12.7929 18.2929C13.1835 17.9024 13.8166 17.9024 14.2071 18.2929L15.4328 19.5187L19.7318 14.3598C20.0853 13.9355 20.7159 13.8782 21.1402 14.2318Z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
}
|
||||
export function IconPageCheck({ size = 24, className }: IconProps) {
|
||||
return (
|
||||
<svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M8 4C6.89543 4 6 4.89543 6 6V18C6 19.1046 6.89542 20 8 20H9C9.55228 20 10 20.4477 10 21C10 21.5523 9.55228 22 9 22H8C5.79088 22 4 20.2092 4 18V6C4 3.79087 5.79087 2 8 2H16C18.2092 2 20 3.79088 20 6V10C20 10.5523 19.5523 11 19 11C18.4477 11 18 10.5523 18 10V6C18 4.89542 17.1046 4 16 4H8Z" fill="currentColor" />
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M21.1402 14.2318C21.5645 14.5853 21.6218 15.2159 21.2682 15.6402L16.2682 21.6404C16.0884 21.8562 15.826 21.9864 15.5453 21.9992C15.2646 22.0119 14.9915 21.906 14.7929 21.7073L12.7929 19.7071C12.4024 19.3165 12.4024 18.6834 12.7929 18.2929C13.1835 17.9024 13.8166 17.9024 14.2071 18.2929L15.4328 19.5187L19.7318 14.3598C20.0853 13.9355 20.7159 13.8782 21.1402 14.2318Z" fill="currentColor" />
|
||||
</svg>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1,9 +1,10 @@
|
||||
import type {IconProps} from "./type.ts";
|
||||
import type { IconProps } from "./type.ts";
|
||||
|
||||
export function IconPageCheck1({size = 24, className}: IconProps) {
|
||||
return <svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M8 2C5.79086 2 4 3.79086 4 6V18C4 20.2091 5.79086 22 8 22H12.2573L11.3786 21.1212C10.207 19.9495 10.2072 18.0501 11.3788 16.8785C12.4368 15.8207 14.0883 15.7182 15.2613 16.5709L20 11V6C20 3.79086 18.2091 2 16 2H8Z" fill="currentColor"/>
|
||||
<path d="M21.2682 15.6402C21.6218 15.2159 21.5645 14.5853 21.1402 14.2318C20.7159 13.8782 20.0853 13.9355 19.7318 14.3598L15.4328 19.5188L14.2071 18.2929C13.8166 17.9024 13.1835 17.9023 12.7929 18.2929C12.4024 18.6833 12.4023 19.3165 12.7929 19.7071L14.7929 21.7073C14.9915 21.906 15.2646 22.0119 15.5453 21.9992C15.826 21.9865 16.0884 21.8563 16.2682 21.6404L21.2682 15.6402Z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
}
|
||||
export function IconPageCheck1({ size = 24, className }: IconProps) {
|
||||
return (
|
||||
<svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M8 2C5.79086 2 4 3.79086 4 6V18C4 20.2091 5.79086 22 8 22H12.2573L11.3786 21.1212C10.207 19.9495 10.2072 18.0501 11.3788 16.8785C12.4368 15.8207 14.0883 15.7182 15.2613 16.5709L20 11V6C20 3.79086 18.2091 2 16 2H8Z" fill="currentColor" />
|
||||
<path d="M21.2682 15.6402C21.6218 15.2159 21.5645 14.5853 21.1402 14.2318C20.7159 13.8782 20.0853 13.9355 19.7318 14.3598L15.4328 19.5188L14.2071 18.2929C13.8166 17.9024 13.1835 17.9023 12.7929 18.2929C12.4024 18.6833 12.4023 19.3165 12.7929 19.7071L14.7929 21.7073C14.9915 21.906 15.2646 22.0119 15.5453 21.9992C15.826 21.9865 16.0884 21.8563 16.2682 21.6404L21.2682 15.6402Z" fill="currentColor" />
|
||||
</svg>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1,9 +1,10 @@
|
||||
import type {IconProps} from "./type.ts";
|
||||
import type { IconProps } from "./type.ts";
|
||||
|
||||
export function IconPageCross({size = 24, className}: IconProps) {
|
||||
return <svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M8 4C6.89543 4 6 4.89543 6 6V18C6 19.1046 6.89542 20 8 20H13C13.5523 20 14 20.4477 14 21C14 21.5523 13.5523 22 13 22H8C5.79088 22 4 20.2092 4 18V6C4 3.79087 5.79087 2 8 2H16C18.2092 2 20 3.79088 20 6V13C20 13.5523 19.5523 14 19 14C18.4477 14 18 13.5523 18 13V6C18 4.89542 17.1046 4 16 4H8Z" fill="currentColor"/>
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M16.1716 16.1718C16.5621 15.7813 17.1953 15.7813 17.5858 16.1718L19 17.586L20.4142 16.1718C20.8047 15.7813 21.4379 15.7813 21.8284 16.1718C22.2189 16.5623 22.2189 17.1955 21.8284 17.586L20.4142 19.0002L21.8284 20.4145C22.2189 20.805 22.2189 21.4382 21.8284 21.8287C21.4379 22.2192 20.8047 22.2192 20.4142 21.8287L19 20.4144L17.5858 21.8287C17.1953 22.2192 16.5621 22.2192 16.1716 21.8287C15.7811 21.4382 15.7811 20.805 16.1716 20.4145L17.5858 19.0002L16.1716 17.586C15.7811 17.1955 15.7811 16.5623 16.1716 16.1718Z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
}
|
||||
export function IconPageCross({ size = 24, className }: IconProps) {
|
||||
return (
|
||||
<svg width={size} height={size} viewBox="0 0 24 24" fill="currentColor" className={className} xmlns="http://www.w3.org/2000/svg">
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M8 4C6.89543 4 6 4.89543 6 6V18C6 19.1046 6.89542 20 8 20H13C13.5523 20 14 20.4477 14 21C14 21.5523 13.5523 22 13 22H8C5.79088 22 4 20.2092 4 18V6C4 3.79087 5.79087 2 8 2H16C18.2092 2 20 3.79088 20 6V13C20 13.5523 19.5523 14 19 14C18.4477 14 18 13.5523 18 13V6C18 4.89542 17.1046 4 16 4H8Z" fill="currentColor" />
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M16.1716 16.1718C16.5621 15.7813 17.1953 15.7813 17.5858 16.1718L19 17.586L20.4142 16.1718C20.8047 15.7813 21.4379 15.7813 21.8284 16.1718C22.2189 16.5623 22.2189 17.1955 21.8284 17.586L20.4142 19.0002L21.8284 20.4145C22.2189 20.805 22.2189 21.4382 21.8284 21.8287C21.4379 22.2192 20.8047 22.2192 20.4142 21.8287L19 20.4144L17.5858 21.8287C17.1953 22.2192 16.5621 22.2192 16.1716 21.8287C15.7811 21.4382 15.7811 20.805 16.1716 20.4145L17.5858 19.0002L16.1716 17.586C15.7811 17.1955 15.7811 16.5623 16.1716 16.1718Z" fill="currentColor" />
|
||||
</svg>
|
||||
);
|
||||
}
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user