mirror of
https://github.com/hzrd149/nostrudel.git
synced 2025-03-17 13:21:44 +01:00
update all icons
This commit is contained in:
parent
b2be294dde
commit
d9353b08b3
5
.changeset/violet-gifts-notice.md
Normal file
5
.changeset/violet-gifts-notice.md
Normal file
@ -0,0 +1,5 @@
|
||||
---
|
||||
"nostrudel": minor
|
||||
---
|
||||
|
||||
Update all icons
|
@ -1,3 +1,4 @@
|
||||
node_modules
|
||||
dist
|
||||
public/lib
|
||||
stats.html
|
||||
|
@ -10,7 +10,8 @@
|
||||
"format": "prettier --ignore-path .prettierignore -w .",
|
||||
"e2e": "cypress open",
|
||||
"test": "cypress run --e2e --browser=chrome",
|
||||
"analyze": "npx vite-bundle-visualizer -o ./stats.html"
|
||||
"analyze": "npx vite-bundle-visualizer -o ./stats.html",
|
||||
"build-icons": "node ./scripts/build-icons.mjs"
|
||||
},
|
||||
"dependencies": {
|
||||
"@chakra-ui/anatomy": "^2.2.1",
|
||||
@ -73,6 +74,7 @@
|
||||
"@types/react-dom": "^18.2.7",
|
||||
"@types/webscopeio__react-textarea-autocomplete": "^4.7.2",
|
||||
"@vitejs/plugin-react": "^4.0.4",
|
||||
"camelcase": "^8.0.0",
|
||||
"cypress": "^12.17.4",
|
||||
"prettier": "^3.0.2",
|
||||
"typescript": "^5.1.6",
|
||||
|
54
scripts/build-icons.mjs
Normal file
54
scripts/build-icons.mjs
Normal file
@ -0,0 +1,54 @@
|
||||
import cheerio from "cheerio";
|
||||
import fs from "fs/promises";
|
||||
import path from "path";
|
||||
import camelcase from "camelcase";
|
||||
import * as prettier from "prettier";
|
||||
|
||||
const prettierConfig = JSON.parse(await fs.readFile(".prettierrc", { encoding: "utf-8" }));
|
||||
|
||||
const iconsSrc = "./src/components/icons/svg/untitledui-icons";
|
||||
const iconsDist = "./src/components/icons";
|
||||
const iconsList = await fs.readdir(iconsSrc);
|
||||
|
||||
for (const filename of iconsList) {
|
||||
const content = await fs.readFile(path.join(iconsSrc, filename), { encoding: "utf-8" });
|
||||
const componentName = camelcase(path.basename(filename, ".svg"), { pascalCase: true });
|
||||
|
||||
const $ = cheerio.load(content);
|
||||
|
||||
const viewBox = $("svg").attr("viewBox");
|
||||
const pathElements = $("path");
|
||||
const paths = [];
|
||||
for (const path of pathElements) {
|
||||
if (path.attribs["stroke"]) {
|
||||
path.attribs["stroke"] = "currentColor";
|
||||
}
|
||||
if (path.attribs["fill"]) {
|
||||
path.attribs["fill"] = "currentColor";
|
||||
} else path.attribs["fill"] = "none";
|
||||
|
||||
paths.push($.html(path));
|
||||
}
|
||||
|
||||
const outputCode = await prettier.format(
|
||||
`
|
||||
import { createIcon } from "@chakra-ui/icons";
|
||||
|
||||
const ${componentName} = createIcon({
|
||||
displayName: "${componentName}",
|
||||
viewBox: "${viewBox}",
|
||||
path: [
|
||||
${paths.join(",\n")}
|
||||
],
|
||||
defaultProps: { boxSize: 4 },
|
||||
});
|
||||
|
||||
export default ${componentName};
|
||||
`,
|
||||
{ ...prettierConfig, parser: "typescript" },
|
||||
);
|
||||
|
||||
const outputPath = path.join(iconsDist, filename.replace(".svg", ".tsx"));
|
||||
fs.writeFile(outputPath, outputCode, { encoding: "utf-8" });
|
||||
console.log(`Wrote ${outputPath}`);
|
||||
}
|
@ -1,14 +1,14 @@
|
||||
import { useState } from "react";
|
||||
import { IconButton, IconButtonProps } from "@chakra-ui/react";
|
||||
|
||||
import { CheckIcon, ClipboardIcon } from "./icons";
|
||||
import { CheckIcon, CopyToClipboardIcon } from "./icons";
|
||||
|
||||
export const CopyIconButton = ({ text, ...props }: { text?: string } & Omit<IconButtonProps, "icon">) => {
|
||||
const [copied, setCopied] = useState(false);
|
||||
|
||||
return (
|
||||
<IconButton
|
||||
icon={copied ? <CheckIcon /> : <ClipboardIcon />}
|
||||
icon={copied ? <CheckIcon /> : <CopyToClipboardIcon />}
|
||||
onClick={() => {
|
||||
if (text && navigator.clipboard && !copied) {
|
||||
navigator.clipboard.writeText(text);
|
||||
|
@ -4,7 +4,7 @@ import { Alert, Box, Button, ButtonGroup, Flex, IconButton, Spacer, useDisclosur
|
||||
import { PayRequest } from ".";
|
||||
import { UserAvatar } from "../user-avatar";
|
||||
import { UserLink } from "../user-link";
|
||||
import { ArrowDownSIcon, ArrowUpSIcon, CheckIcon, ErrorIcon, LightningIcon } from "../icons";
|
||||
import { ChevronDownIcon, ChevronUpIcon, CheckIcon, ErrorIcon, LightningIcon } from "../icons";
|
||||
import { InvoiceModalContent } from "../invoice-modal";
|
||||
import { PropsWithChildren, useEffect, useState } from "react";
|
||||
import appSettings from "../../services/settings/app-settings";
|
||||
@ -52,7 +52,7 @@ function PayRequestCard({ pubkey, invoice, onPaid }: { pubkey: string; invoice:
|
||||
Pay
|
||||
</Button>
|
||||
<IconButton
|
||||
icon={showMore.isOpen ? <ArrowUpSIcon /> : <ArrowDownSIcon />}
|
||||
icon={showMore.isOpen ? <ChevronUpIcon /> : <ChevronDownIcon />}
|
||||
aria-label="More Options"
|
||||
onClick={showMore.onToggle}
|
||||
/>
|
||||
|
@ -1,138 +1,98 @@
|
||||
import { createIcon, IconProps } from "@chakra-ui/icons";
|
||||
|
||||
const defaultProps: IconProps = { fontSize: "1.2em" };
|
||||
import SearchMd from "./icons/search-md";
|
||||
import Settings02 from "./icons/settings-02";
|
||||
import Mail01 from "./icons/mail-01";
|
||||
import BookmarkCheck from "./icons/bookmark-check";
|
||||
import StickerSquare from "./icons/sticker-square";
|
||||
import Code01 from "./icons/code-01";
|
||||
import DistributeSpacingVertical from "./icons/distribute-spacing-vertical";
|
||||
import Grid01 from "./icons/grid-01";
|
||||
import Microscope from "./icons/microscope";
|
||||
import Server04 from "./icons/server-04";
|
||||
import ChevronDown from "./icons/chevron-down";
|
||||
import ChevronUp from "./icons/chevron-up";
|
||||
import ChevronLeft from "./icons/chevron-left";
|
||||
import ChevronRight from "./icons/chevron-right";
|
||||
import Zap from "./icons/zap";
|
||||
import Target04 from "./icons/target-04";
|
||||
import Award01 from "./icons/award-01";
|
||||
import LayoutRight from "./icons/layout-right";
|
||||
import ThumbsUp from "./icons/thumbs-up";
|
||||
import ThumbsDown from "./icons/thumbs-down";
|
||||
import LogOut01 from "./icons/log-out-01";
|
||||
import Tool02 from "./icons/tool-02";
|
||||
import ImagePlus from "./icons/image-plus";
|
||||
import LockUnlocked01 from "./icons/lock-unlocked-01";
|
||||
import PencilLine from "./icons/pencil-line";
|
||||
import Share07 from "./icons/share-07";
|
||||
import Copy01 from "./icons/copy-01";
|
||||
import Trash01 from "./icons/trash-01";
|
||||
import Share04 from "./icons/share-04";
|
||||
import FaceSmile from "./icons/face-smile";
|
||||
import Eye from "./icons/eye";
|
||||
import EyeOff from "./icons/eye-off";
|
||||
import Colors from "./icons/colors";
|
||||
import Database01 from "./icons/database-01";
|
||||
import Speedometer03 from "./icons/speedometer-03";
|
||||
import UserCircle from "./icons/user-circle";
|
||||
import DotsHorizontal from "./icons/dots-horizontal";
|
||||
import MessageCircle01 from "./icons/message-circle-01";
|
||||
import Feather from "./icons/feather";
|
||||
import List from "./icons/list";
|
||||
import VideoRecorder from "./icons/video-recorder";
|
||||
import Map01 from "./icons/map-01";
|
||||
import PlayCircle from "./icons/play-circle";
|
||||
import StopCircle from "./icons/stop-circle";
|
||||
import CheckVerified01 from "./icons/check-verified-01";
|
||||
import AlertOctagon from "./icons/alert-octagon";
|
||||
import AlertTriangle from "./icons/alert-triangle";
|
||||
import Key01 from "./icons/key-01";
|
||||
import Check from "./icons/check";
|
||||
import Bell01 from "./icons/bell-01";
|
||||
import QrCode02 from "./icons/qr-code-02";
|
||||
import PlusCircle from "./icons/plus-circle";
|
||||
import AtSign from "./icons/at-sign";
|
||||
import UserPlus01 from "./icons/user-plus-01";
|
||||
import UserX01 from "./icons/user-x-01";
|
||||
import Plus from "./icons/plus";
|
||||
import Bookmark from "./icons/bookmark";
|
||||
|
||||
export const GlobalIcon = createIcon({
|
||||
displayName: "global-icon",
|
||||
d: "M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10zm-2.29-2.333A17.9 17.9 0 0 1 8.027 13H4.062a8.008 8.008 0 0 0 5.648 6.667zM10.03 13c.151 2.439.848 4.73 1.97 6.752A15.905 15.905 0 0 0 13.97 13h-3.94zm9.908 0h-3.965a17.9 17.9 0 0 1-1.683 6.667A8.008 8.008 0 0 0 19.938 13zM4.062 11h3.965A17.9 17.9 0 0 1 9.71 4.333 8.008 8.008 0 0 0 4.062 11zm5.969 0h3.938A15.905 15.905 0 0 0 12 4.248 15.905 15.905 0 0 0 10.03 11zm4.259-6.667A17.9 17.9 0 0 1 15.973 11h3.965a8.008 8.008 0 0 0-5.648-6.667z",
|
||||
defaultProps,
|
||||
});
|
||||
const defaultProps: IconProps = { boxSize: 4 };
|
||||
|
||||
export const HomeIcon = createIcon({
|
||||
displayName: "HomeIcon",
|
||||
d: "M19 21H5a1 1 0 0 1-1-1v-9H1l10.327-9.388a1 1 0 0 1 1.346 0L23 11h-3v9a1 1 0 0 1-1 1zM6 19h12V9.157l-6-5.454-6 5.454V19z",
|
||||
defaultProps,
|
||||
});
|
||||
export const NotesIcon = StickerSquare;
|
||||
|
||||
export const FeedIcon = createIcon({
|
||||
displayName: "FeedIcon",
|
||||
d: "M16 18v2H5v-2h11zm5-7v2H3v-2h18zm-2-7v2H8V4h11z",
|
||||
defaultProps,
|
||||
});
|
||||
export const NoteFeedIcon = DistributeSpacingVertical;
|
||||
|
||||
export const MoreIcon = createIcon({
|
||||
displayName: "MoreIcon",
|
||||
d: "M4.5 10.5c-.825 0-1.5.675-1.5 1.5s.675 1.5 1.5 1.5S6 12.825 6 12s-.675-1.5-1.5-1.5zm15 0c-.825 0-1.5.675-1.5 1.5s.675 1.5 1.5 1.5S21 12.825 21 12s-.675-1.5-1.5-1.5zm-7.5 0c-.825 0-1.5.675-1.5 1.5s.675 1.5 1.5 1.5 1.5-.675 1.5-1.5-.675-1.5-1.5-1.5z",
|
||||
defaultProps,
|
||||
});
|
||||
export const MoreIcon = DotsHorizontal;
|
||||
|
||||
export const CodeIcon = createIcon({
|
||||
displayName: "CodeIcon",
|
||||
d: `M23 12l-7.071 7.071-1.414-1.414L20.172 12l-5.657-5.657 1.414-1.414L23 12zM3.828 12l5.657 5.657-1.414 1.414L1 12l7.071-7.071 1.414 1.414L3.828 12z`,
|
||||
defaultProps,
|
||||
});
|
||||
export const CodeIcon = Code01;
|
||||
|
||||
export const SettingsIcon = createIcon({
|
||||
displayName: "SettingsIcon",
|
||||
d: "M8.686 4l2.607-2.607a1 1 0 0 1 1.414 0L15.314 4H19a1 1 0 0 1 1 1v3.686l2.607 2.607a1 1 0 0 1 0 1.414L20 15.314V19a1 1 0 0 1-1 1h-3.686l-2.607 2.607a1 1 0 0 1-1.414 0L8.686 20H5a1 1 0 0 1-1-1v-3.686l-2.607-2.607a1 1 0 0 1 0-1.414L4 8.686V5a1 1 0 0 1 1-1h3.686zM6 6v3.515L3.515 12 6 14.485V18h3.515L12 20.485 14.485 18H18v-3.515L20.485 12 18 9.515V6h-3.515L12 3.515 9.515 6H6zm6 10a4 4 0 1 1 0-8 4 4 0 0 1 0 8zm0-2a2 2 0 1 0 0-4 2 2 0 0 0 0 4z",
|
||||
defaultProps,
|
||||
});
|
||||
export const SettingsIcon = Settings02;
|
||||
export const LogoutIcon = LogOut01;
|
||||
export const ProfileIcon = UserCircle;
|
||||
|
||||
export const LogoutIcon = createIcon({
|
||||
displayName: "LogoutIcon",
|
||||
d: "M4 18h2v2h12V4H6v2H4V3a1 1 0 0 1 1-1h14a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1v-3zm2-7h7v2H6v3l-5-4 5-4v3z",
|
||||
defaultProps,
|
||||
});
|
||||
export const CopyToClipboardIcon = Copy01;
|
||||
|
||||
export const ProfileIcon = createIcon({
|
||||
displayName: "ProfileIcon",
|
||||
d: "M4 22a8 8 0 1 1 16 0h-2a6 6 0 1 0-12 0H4zm8-9c-3.315 0-6-2.685-6-6s2.685-6 6-6 6 2.685 6 6-2.685 6-6 6zm0-2c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4z",
|
||||
defaultProps,
|
||||
});
|
||||
export const TrashIcon = Trash01;
|
||||
|
||||
export const ClipboardIcon = createIcon({
|
||||
displayName: "ClipboardIcon",
|
||||
d: "M7 4V2h10v2h3.007c.548 0 .993.445.993.993v16.014a.994.994 0 0 1-.993.993H3.993A.994.994 0 0 1 3 21.007V4.993C3 4.445 3.445 4 3.993 4H7zm0 2H5v14h14V6h-2v2H7V6zm2-2v2h6V4H9z",
|
||||
defaultProps,
|
||||
});
|
||||
export const AddIcon = Plus;
|
||||
|
||||
export const TrashIcon = createIcon({
|
||||
displayName: "TrashIcon",
|
||||
d: "M17 6h5v2h-2v13a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V8H2V6h5V3a1 1 0 0 1 1-1h8a1 1 0 0 1 1 1v3zm1 2H6v12h12V8zm-9 3h2v6H9v-6zm4 0h2v6h-2v-6zM9 4v2h6V4H9z",
|
||||
defaultProps,
|
||||
});
|
||||
export const ChevronDownIcon = ChevronDown;
|
||||
export const ChevronUpIcon = ChevronUp;
|
||||
export const ChevronLeftIcon = ChevronLeft;
|
||||
export const ChevronRightIcon = ChevronRight;
|
||||
|
||||
export const AddIcon = createIcon({
|
||||
displayName: "AddIcon",
|
||||
d: "M11 11V5h2v6h6v2h-6v6h-2v-6H5v-2z",
|
||||
defaultProps,
|
||||
});
|
||||
export const LightningIcon = Zap;
|
||||
export const RelayIcon = Server04;
|
||||
export const BroadcastEventIcon = Share07;
|
||||
|
||||
export const ArrowDownSIcon = createIcon({
|
||||
displayName: "ArrowDownSIcon",
|
||||
d: "M12 13.172l4.95-4.95 1.414 1.414L12 16 5.636 9.636 7.05 8.222z",
|
||||
defaultProps,
|
||||
});
|
||||
export const ExternalLinkIcon = Share04;
|
||||
|
||||
export const ArrowUpSIcon = createIcon({
|
||||
displayName: "ArrowUpSIcon",
|
||||
d: "M12 10.828l-4.95 4.95-1.414-1.414L12 8l6.364 6.364-1.414 1.414z",
|
||||
defaultProps,
|
||||
});
|
||||
export const SearchIcon = SearchMd;
|
||||
export const RepostIcon = Share07;
|
||||
|
||||
export const ArrowLeftSIcon = createIcon({
|
||||
displayName: "ArrowLeftSIcon",
|
||||
d: "M10.828 12l4.95 4.95-1.414 1.414L8 12l6.364-6.364 1.414 1.414z",
|
||||
defaultProps,
|
||||
});
|
||||
|
||||
export const ArrowRightSIcon = createIcon({
|
||||
displayName: "ArrowRightSIcon",
|
||||
d: "M13.172 12l-4.95-4.95 1.414-1.414L16 12l-6.364 6.364-1.414-1.414z",
|
||||
defaultProps,
|
||||
});
|
||||
|
||||
export const LinkItem = createIcon({
|
||||
displayName: "LinkItem",
|
||||
d: "M18.364 15.536L16.95 14.12l1.414-1.414a5 5 0 1 0-7.071-7.071L9.879 7.05 8.464 5.636 9.88 4.222a7 7 0 0 1 9.9 9.9l-1.415 1.414zm-2.828 2.828l-1.415 1.414a7 7 0 0 1-9.9-9.9l1.415-1.414L7.05 9.88l-1.414 1.414a5 5 0 1 0 7.071 7.071l1.414-1.414 1.415 1.414zm-.708-10.607l1.415 1.415-7.071 7.07-1.415-1.414 7.071-7.07z",
|
||||
defaultProps,
|
||||
});
|
||||
|
||||
export const LightningIcon = createIcon({
|
||||
displayName: "LightningIcon",
|
||||
d: "M13 10h7l-9 13v-9H4l9-13z",
|
||||
defaultProps: { ...defaultProps, color: "yellow.400" },
|
||||
});
|
||||
|
||||
export const RelayIcon = createIcon({
|
||||
displayName: "RelayIcon",
|
||||
d: "M11 14v-3h2v3h5a1 1 0 0 1 1 1v6a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1v-6a1 1 0 0 1 1-1h5zM2.51 8.837C3.835 4.864 7.584 2 12 2s8.166 2.864 9.49 6.837l-1.898.632a8.003 8.003 0 0 0-15.184 0l-1.897-.632zm3.796 1.265a6.003 6.003 0 0 1 11.388 0l-1.898.633a4.002 4.002 0 0 0-7.592 0l-1.898-.633z",
|
||||
defaultProps,
|
||||
});
|
||||
|
||||
export const ExternalLinkIcon = createIcon({
|
||||
displayName: "ExternalLinkIcon",
|
||||
d: "M10 6v2H5v11h11v-5h2v6a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V7a1 1 0 0 1 1-1h6zm11-3v8h-2V6.413l-7.793 7.794-1.414-1.414L17.585 5H13V3h8z",
|
||||
defaultProps,
|
||||
});
|
||||
|
||||
export const SearchIcon = createIcon({
|
||||
displayName: "SearchIcon",
|
||||
d: "M18.031 16.617l4.283 4.282-1.415 1.415-4.282-4.283A8.96 8.96 0 0 1 11 20c-4.968 0-9-4.032-9-9s4.032-9 9-9 9 4.032 9 9a8.96 8.96 0 0 1-1.969 5.617zm-2.006-.742A6.977 6.977 0 0 0 18 11c0-3.868-3.133-7-7-7-3.868 0-7 3.132-7 7 0 3.867 3.132 7 7 7a6.977 6.977 0 0 0 4.875-1.975l.15-.15z",
|
||||
defaultProps,
|
||||
});
|
||||
|
||||
export const RepostIcon = createIcon({
|
||||
displayName: "RepostIcon",
|
||||
d: "M13.12 17.023l-4.199-2.29a4 4 0 1 1 0-5.465l4.2-2.29a4 4 0 1 1 .959 1.755l-4.2 2.29a4.008 4.008 0 0 1 0 1.954l4.199 2.29a4 4 0 1 1-.959 1.755zM6 14a2 2 0 1 0 0-4 2 2 0 0 0 0 4zm11-6a2 2 0 1 0 0-4 2 2 0 0 0 0 4zm0 12a2 2 0 1 0 0-4 2 2 0 0 0 0 4z",
|
||||
defaultProps,
|
||||
});
|
||||
|
||||
export const ReplyIcon = createIcon({
|
||||
displayName: "ReplyIcon",
|
||||
d: "M11 20L1 12L11 4V9C16.5228 9 21 13.4772 21 19C21 19.2727 20.9891 19.5428 20.9677 19.81C19.5055 17.0364 16.6381 15.119 13.313 15.0053L13 15H10.9999L11 20ZM8.99986 13H10.9999L13.0341 13.0003L13.3814 13.0065C14.6657 13.0504 15.9053 13.3165 17.0568 13.7734C15.5898 12.0749 13.4204 11 11 11H9V8.16125L4.20156 12L8.99992 15.8387L8.99986 13Z",
|
||||
defaultProps,
|
||||
});
|
||||
export const ReplyIcon = MessageCircle01;
|
||||
|
||||
export const QuoteRepostIcon = createIcon({
|
||||
displayName: "QuoteRepostIcon",
|
||||
@ -140,17 +100,8 @@ export const QuoteRepostIcon = createIcon({
|
||||
defaultProps,
|
||||
});
|
||||
|
||||
export const VerifiedIcon = createIcon({
|
||||
displayName: "VerifiedIcon",
|
||||
d: "M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10zm-.997-6l7.07-7.071-1.414-1.414-5.656 5.657-2.829-2.829-1.414 1.414L11.003 16z",
|
||||
defaultProps,
|
||||
});
|
||||
|
||||
export const VerificationFailed = createIcon({
|
||||
displayName: "VerificationFailed",
|
||||
d: "M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10zm-1-7v2h2v-2h-2zm0-8v6h2V7h-2z",
|
||||
defaultProps,
|
||||
});
|
||||
export const VerifiedIcon = CheckVerified01;
|
||||
export const VerificationFailed = AlertOctagon;
|
||||
|
||||
export const VerificationMissing = createIcon({
|
||||
displayName: "VerificationFailed",
|
||||
@ -164,77 +115,22 @@ export const SpyIcon = createIcon({
|
||||
defaultProps,
|
||||
});
|
||||
|
||||
export const KeyIcon = createIcon({
|
||||
displayName: "KeyIcon",
|
||||
d: "M10.758 11.828l7.849-7.849 1.414 1.414-1.414 1.415 2.474 2.474-1.414 1.415-2.475-2.475-1.414 1.414 2.121 2.121-1.414 1.415-2.121-2.122-2.192 2.192a5.002 5.002 0 0 1-7.708 6.294 5 5 0 0 1 6.294-7.708zm-.637 6.293A3 3 0 1 0 5.88 13.88a3 3 0 0 0 4.242 4.242z",
|
||||
defaultProps,
|
||||
});
|
||||
export const KeyIcon = Key01;
|
||||
export const CheckIcon = Check;
|
||||
|
||||
export const CheckIcon = createIcon({
|
||||
displayName: "CheckIcon",
|
||||
d: "M10 15.172l9.192-9.193 1.415 1.414L10 18l-6.364-6.364 1.414-1.414z",
|
||||
defaultProps,
|
||||
});
|
||||
export const NotificationsIcon = Bell01;
|
||||
|
||||
export const NotificationIcon = createIcon({
|
||||
displayName: "NotificationIcon",
|
||||
d: "M5 18h14v-6.969C19 7.148 15.866 4 12 4s-7 3.148-7 7.031V18zm7-16c4.97 0 9 4.043 9 9.031V20H3v-8.969C3 6.043 7.03 2 12 2zM9.5 21h5a2.5 2.5 0 1 1-5 0z",
|
||||
defaultProps,
|
||||
});
|
||||
export const LikeIcon = ThumbsUp;
|
||||
export const DislikeIcon = ThumbsDown;
|
||||
|
||||
export const UndoIcon = createIcon({
|
||||
displayName: "UndoIcon",
|
||||
d: "M5.828 7l2.536 2.536L6.95 10.95 2 6l4.95-4.95 1.414 1.414L5.828 5H13a8 8 0 1 1 0 16H4v-2h9a6 6 0 1 0 0-12H5.828z",
|
||||
defaultProps,
|
||||
});
|
||||
export const QrCodeIcon = QrCode02;
|
||||
|
||||
export const LikeIcon = createIcon({
|
||||
displayName: "LikeIcon",
|
||||
d: "M14.6 8H21a2 2 0 0 1 2 2v2.104a2 2 0 0 1-.15.762l-3.095 7.515a1 1 0 0 1-.925.619H2a1 1 0 0 1-1-1V10a1 1 0 0 1 1-1h3.482a1 1 0 0 0 .817-.423L11.752.85a.5.5 0 0 1 .632-.159l1.814.907a2.5 2.5 0 0 1 1.305 2.853L14.6 8zM7 10.588V19h11.16L21 12.104V10h-6.4a2 2 0 0 1-1.938-2.493l.903-3.548a.5.5 0 0 0-.261-.571l-.661-.33-4.71 6.672c-.25.354-.57.644-.933.858zM5 11H3v8h2v-8z",
|
||||
defaultProps,
|
||||
});
|
||||
export const DirectMessagesIcon = Mail01;
|
||||
|
||||
export const DislikeIcon = createIcon({
|
||||
displayName: "DislikeIcon",
|
||||
d: "M9.4 16H3a2 2 0 0 1-2-2v-2.104a2 2 0 0 1 .15-.762L4.246 3.62A1 1 0 0 1 5.17 3H22a1 1 0 0 1 1 1v10a1 1 0 0 1-1 1h-3.482a1 1 0 0 0-.817.423l-5.453 7.726a.5.5 0 0 1-.632.159L9.802 22.4a2.5 2.5 0 0 1-1.305-2.853L9.4 16zm7.6-2.588V5H5.84L3 11.896V14h6.4a2 2 0 0 1 1.938 2.493l-.903 3.548a.5.5 0 0 0 .261.571l.661.33 4.71-6.672c.25-.354.57-.644.933-.858zM19 13h2V5h-2v8z",
|
||||
defaultProps,
|
||||
});
|
||||
export const UnlockIcon = LockUnlocked01;
|
||||
export const UploadImageIcon = ImagePlus;
|
||||
|
||||
export const QrCodeIcon = createIcon({
|
||||
displayName: "QrCodeIcon",
|
||||
d: "M16 17v-1h-3v-3h3v2h2v2h-1v2h-2v2h-2v-3h2v-1h1zm5 4h-4v-2h2v-2h2v4zM3 3h8v8H3V3zm2 2v4h4V5H5zm8-2h8v8h-8V3zm2 2v4h4V5h-4zM3 13h8v8H3v-8zm2 2v4h4v-4H5zm13-2h3v2h-3v-2zM6 6h2v2H6V6zm0 10h2v2H6v-2zM16 6h2v2h-2V6z",
|
||||
defaultProps,
|
||||
});
|
||||
|
||||
export const MessagesIcon = createIcon({
|
||||
displayName: "ChatIcon",
|
||||
d: "M3 3H21C21.5523 3 22 3.44772 22 4V20C22 20.5523 21.5523 21 21 21H3C2.44772 21 2 20.5523 2 20V4C2 3.44772 2.44772 3 3 3ZM20 7.23792L12.0718 14.338L4 7.21594V19H20V7.23792ZM4.51146 5L12.0619 11.662L19.501 5H4.51146Z",
|
||||
defaultProps,
|
||||
});
|
||||
|
||||
export const UnlockIcon = createIcon({
|
||||
displayName: "UnlockIcon",
|
||||
d: "M7 10h13a1 1 0 0 1 1 1v10a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V11a1 1 0 0 1 1-1h1V9a7 7 0 0 1 13.262-3.131l-1.789.894A5 5 0 0 0 7 9v1zm-2 2v8h14v-8H5zm5 3h4v2h-4v-2z",
|
||||
defaultProps,
|
||||
});
|
||||
|
||||
export const ImageIcon = createIcon({
|
||||
displayName: "ImageIcon",
|
||||
d: "M4.828 21l-.02.02-.021-.02H2.992A.993.993 0 0 1 2 20.007V3.993A1 1 0 0 1 2.992 3h18.016c.548 0 .992.445.992.993v16.014a1 1 0 0 1-.992.993H4.828zM20 15V5H4v14L14 9l6 6zm0 2.828l-6-6L6.828 19H20v-1.172zM8 11a2 2 0 1 1 0-4 2 2 0 0 1 0 4z",
|
||||
defaultProps,
|
||||
});
|
||||
|
||||
export const CameraIcon = createIcon({
|
||||
displayName: "CameraIcon",
|
||||
d: "M9.828 5l-2 2H4v12h16V7h-3.828l-2-2H9.828zM9 3h6l2 2h4a1 1 0 0 1 1 1v14a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V6a1 1 0 0 1 1-1h4l2-2zm3 15a5.5 5.5 0 1 1 0-11 5.5 5.5 0 0 1 0 11zm0-2a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7z",
|
||||
defaultProps,
|
||||
});
|
||||
|
||||
export const PlusCircleIcon = createIcon({
|
||||
displayName: "PlusCircleIcon",
|
||||
d: "M11 11V7h2v4h4v2h-4v4h-2v-4H7v-2h4zm1 11C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10zm0-2a8 8 0 1 0 0-16 8 8 0 0 0 0 16z",
|
||||
defaultProps,
|
||||
});
|
||||
export const PlusCircleIcon = PlusCircle;
|
||||
|
||||
export const GithubIcon = createIcon({
|
||||
displayName: "GithubIcon",
|
||||
@ -242,198 +138,78 @@ export const GithubIcon = createIcon({
|
||||
defaultProps,
|
||||
});
|
||||
|
||||
export const ToolsIcon = createIcon({
|
||||
displayName: "ToolsIcon",
|
||||
d: "M5.32894 3.27158C6.56203 2.8332 7.99181 3.10749 8.97878 4.09446C10.0997 5.21537 10.3014 6.90741 9.58382 8.23385L20.2925 18.9437L18.8783 20.3579L8.16933 9.64875C6.84277 10.3669 5.1502 10.1654 4.02903 9.04421C3.04178 8.05696 2.76761 6.62665 3.20652 5.39332L5.44325 7.63C6.02903 8.21578 6.97878 8.21578 7.56457 7.63C8.15035 7.04421 8.15035 6.09446 7.56457 5.50868L5.32894 3.27158ZM15.6963 5.15512L18.8783 3.38736L20.2925 4.80157L18.5247 7.98355L16.757 8.3371L14.6356 10.4584L13.2214 9.04421L15.3427 6.92289L15.6963 5.15512ZM8.97878 13.2868L10.393 14.7011L5.08969 20.0044C4.69917 20.3949 4.066 20.3949 3.67548 20.0044C3.31285 19.6417 3.28695 19.0699 3.59777 18.6774L3.67548 18.5902L8.97878 13.2868Z",
|
||||
defaultProps,
|
||||
});
|
||||
export const ToolsIcon = Tool02;
|
||||
|
||||
export const EditIcon = createIcon({
|
||||
displayName: "EditIcon",
|
||||
d: "M6.41421 15.89L16.5563 5.74786L15.1421 4.33365L5 14.4758V15.89H6.41421ZM7.24264 17.89H3V13.6474L14.435 2.21233C14.8256 1.8218 15.4587 1.8218 15.8492 2.21233L18.6777 5.04075C19.0682 5.43128 19.0682 6.06444 18.6777 6.45497L7.24264 17.89ZM3 19.89H21V21.89H3V19.89Z",
|
||||
defaultProps,
|
||||
});
|
||||
export const EditIcon = PencilLine;
|
||||
|
||||
export const WritingIcon = createIcon({
|
||||
displayName: "WritingIcon",
|
||||
d: "M6.93912 14.0327C6.7072 14.6562 6.51032 15.233 6.33421 15.8154C7.29345 15.1188 8.43544 14.6766 9.75193 14.512C12.2652 14.1979 14.4976 12.5384 15.6279 10.4535L14.1721 8.99878L15.5848 7.58407C15.9185 7.24993 16.2521 6.91603 16.5858 6.58237C17.0151 6.15301 17.5 5.35838 18.0129 4.21479C12.4197 5.08172 8.99484 8.50636 6.93912 14.0327ZM17 8.99728L18 9.99658C17 12.9966 14 15.9966 10 16.4966C7.33146 16.8301 5.66421 18.6635 4.99824 21.9966H3C4 15.9966 6 1.99658 21 1.99658C20.0009 4.99392 19.0018 6.99303 18.0027 7.99391C17.6662 8.33038 17.3331 8.66372 17 8.99728Z",
|
||||
defaultProps,
|
||||
});
|
||||
export const WritingIcon = Feather;
|
||||
|
||||
export const AtIcon = createIcon({
|
||||
displayName: "AtIcon",
|
||||
d: "M20 12C20 7.58172 16.4183 4 12 4C7.58172 4 4 7.58172 4 12C4 16.4183 7.58172 20 12 20C13.6418 20 15.1681 19.5054 16.4381 18.6571L17.5476 20.3214C15.9602 21.3818 14.0523 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12V13.5C22 15.433 20.433 17 18.5 17C17.2958 17 16.2336 16.3918 15.6038 15.4659C14.6942 16.4115 13.4158 17 12 17C9.23858 17 7 14.7614 7 12C7 9.23858 9.23858 7 12 7C13.1258 7 14.1647 7.37209 15.0005 8H17V13.5C17 14.3284 17.6716 15 18.5 15C19.3284 15 20 14.3284 20 13.5V12ZM12 9C10.3431 9 9 10.3431 9 12C9 13.6569 10.3431 15 12 15C13.6569 15 15 13.6569 15 12C15 10.3431 13.6569 9 12 9Z",
|
||||
defaultProps,
|
||||
});
|
||||
export const AtIcon = AtSign;
|
||||
|
||||
export const FollowingIcon = createIcon({
|
||||
displayName: "FollowingIcon",
|
||||
d: "M14 14.252V16.3414C13.3744 16.1203 12.7013 16 12 16C8.68629 16 6 18.6863 6 22H4C4 17.5817 7.58172 14 12 14C12.6906 14 13.3608 14.0875 14 14.252ZM12 13C8.685 13 6 10.315 6 7C6 3.685 8.685 1 12 1C15.315 1 18 3.685 18 7C18 10.315 15.315 13 12 13ZM12 11C14.21 11 16 9.21 16 7C16 4.79 14.21 3 12 3C9.79 3 8 4.79 8 7C8 9.21 9.79 11 12 11ZM17.7929 19.9142L21.3284 16.3787L22.7426 17.7929L17.7929 22.7426L14.2574 19.2071L15.6716 17.7929L17.7929 19.9142Z",
|
||||
defaultProps,
|
||||
});
|
||||
export const FollowIcon = UserPlus01;
|
||||
export const UnfollowIcon = UserX01;
|
||||
|
||||
export const FollowIcon = createIcon({
|
||||
displayName: "FollowIcon",
|
||||
d: "M14 14.252V16.3414C13.3744 16.1203 12.7013 16 12 16C8.68629 16 6 18.6863 6 22H4C4 17.5817 7.58172 14 12 14C12.6906 14 13.3608 14.0875 14 14.252ZM12 13C8.685 13 6 10.315 6 7C6 3.685 8.685 1 12 1C15.315 1 18 3.685 18 7C18 10.315 15.315 13 12 13ZM12 11C14.21 11 16 9.21 16 7C16 4.79 14.21 3 12 3C9.79 3 8 4.79 8 7C8 9.21 9.79 11 12 11ZM18 17V14H20V17H23V19H20V22H18V19H15V17H18Z",
|
||||
defaultProps,
|
||||
});
|
||||
export const ListsIcon = List;
|
||||
export const LiveStreamIcon = VideoRecorder;
|
||||
|
||||
export const UnfollowIcon = createIcon({
|
||||
displayName: "UnfollowIcon",
|
||||
d: "M14 14.252V16.3414C13.3744 16.1203 12.7013 16 12 16C8.68629 16 6 18.6863 6 22H4C4 17.5817 7.58172 14 12 14C12.6906 14 13.3608 14.0875 14 14.252ZM12 13C8.685 13 6 10.315 6 7C6 3.685 8.685 1 12 1C15.315 1 18 3.685 18 7C18 10.315 15.315 13 12 13ZM12 11C14.21 11 16 9.21 16 7C16 4.79 14.21 3 12 3C9.79 3 8 4.79 8 7C8 9.21 9.79 11 12 11ZM19 17.5858L21.1213 15.4645L22.5355 16.8787L20.4142 19L22.5355 21.1213L21.1213 22.5355L19 20.4142L16.8787 22.5355L15.4645 21.1213L17.5858 19L15.4645 16.8787L16.8787 15.4645L19 17.5858Z",
|
||||
defaultProps,
|
||||
});
|
||||
export const ImageGridTimelineIcon = Grid01;
|
||||
|
||||
export const ListIcon = createIcon({
|
||||
displayName: "ListIcon",
|
||||
d: "M8 4H21V6H8V4ZM3 3.5H6V6.5H3V3.5ZM3 10.5H6V13.5H3V10.5ZM3 17.5H6V20.5H3V17.5ZM8 11H21V13H8V11ZM8 18H21V20H8V18Z",
|
||||
defaultProps,
|
||||
});
|
||||
export const TimelineHealthIcon = Microscope;
|
||||
|
||||
export const LiveStreamIcon = createIcon({
|
||||
displayName: "LiveStreamIcon",
|
||||
d: "M16 4C16.5523 4 17 4.44772 17 5V9.2L22.2133 5.55071C22.4395 5.39235 22.7513 5.44737 22.9096 5.6736C22.9684 5.75764 23 5.85774 23 5.96033V18.0397C23 18.3158 22.7761 18.5397 22.5 18.5397C22.3974 18.5397 22.2973 18.5081 22.2133 18.4493L17 14.8V19C17 19.5523 16.5523 20 16 20H2C1.44772 20 1 19.5523 1 19V5C1 4.44772 1.44772 4 2 4H16ZM15 6H3V18H15V6ZM7.4 8.82867C7.47607 8.82867 7.55057 8.85036 7.61475 8.8912L11.9697 11.6625C12.1561 11.7811 12.211 12.0284 12.0924 12.2148C12.061 12.2641 12.0191 12.306 11.9697 12.3375L7.61475 15.1088C7.42837 15.2274 7.18114 15.1725 7.06254 14.9861C7.02169 14.9219 7 14.8474 7 14.7713V9.22867C7 9.00776 7.17909 8.82867 7.4 8.82867ZM21 8.84131L17 11.641V12.359L21 15.1587V8.84131Z",
|
||||
defaultProps,
|
||||
});
|
||||
|
||||
export const ImageGridTimelineIcon = createIcon({
|
||||
displayName: "ImageGridTimelineIcon",
|
||||
d: "M21 3C21.5523 3 22 3.44772 22 4V20C22 20.5523 21.5523 21 21 21H3C2.44772 21 2 20.5523 2 20V4C2 3.44772 2.44772 3 3 3H21ZM11 13H4V19H11V13ZM20 13H13V19H20V13ZM11 5H4V11H11V5ZM20 5H13V11H20V5Z",
|
||||
defaultProps,
|
||||
});
|
||||
|
||||
export const TextTimelineIcon = createIcon({
|
||||
displayName: "TextTimelineIcon",
|
||||
d: "M8 4H21V6H8V4ZM4.5 6.5C3.67157 6.5 3 5.82843 3 5C3 4.17157 3.67157 3.5 4.5 3.5C5.32843 3.5 6 4.17157 6 5C6 5.82843 5.32843 6.5 4.5 6.5ZM4.5 13.5C3.67157 13.5 3 12.8284 3 12C3 11.1716 3.67157 10.5 4.5 10.5C5.32843 10.5 6 11.1716 6 12C6 12.8284 5.32843 13.5 4.5 13.5ZM4.5 20.4C3.67157 20.4 3 19.7284 3 18.9C3 18.0716 3.67157 17.4 4.5 17.4C5.32843 17.4 6 18.0716 6 18.9C6 19.7284 5.32843 20.4 4.5 20.4ZM8 11H21V13H8V11ZM8 18H21V20H8V18Z",
|
||||
defaultProps,
|
||||
});
|
||||
|
||||
export const TimelineHealthIcon = createIcon({
|
||||
displayName: "TimelineHealthIcon",
|
||||
d: "M13.1962 2.26791L16.4462 7.89708C16.7223 8.37537 16.5584 8.98696 16.0801 9.2631L14.7806 10.0122L15.7811 11.7452L14.049 12.7452L13.0485 11.0122L11.75 11.7631C11.2717 12.0392 10.6601 11.8754 10.384 11.3971L8.5462 8.2146C6.49383 8.8373 5 10.7442 5 13C5 13.6253 5.1148 14.2238 5.32447 14.7756C6.0992 14.284 7.01643 14 8 14C9.68408 14 11.1737 14.8326 12.0797 16.1086L19.7681 11.6704L20.7681 13.4024L12.8898 17.9509C12.962 18.2892 13 18.6401 13 19C13 19.3427 12.9655 19.6773 12.8999 20.0006L21 20V22L4.00054 22.0012C3.3723 21.1653 3 20.1261 3 19C3 17.9927 3.29782 17.0551 3.81021 16.2702C3.29276 15.2948 3 14.1816 3 13C3 10.0047 4.88131 7.44875 7.52677 6.44942L7.13397 5.76791C6.58169 4.81133 6.90944 3.58815 7.86603 3.03586L10.4641 1.53586C11.4207 0.983577 12.6439 1.31133 13.1962 2.26791ZM8 16C6.34315 16 5 17.3431 5 19C5 19.3506 5.06014 19.6871 5.17067 19.9999H10.8293C10.9399 19.6871 11 19.3506 11 19C11 17.3431 9.65685 16 8 16ZM11.4641 3.26791L8.86602 4.76791L11.616 9.53105L14.2141 8.03105L11.4641 3.26791Z",
|
||||
defaultProps,
|
||||
});
|
||||
|
||||
export const MapIcon = createIcon({
|
||||
displayName: "MapIcon",
|
||||
d: "M4 6.14286V18.9669L9.06476 16.7963L15.0648 19.7963L20 17.6812V4.85714L21.303 4.2987C21.5569 4.18992 21.8508 4.30749 21.9596 4.56131C21.9862 4.62355 22 4.69056 22 4.75827V19L15 22L9 19L2.69696 21.7013C2.44314 21.8101 2.14921 21.6925 2.04043 21.4387C2.01375 21.3765 2 21.3094 2 21.2417V7L4 6.14286ZM16.2426 11.2426L12 15.4853L7.75736 11.2426C5.41421 8.89949 5.41421 5.10051 7.75736 2.75736C10.1005 0.414214 13.8995 0.414214 16.2426 2.75736C18.5858 5.10051 18.5858 8.89949 16.2426 11.2426ZM12 12.6569L14.8284 9.82843C16.3905 8.26633 16.3905 5.73367 14.8284 4.17157C13.2663 2.60948 10.7337 2.60948 9.17157 4.17157C7.60948 5.73367 7.60948 8.26633 9.17157 9.82843L12 12.6569Z",
|
||||
defaultProps,
|
||||
});
|
||||
export const MapIcon = Map01;
|
||||
|
||||
export const StarEmptyIcon = createIcon({
|
||||
displayName: "StarEmptyIcon",
|
||||
d: "M12.0006 18.26L4.94715 22.2082L6.52248 14.2799L0.587891 8.7918L8.61493 7.84006L12.0006 0.5L15.3862 7.84006L23.4132 8.7918L17.4787 14.2799L19.054 22.2082L12.0006 18.26ZM12.0006 15.968L16.2473 18.3451L15.2988 13.5717L18.8719 10.2674L14.039 9.69434L12.0006 5.27502L9.96214 9.69434L5.12921 10.2674L8.70231 13.5717L7.75383 18.3451L12.0006 15.968Z",
|
||||
defaultProps,
|
||||
});
|
||||
|
||||
export const StarFullIcon = createIcon({
|
||||
displayName: "StarFullIcon",
|
||||
d: "M12.0006 18.26L4.94715 22.2082L6.52248 14.2799L0.587891 8.7918L8.61493 7.84006L12.0006 0.5L15.3862 7.84006L23.4132 8.7918L17.4787 14.2799L19.054 22.2082L12.0006 18.26Z",
|
||||
defaultProps,
|
||||
});
|
||||
|
||||
export const StarHalfIcon = createIcon({
|
||||
displayName: "StarHalfIcon",
|
||||
d: "M12.0006 15.968L16.2473 18.3451L15.2988 13.5717L18.8719 10.2674L14.039 9.69434L12.0006 5.27502V15.968ZM12.0006 18.26L4.94715 22.2082L6.52248 14.2799L0.587891 8.7918L8.61493 7.84006L12.0006 0.5L15.3862 7.84006L23.4132 8.7918L17.4787 14.2799L19.054 22.2082L12.0006 18.26Z",
|
||||
defaultProps,
|
||||
});
|
||||
|
||||
export const ErrorIcon = createIcon({
|
||||
displayName: "ErrorIcon",
|
||||
d: "M12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22ZM12 20C16.4183 20 20 16.4183 20 12C20 7.58172 16.4183 4 12 4C7.58172 4 4 7.58172 4 12C4 16.4183 7.58172 20 12 20ZM11 15H13V17H11V15ZM11 7H13V13H11V7Z",
|
||||
defaultProps,
|
||||
});
|
||||
export const ErrorIcon = AlertTriangle;
|
||||
|
||||
export const BookmarkIcon = createIcon({
|
||||
displayName: "BookmarkIcon",
|
||||
d: "M5 2H19C19.5523 2 20 2.44772 20 3V22.1433C20 22.4194 19.7761 22.6434 19.5 22.6434C19.4061 22.6434 19.314 22.6168 19.2344 22.5669L12 18.0313L4.76559 22.5669C4.53163 22.7136 4.22306 22.6429 4.07637 22.4089C4.02647 22.3293 4 22.2373 4 22.1433V3C4 2.44772 4.44772 2 5 2ZM18 4H6V19.4324L12 15.6707L18 19.4324V4Z",
|
||||
defaultProps,
|
||||
});
|
||||
export const BookmarkIcon = Bookmark;
|
||||
export const BookmarkedIcon = BookmarkCheck;
|
||||
|
||||
export const BookmarkedIcon = createIcon({
|
||||
displayName: "BookmaredkIcon",
|
||||
d: "M4 2H20C20.5523 2 21 2.44772 21 3V22.2763C21 22.5525 20.7761 22.7764 20.5 22.7764C20.4298 22.7764 20.3604 22.7615 20.2963 22.7329L12 19.0313L3.70373 22.7329C3.45155 22.8455 3.15591 22.7322 3.04339 22.4801C3.01478 22.4159 3 22.3465 3 22.2763V3C3 2.44772 3.44772 2 4 2ZM12 13.5L14.9389 15.0451L14.3776 11.7725L16.7553 9.45492L13.4695 8.97746L12 6L10.5305 8.97746L7.24472 9.45492L9.62236 11.7725L9.06107 15.0451L12 13.5Z",
|
||||
defaultProps,
|
||||
});
|
||||
|
||||
export const PlayIcon = createIcon({
|
||||
displayName: "PlayIcon",
|
||||
d: "M16.3944 11.9998L10 7.73686V16.2628L16.3944 11.9998ZM19.376 12.4158L8.77735 19.4816C8.54759 19.6348 8.23715 19.5727 8.08397 19.3429C8.02922 19.2608 8 19.1643 8 19.0656V4.93408C8 4.65794 8.22386 4.43408 8.5 4.43408C8.59871 4.43408 8.69522 4.4633 8.77735 4.51806L19.376 11.5838C19.6057 11.737 19.6678 12.0474 19.5146 12.2772C19.478 12.3321 19.4309 12.3792 19.376 12.4158Z",
|
||||
defaultProps,
|
||||
});
|
||||
|
||||
export const StopIcon = createIcon({
|
||||
displayName: "StopIcon",
|
||||
d: "M7 7V17H17V7H7ZM6 5H18C18.5523 5 19 5.44772 19 6V18C19 18.5523 18.5523 19 18 19H6C5.44772 19 5 18.5523 5 18V6C5 5.44772 5.44772 5 6 5Z",
|
||||
defaultProps,
|
||||
});
|
||||
export const V4VStreamIcon = PlayCircle;
|
||||
export const V4VStopIcon = StopCircle;
|
||||
|
||||
/** @deprecated */
|
||||
export const AddReactionIcon = createIcon({
|
||||
displayName: "AddReactionIcon",
|
||||
d: "M19.0001 13.9999V16.9999H22.0001V18.9999H18.9991L19.0001 21.9999H17.0001L16.9991 18.9999H14.0001V16.9999H17.0001V13.9999H19.0001ZM20.2426 4.75736C22.505 7.0244 22.5829 10.636 20.4795 12.992L19.06 11.574C20.3901 10.0499 20.3201 7.65987 18.827 6.1701C17.3244 4.67092 14.9076 4.60701 13.337 6.01688L12.0019 7.21524L10.6661 6.01781C9.09098 4.60597 6.67506 4.66808 5.17157 6.17157C3.68183 7.66131 3.60704 10.0473 4.97993 11.6232L13.412 20.069L11.9999 21.485L3.52138 12.993C1.41705 10.637 1.49571 7.01901 3.75736 4.75736C6.02157 2.49315 9.64519 2.41687 12.001 4.52853C14.35 2.42 17.98 2.49 20.2426 4.75736Z",
|
||||
defaultProps,
|
||||
});
|
||||
|
||||
export const EmojiIcon = createIcon({
|
||||
displayName: "EmojiIcon",
|
||||
d: "M12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22ZM12 20C16.4183 20 20 16.4183 20 12C20 7.58172 16.4183 4 12 4C7.58172 4 4 7.58172 4 12C4 16.4183 7.58172 20 12 20ZM7 12H9C9 13.6569 10.3431 15 12 15C13.6569 15 15 13.6569 15 12H17C17 14.7614 14.7614 17 12 17C9.23858 17 7 14.7614 7 12Z",
|
||||
defaultProps,
|
||||
});
|
||||
export const EmojiPacksIcon = FaceSmile;
|
||||
export const GoalIcon = Target04;
|
||||
export const BadgeIcon = Award01;
|
||||
|
||||
export const GoalIcon = createIcon({
|
||||
displayName: "GoalIcon",
|
||||
d: "M5 3V19H21V21H3V3H5ZM20.2929 6.29289L21.7071 7.70711L16 13.4142L13 10.415L8.70711 14.7071L7.29289 13.2929L13 7.58579L16 10.585L20.2929 6.29289Z",
|
||||
defaultProps,
|
||||
});
|
||||
export const DrawerIcon = LayoutRight;
|
||||
|
||||
export const BadgeIcon = createIcon({
|
||||
displayName: "BadgeIcon",
|
||||
d: "M17 15.2454V22.1169C17 22.393 16.7761 22.617 16.5 22.617C16.4094 22.617 16.3205 22.5923 16.2428 22.5457L12 20L7.75725 22.5457C7.52046 22.6877 7.21333 22.6109 7.07125 22.3742C7.02463 22.2964 7 22.2075 7 22.1169V15.2454C5.17107 13.7793 4 11.5264 4 9C4 4.58172 7.58172 1 12 1C16.4183 1 20 4.58172 20 9C20 11.5264 18.8289 13.7793 17 15.2454ZM9 16.4185V19.4676L12 17.6676L15 19.4676V16.4185C14.0736 16.7935 13.0609 17 12 17C10.9391 17 9.92643 16.7935 9 16.4185ZM12 15C15.3137 15 18 12.3137 18 9C18 5.68629 15.3137 3 12 3C8.68629 3 6 5.68629 6 9C6 12.3137 8.68629 15 12 15Z",
|
||||
defaultProps,
|
||||
});
|
||||
export const UnmuteIcon = Eye;
|
||||
export const MuteIcon = EyeOff;
|
||||
|
||||
export const DrawerIcon = createIcon({
|
||||
displayName: "DrawerIcon",
|
||||
d: "M3 3H21C21.5523 3 22 3.44772 22 4V20C22 20.5523 21.5523 21 21 21H3C2.44772 21 2 20.5523 2 20V4C2 3.44772 2.44772 3 3 3ZM8 5H4V19H8V5ZM10 5V19H20V5H10Z",
|
||||
defaultProps,
|
||||
});
|
||||
|
||||
export const UnmuteIcon = createIcon({
|
||||
displayName: "UnmuteIcon",
|
||||
d: "M12.0003 3C17.3924 3 21.8784 6.87976 22.8189 12C21.8784 17.1202 17.3924 21 12.0003 21C6.60812 21 2.12215 17.1202 1.18164 12C2.12215 6.87976 6.60812 3 12.0003 3ZM12.0003 19C16.2359 19 19.8603 16.052 20.7777 12C19.8603 7.94803 16.2359 5 12.0003 5C7.7646 5 4.14022 7.94803 3.22278 12C4.14022 16.052 7.7646 19 12.0003 19ZM12.0003 16.5C9.51498 16.5 7.50026 14.4853 7.50026 12C7.50026 9.51472 9.51498 7.5 12.0003 7.5C14.4855 7.5 16.5003 9.51472 16.5003 12C16.5003 14.4853 14.4855 16.5 12.0003 16.5ZM12.0003 14.5C13.381 14.5 14.5003 13.3807 14.5003 12C14.5003 10.6193 13.381 9.5 12.0003 9.5C10.6196 9.5 9.50026 10.6193 9.50026 12C9.50026 13.3807 10.6196 14.5 12.0003 14.5Z",
|
||||
defaultProps,
|
||||
});
|
||||
|
||||
export const MuteIcon = createIcon({
|
||||
displayName: "MuteIcon",
|
||||
d: "M17.8827 19.2968C16.1814 20.3755 14.1638 21.0002 12.0003 21.0002C6.60812 21.0002 2.12215 17.1204 1.18164 12.0002C1.61832 9.62282 2.81932 7.5129 4.52047 5.93457L1.39366 2.80777L2.80788 1.39355L22.6069 21.1925L21.1927 22.6068L17.8827 19.2968ZM5.9356 7.3497C4.60673 8.56015 3.6378 10.1672 3.22278 12.0002C4.14022 16.0521 7.7646 19.0002 12.0003 19.0002C13.5997 19.0002 15.112 18.5798 16.4243 17.8384L14.396 15.8101C13.7023 16.2472 12.8808 16.5002 12.0003 16.5002C9.51498 16.5002 7.50026 14.4854 7.50026 12.0002C7.50026 11.1196 7.75317 10.2981 8.19031 9.60442L5.9356 7.3497ZM12.9139 14.328L9.67246 11.0866C9.5613 11.3696 9.50026 11.6777 9.50026 12.0002C9.50026 13.3809 10.6196 14.5002 12.0003 14.5002C12.3227 14.5002 12.6309 14.4391 12.9139 14.328ZM20.8068 16.5925L19.376 15.1617C20.0319 14.2268 20.5154 13.1586 20.7777 12.0002C19.8603 7.94818 16.2359 5.00016 12.0003 5.00016C11.1544 5.00016 10.3329 5.11773 9.55249 5.33818L7.97446 3.76015C9.22127 3.26959 10.5793 3.00016 12.0003 3.00016C17.3924 3.00016 21.8784 6.87992 22.8189 12.0002C22.5067 13.6998 21.8038 15.2628 20.8068 16.5925ZM11.7229 7.50857C11.8146 7.50299 11.9071 7.50016 12.0003 7.50016C14.4855 7.50016 16.5003 9.51488 16.5003 12.0002C16.5003 12.0933 16.4974 12.1858 16.4919 12.2775L11.7229 7.50857Z",
|
||||
defaultProps,
|
||||
});
|
||||
|
||||
export const AppearanceIcon = createIcon({
|
||||
displayName: "AppearanceIcon",
|
||||
d: "M12 2C17.5222 2 22 5.97778 22 10.8889C22 13.9556 19.5111 16.4444 16.4444 16.4444H14.4778C13.5556 16.4444 12.8111 17.1889 12.8111 18.1111C12.8111 18.5333 12.9778 18.9222 13.2333 19.2111C13.5 19.5111 13.6667 19.9 13.6667 20.3333C13.6667 21.2556 12.9 22 12 22C6.47778 22 2 17.5222 2 12C2 6.47778 6.47778 2 12 2ZM10.8111 18.1111C10.8111 16.0843 12.451 14.4444 14.4778 14.4444H16.4444C18.4065 14.4444 20 12.851 20 10.8889C20 7.1392 16.4677 4 12 4C7.58235 4 4 7.58235 4 12C4 16.19 7.2226 19.6285 11.324 19.9718C10.9948 19.4168 10.8111 18.7761 10.8111 18.1111ZM7.5 12C6.67157 12 6 11.3284 6 10.5C6 9.67157 6.67157 9 7.5 9C8.32843 9 9 9.67157 9 10.5C9 11.3284 8.32843 12 7.5 12ZM16.5 12C15.6716 12 15 11.3284 15 10.5C15 9.67157 15.6716 9 16.5 9C17.3284 9 18 9.67157 18 10.5C18 11.3284 17.3284 12 16.5 12ZM12 9C11.1716 9 10.5 8.32843 10.5 7.5C10.5 6.67157 11.1716 6 12 6C12.8284 6 13.5 6.67157 13.5 7.5C13.5 8.32843 12.8284 9 12 9Z",
|
||||
defaultProps,
|
||||
});
|
||||
|
||||
export const DatabaseIcon = createIcon({
|
||||
displayName: "DatabaseIcon",
|
||||
d: "M5 12.5C5 12.8134 5.46101 13.3584 6.53047 13.8931C7.91405 14.5849 9.87677 15 12 15C14.1232 15 16.0859 14.5849 17.4695 13.8931C18.539 13.3584 19 12.8134 19 12.5V10.3287C17.35 11.3482 14.8273 12 12 12C9.17273 12 6.64996 11.3482 5 10.3287V12.5ZM19 15.3287C17.35 16.3482 14.8273 17 12 17C9.17273 17 6.64996 16.3482 5 15.3287V17.5C5 17.8134 5.46101 18.3584 6.53047 18.8931C7.91405 19.5849 9.87677 20 12 20C14.1232 20 16.0859 19.5849 17.4695 18.8931C18.539 18.3584 19 17.8134 19 17.5V15.3287ZM3 17.5V7.5C3 5.01472 7.02944 3 12 3C16.9706 3 21 5.01472 21 7.5V17.5C21 19.9853 16.9706 22 12 22C7.02944 22 3 19.9853 3 17.5ZM12 10C14.1232 10 16.0859 9.58492 17.4695 8.89313C18.539 8.3584 19 7.81342 19 7.5C19 7.18658 18.539 6.6416 17.4695 6.10687C16.0859 5.41508 14.1232 5 12 5C9.87677 5 7.91405 5.41508 6.53047 6.10687C5.46101 6.6416 5 7.18658 5 7.5C5 7.81342 5.46101 8.3584 6.53047 8.89313C7.91405 9.58492 9.87677 10 12 10Z",
|
||||
defaultProps,
|
||||
});
|
||||
|
||||
export const PerformanceIcon = createIcon({
|
||||
displayName: "PerformanceIcon",
|
||||
d: "M20 13C20 15.2091 19.1046 17.2091 17.6569 18.6569L19.0711 20.0711C20.8807 18.2614 22 15.7614 22 13 22 7.47715 17.5228 3 12 3 6.47715 3 2 7.47715 2 13 2 15.7614 3.11929 18.2614 4.92893 20.0711L6.34315 18.6569C4.89543 17.2091 4 15.2091 4 13 4 8.58172 7.58172 5 12 5 16.4183 5 20 8.58172 20 13ZM15.293 8.29297 10.793 12.793 12.2072 14.2072 16.7072 9.70718 15.293 8.29297Z",
|
||||
defaultProps,
|
||||
});
|
||||
export const AppearanceIcon = Colors;
|
||||
export const DatabaseIcon = Database01;
|
||||
export const PerformanceIcon = Speedometer03;
|
||||
|
||||
/** @deprecated */
|
||||
export const CommunityIcon = createIcon({
|
||||
displayName: "CommunityIcon",
|
||||
d: "M9.55 11.5C8.30736 11.5 7.3 10.4926 7.3 9.25C7.3 8.00736 8.30736 7 9.55 7C10.7926 7 11.8 8.00736 11.8 9.25C11.8 10.4926 10.7926 11.5 9.55 11.5ZM10 19.748V16.4C10 15.9116 10.1442 15.4627 10.4041 15.0624C10.1087 15.0213 9.80681 15 9.5 15C7.93201 15 6.49369 15.5552 5.37091 16.4797C6.44909 18.0721 8.08593 19.2553 10 19.748ZM4.45286 14.66C5.86432 13.6168 7.61013 13 9.5 13C10.5435 13 11.5431 13.188 12.4667 13.5321C13.3447 13.1888 14.3924 13 15.5 13C17.1597 13 18.6849 13.4239 19.706 14.1563C19.8976 13.4703 20 12.7471 20 12C20 7.58172 16.4183 4 12 4C7.58172 4 4 7.58172 4 12C4 12.9325 4.15956 13.8278 4.45286 14.66ZM18.8794 16.0859C18.4862 15.5526 17.1708 15 15.5 15C13.4939 15 12 15.7967 12 16.4V20C14.9255 20 17.4843 18.4296 18.8794 16.0859ZM12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22ZM15.5 12.5C14.3954 12.5 13.5 11.6046 13.5 10.5C13.5 9.39543 14.3954 8.5 15.5 8.5C16.6046 8.5 17.5 9.39543 17.5 10.5C17.5 11.6046 16.6046 12.5 15.5 12.5Z",
|
||||
defaultProps,
|
||||
});
|
||||
|
||||
/** @deprecated */
|
||||
export const GhostIcon = createIcon({
|
||||
displayName: "GhostIcon",
|
||||
d: "M12 2C16.9706 2 21 6.02944 21 11V18.5C21 20.433 19.433 22 17.5 22C16.3001 22 15.2413 21.3962 14.6107 20.476C14.0976 21.3857 13.1205 22 12 22C10.8795 22 9.9024 21.3857 9.38728 20.4754C8.75869 21.3962 7.69985 22 6.5 22C4.63144 22 3.10487 20.5357 3.00518 18.692L3 18.5V11C3 6.02944 7.02944 2 12 2ZM12 4C8.21455 4 5.1309 7.00478 5.00406 10.7593L5 11L4.99927 18.4461L5.00226 18.584C5.04504 19.3751 5.70251 20 6.5 20C6.95179 20 7.36652 19.8007 7.64704 19.4648L7.73545 19.3478C8.57033 18.1248 10.3985 18.2016 11.1279 19.4904C11.3053 19.8038 11.6345 20 12 20C12.3651 20 12.6933 19.8044 12.8687 19.4934C13.5692 18.2516 15.2898 18.1317 16.1636 19.2151L16.2606 19.3455C16.5401 19.7534 16.9976 20 17.5 20C18.2797 20 18.9204 19.4051 18.9931 18.6445L19 18.5V11C19 7.13401 15.866 4 12 4ZM12 12C13.1046 12 14 13.1193 14 14.5C14 15.8807 13.1046 17 12 17C10.8954 17 10 15.8807 10 14.5C10 13.1193 10.8954 12 12 12ZM9.5 8C10.3284 8 11 8.67157 11 9.5C11 10.3284 10.3284 11 9.5 11C8.67157 11 8 10.3284 8 9.5C8 8.67157 8.67157 8 9.5 8ZM14.5 8C15.3284 8 16 8.67157 16 9.5C16 10.3284 15.3284 11 14.5 11C13.6716 11 13 10.3284 13 9.5C13 8.67157 13.6716 8 14.5 8Z",
|
||||
|
12
src/components/icons/ZoomOut.tsx
Normal file
12
src/components/icons/ZoomOut.tsx
Normal file
@ -0,0 +1,12 @@
|
||||
import { createIcon } from "@chakra-ui/icons";
|
||||
|
||||
const UpDownIcon = createIcon({
|
||||
displayName: "UpDownIcon",
|
||||
viewBox: "0 0 200 200",
|
||||
path: [
|
||||
<path fill="currentColor" d="M 100, 100 m -75, 0 a 75,75 0 1,0 150,0 a 75,75 0 1,0 -150,0" />,
|
||||
<path fill="currentColor" d="M 100, 100 m -75, 0 a 75,75 0 1,0 150,0 a 75,75 0 1,0 -150,0" />,
|
||||
],
|
||||
});
|
||||
|
||||
export default UpDownIcon;
|
19
src/components/icons/activity-heart.tsx
Normal file
19
src/components/icons/activity-heart.tsx
Normal file
@ -0,0 +1,19 @@
|
||||
import { createIcon } from "@chakra-ui/icons";
|
||||
|
||||
const ActivityHeart = createIcon({
|
||||
displayName: "ActivityHeart",
|
||||
viewBox: "0 0 24 24",
|
||||
path: [
|
||||
<path
|
||||
d="M15.5 11.5H14.5L13 14.5L11 8.5L9.5 11.5H8.5M11.9932 5.13581C9.9938 2.7984 6.65975 2.16964 4.15469 4.31001C1.64964 6.45038 1.29697 10.029 3.2642 12.5604C4.75009 14.4724 8.97129 18.311 10.948 20.0749C11.3114 20.3991 11.4931 20.5613 11.7058 20.6251C11.8905 20.6805 12.0958 20.6805 12.2805 20.6251C12.4932 20.5613 12.6749 20.3991 13.0383 20.0749C15.015 18.311 19.2362 14.4724 20.7221 12.5604C22.6893 10.029 22.3797 6.42787 19.8316 4.31001C17.2835 2.19216 13.9925 2.7984 11.9932 5.13581Z"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
],
|
||||
defaultProps: { boxSize: 4 },
|
||||
});
|
||||
|
||||
export default ActivityHeart;
|
19
src/components/icons/activity.tsx
Normal file
19
src/components/icons/activity.tsx
Normal file
@ -0,0 +1,19 @@
|
||||
import { createIcon } from "@chakra-ui/icons";
|
||||
|
||||
const Activity = createIcon({
|
||||
displayName: "Activity",
|
||||
viewBox: "0 0 24 24",
|
||||
path: [
|
||||
<path
|
||||
d="M22 12H18L15 21L9 3L6 12H2"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
],
|
||||
defaultProps: { boxSize: 4 },
|
||||
});
|
||||
|
||||
export default Activity;
|
19
src/components/icons/airplay.tsx
Normal file
19
src/components/icons/airplay.tsx
Normal file
@ -0,0 +1,19 @@
|
||||
import { createIcon } from "@chakra-ui/icons";
|
||||
|
||||
const Airplay = createIcon({
|
||||
displayName: "Airplay",
|
||||
viewBox: "0 0 24 24",
|
||||
path: [
|
||||
<path
|
||||
d="M5 18C3.34315 18 2 16.6569 2 15V7.8C2 6.11984 2 5.27976 2.32698 4.63803C2.6146 4.07354 3.07354 3.6146 3.63803 3.32698C4.27976 3 5.11984 3 6.8 3H17.2C18.8802 3 19.7202 3 20.362 3.32698C20.9265 3.6146 21.3854 4.07354 21.673 4.63803C22 5.27976 22 6.11984 22 7.8V15C22 16.6569 20.6569 18 19 18M8.70803 21H15.292C15.8368 21 16.1093 21 16.2467 20.8889C16.3663 20.7923 16.4347 20.6461 16.4324 20.4925C16.4298 20.3157 16.2554 20.1064 15.9065 19.6879L12.6146 15.7375C12.4035 15.4842 12.298 15.3576 12.1716 15.3114C12.0608 15.2709 11.9392 15.2709 11.8284 15.3114C11.702 15.3576 11.5965 15.4842 11.3854 15.7375L8.09346 19.6879C7.74465 20.1064 7.57024 20.3157 7.56758 20.4925C7.56526 20.6461 7.63373 20.7923 7.75326 20.8889C7.89075 21 8.16318 21 8.70803 21Z"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
],
|
||||
defaultProps: { boxSize: 4 },
|
||||
});
|
||||
|
||||
export default Airplay;
|
27
src/components/icons/airpods.tsx
Normal file
27
src/components/icons/airpods.tsx
Normal file
@ -0,0 +1,27 @@
|
||||
import { createIcon } from "@chakra-ui/icons";
|
||||
|
||||
const Airpods = createIcon({
|
||||
displayName: "Airpods",
|
||||
viewBox: "0 0 24 24",
|
||||
path: [
|
||||
<path
|
||||
d="M2 7.625C2 9.90317 3.84683 11.75 6.125 11.75C6.43089 11.75 6.58383 11.75 6.66308 11.7773C6.82888 11.8345 6.91545 11.9211 6.97266 12.0869C7 12.1662 7 12.2903 7 12.5386V18.875C7 19.7725 7.72754 20.5 8.625 20.5C9.52246 20.5 10.25 19.7725 10.25 18.875V7.625C10.25 5.34683 8.40317 3.5 6.125 3.5C3.84683 3.5 2 5.34683 2 7.625Z"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
<path
|
||||
d="M22 7.625C22 9.90317 20.1532 11.75 17.875 11.75C17.5691 11.75 17.4162 11.75 17.3369 11.7773C17.1711 11.8345 17.0845 11.9211 17.0273 12.0869C17 12.1662 17 12.2903 17 12.5386V18.875C17 19.7725 16.2725 20.5 15.375 20.5C14.4775 20.5 13.75 19.7725 13.75 18.875V7.625C13.75 5.34683 15.5968 3.5 17.875 3.5C20.1532 3.5 22 5.34683 22 7.625Z"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
],
|
||||
defaultProps: { boxSize: 4 },
|
||||
});
|
||||
|
||||
export default Airpods;
|
19
src/components/icons/alarm-clock-check.tsx
Normal file
19
src/components/icons/alarm-clock-check.tsx
Normal file
@ -0,0 +1,19 @@
|
||||
import { createIcon } from "@chakra-ui/icons";
|
||||
|
||||
const AlarmClockCheck = createIcon({
|
||||
displayName: "AlarmClockCheck",
|
||||
viewBox: "0 0 24 24",
|
||||
path: [
|
||||
<path
|
||||
d="M5 3L2 6M22 6L19 3M6 19L4 21M18 19L20 21M9 13.5L11 15.5L15.5 11M12 21C14.1217 21 16.1566 20.1571 17.6569 18.6569C19.1571 17.1566 20 15.1217 20 13C20 10.8783 19.1571 8.84344 17.6569 7.34315C16.1566 5.84285 14.1217 5 12 5C9.87827 5 7.84344 5.84285 6.34315 7.34315C4.84285 8.84344 4 10.8783 4 13C4 15.1217 4.84285 17.1566 6.34315 18.6569C7.84344 20.1571 9.87827 21 12 21Z"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
],
|
||||
defaultProps: { boxSize: 4 },
|
||||
});
|
||||
|
||||
export default AlarmClockCheck;
|
19
src/components/icons/alarm-clock-minus.tsx
Normal file
19
src/components/icons/alarm-clock-minus.tsx
Normal file
@ -0,0 +1,19 @@
|
||||
import { createIcon } from "@chakra-ui/icons";
|
||||
|
||||
const AlarmClockMinus = createIcon({
|
||||
displayName: "AlarmClockMinus",
|
||||
viewBox: "0 0 24 24",
|
||||
path: [
|
||||
<path
|
||||
d="M5 3L2 6M22 6L19 3M6 19L4 21M18 19L20 21M9 13H15M12 21C14.1217 21 16.1566 20.1571 17.6569 18.6569C19.1571 17.1566 20 15.1217 20 13C20 10.8783 19.1571 8.84344 17.6569 7.34315C16.1566 5.84285 14.1217 5 12 5C9.87827 5 7.84344 5.84285 6.34315 7.34315C4.84285 8.84344 4 10.8783 4 13C4 15.1217 4.84285 17.1566 6.34315 18.6569C7.84344 20.1571 9.87827 21 12 21Z"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
],
|
||||
defaultProps: { boxSize: 4 },
|
||||
});
|
||||
|
||||
export default AlarmClockMinus;
|
19
src/components/icons/alarm-clock-off.tsx
Normal file
19
src/components/icons/alarm-clock-off.tsx
Normal file
@ -0,0 +1,19 @@
|
||||
import { createIcon } from "@chakra-ui/icons";
|
||||
|
||||
const AlarmClockOff = createIcon({
|
||||
displayName: "AlarmClockOff",
|
||||
viewBox: "0 0 24 24",
|
||||
path: [
|
||||
<path
|
||||
d="M10.5 5.14185C10.991 5.04813 11.493 5 12 5C14.1217 5 16.1566 5.84285 17.6569 7.34315C19.1571 8.84344 20 10.8783 20 13C20 13.507 19.9519 14.009 19.8582 14.5M18.1356 18.1337C17.9844 18.3144 17.8247 18.489 17.6569 18.6569C16.1566 20.1571 14.1217 21 12 21C9.87827 21 7.84344 20.1571 6.34315 18.6569C4.84285 17.1566 4 15.1217 4 13C4 10.8783 4.84285 8.84344 6.34315 7.34315C6.50948 7.17682 6.68238 7.01857 6.86123 6.86865M4 4L2 6M22 6L19 3M6 19L4 21M21 21L3 3"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
],
|
||||
defaultProps: { boxSize: 4 },
|
||||
});
|
||||
|
||||
export default AlarmClockOff;
|
19
src/components/icons/alarm-clock-plus.tsx
Normal file
19
src/components/icons/alarm-clock-plus.tsx
Normal file
@ -0,0 +1,19 @@
|
||||
import { createIcon } from "@chakra-ui/icons";
|
||||
|
||||
const AlarmClockPlus = createIcon({
|
||||
displayName: "AlarmClockPlus",
|
||||
viewBox: "0 0 24 24",
|
||||
path: [
|
||||
<path
|
||||
d="M5 3L2 6M22 6L19 3M6 19L4 21M18 19L20 21M12 16V10M9 13H15M12 21C14.1217 21 16.1566 20.1571 17.6569 18.6569C19.1571 17.1566 20 15.1217 20 13C20 10.8783 19.1571 8.84344 17.6569 7.34315C16.1566 5.84285 14.1217 5 12 5C9.87827 5 7.84344 5.84285 6.34315 7.34315C4.84285 8.84344 4 10.8783 4 13C4 15.1217 4.84285 17.1566 6.34315 18.6569C7.84344 20.1571 9.87827 21 12 21Z"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
],
|
||||
defaultProps: { boxSize: 4 },
|
||||
});
|
||||
|
||||
export default AlarmClockPlus;
|
19
src/components/icons/alarm-clock.tsx
Normal file
19
src/components/icons/alarm-clock.tsx
Normal file
@ -0,0 +1,19 @@
|
||||
import { createIcon } from "@chakra-ui/icons";
|
||||
|
||||
const AlarmClock = createIcon({
|
||||
displayName: "AlarmClock",
|
||||
viewBox: "0 0 24 24",
|
||||
path: [
|
||||
<path
|
||||
d="M5 3L2 6M22 6L19 3M6 19L4 21M18 19L20 21M12 9V13L14 15M12 21C14.1217 21 16.1566 20.1571 17.6569 18.6569C19.1571 17.1566 20 15.1217 20 13C20 10.8783 19.1571 8.84344 17.6569 7.34315C16.1566 5.84285 14.1217 5 12 5C9.87827 5 7.84344 5.84285 6.34315 7.34315C4.84285 8.84344 4 10.8783 4 13C4 15.1217 4.84285 17.1566 6.34315 18.6569C7.84344 20.1571 9.87827 21 12 21Z"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
],
|
||||
defaultProps: { boxSize: 4 },
|
||||
});
|
||||
|
||||
export default AlarmClock;
|
19
src/components/icons/alert-circle.tsx
Normal file
19
src/components/icons/alert-circle.tsx
Normal file
@ -0,0 +1,19 @@
|
||||
import { createIcon } from "@chakra-ui/icons";
|
||||
|
||||
const AlertCircle = createIcon({
|
||||
displayName: "AlertCircle",
|
||||
viewBox: "0 0 24 24",
|
||||
path: [
|
||||
<path
|
||||
d="M12 8V12M12 16H12.01M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
],
|
||||
defaultProps: { boxSize: 4 },
|
||||
});
|
||||
|
||||
export default AlertCircle;
|
19
src/components/icons/alert-hexagon.tsx
Normal file
19
src/components/icons/alert-hexagon.tsx
Normal file
@ -0,0 +1,19 @@
|
||||
import { createIcon } from "@chakra-ui/icons";
|
||||
|
||||
const AlertHexagon = createIcon({
|
||||
displayName: "AlertHexagon",
|
||||
viewBox: "0 0 24 24",
|
||||
path: [
|
||||
<path
|
||||
d="M12 8.00008V12.0001M12 16.0001H12.01M3 7.94153V16.0586C3 16.4013 3 16.5726 3.05048 16.7254C3.09515 16.8606 3.16816 16.9847 3.26463 17.0893C3.37369 17.2077 3.52345 17.2909 3.82297 17.4573L11.223 21.5684C11.5066 21.726 11.6484 21.8047 11.7985 21.8356C11.9315 21.863 12.0685 21.863 12.2015 21.8356C12.3516 21.8047 12.4934 21.726 12.777 21.5684L20.177 17.4573C20.4766 17.2909 20.6263 17.2077 20.7354 17.0893C20.8318 16.9847 20.9049 16.8606 20.9495 16.7254C21 16.5726 21 16.4013 21 16.0586V7.94153C21 7.59889 21 7.42756 20.9495 7.27477C20.9049 7.13959 20.8318 7.01551 20.7354 6.91082C20.6263 6.79248 20.4766 6.70928 20.177 6.54288L12.777 2.43177C12.4934 2.27421 12.3516 2.19543 12.2015 2.16454C12.0685 2.13721 11.9315 2.13721 11.7985 2.16454C11.6484 2.19543 11.5066 2.27421 11.223 2.43177L3.82297 6.54288C3.52345 6.70928 3.37369 6.79248 3.26463 6.91082C3.16816 7.01551 3.09515 7.13959 3.05048 7.27477C3 7.42756 3 7.59889 3 7.94153Z"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
],
|
||||
defaultProps: { boxSize: 4 },
|
||||
});
|
||||
|
||||
export default AlertHexagon;
|
19
src/components/icons/alert-octagon.tsx
Normal file
19
src/components/icons/alert-octagon.tsx
Normal file
@ -0,0 +1,19 @@
|
||||
import { createIcon } from "@chakra-ui/icons";
|
||||
|
||||
const AlertOctagon = createIcon({
|
||||
displayName: "AlertOctagon",
|
||||
viewBox: "0 0 24 24",
|
||||
path: [
|
||||
<path
|
||||
d="M12 8V12M12 16H12.01M2 8.52274V15.4773C2 15.7218 2 15.8441 2.02763 15.9592C2.05213 16.0613 2.09253 16.1588 2.14736 16.2483C2.2092 16.3492 2.29568 16.4357 2.46863 16.6086L7.39137 21.5314C7.56432 21.7043 7.6508 21.7908 7.75172 21.8526C7.84119 21.9075 7.93873 21.9479 8.04077 21.9724C8.15586 22 8.27815 22 8.52274 22H15.4773C15.7218 22 15.8441 22 15.9592 21.9724C16.0613 21.9479 16.1588 21.9075 16.2483 21.8526C16.3492 21.7908 16.4357 21.7043 16.6086 21.5314L21.5314 16.6086C21.7043 16.4357 21.7908 16.3492 21.8526 16.2483C21.9075 16.1588 21.9479 16.0613 21.9724 15.9592C22 15.8441 22 15.7218 22 15.4773V8.52274C22 8.27815 22 8.15586 21.9724 8.04077C21.9479 7.93873 21.9075 7.84119 21.8526 7.75172C21.7908 7.6508 21.7043 7.56432 21.5314 7.39137L16.6086 2.46863C16.4357 2.29568 16.3492 2.2092 16.2483 2.14736C16.1588 2.09253 16.0613 2.05213 15.9592 2.02763C15.8441 2 15.7218 2 15.4773 2H8.52274C8.27815 2 8.15586 2 8.04077 2.02763C7.93873 2.05213 7.84119 2.09253 7.75172 2.14736C7.6508 2.2092 7.56432 2.29568 7.39137 2.46863L2.46863 7.39137C2.29568 7.56432 2.2092 7.6508 2.14736 7.75172C2.09253 7.84119 2.05213 7.93873 2.02763 8.04077C2 8.15586 2 8.27815 2 8.52274Z"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
],
|
||||
defaultProps: { boxSize: 4 },
|
||||
});
|
||||
|
||||
export default AlertOctagon;
|
19
src/components/icons/alert-square.tsx
Normal file
19
src/components/icons/alert-square.tsx
Normal file
@ -0,0 +1,19 @@
|
||||
import { createIcon } from "@chakra-ui/icons";
|
||||
|
||||
const AlertSquare = createIcon({
|
||||
displayName: "AlertSquare",
|
||||
viewBox: "0 0 24 24",
|
||||
path: [
|
||||
<path
|
||||
d="M12 8V12M12 16H12.01M7.8 21H16.2C17.8802 21 18.7202 21 19.362 20.673C19.9265 20.3854 20.3854 19.9265 20.673 19.362C21 18.7202 21 17.8802 21 16.2V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21Z"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
],
|
||||
defaultProps: { boxSize: 4 },
|
||||
});
|
||||
|
||||
export default AlertSquare;
|
19
src/components/icons/alert-triangle.tsx
Normal file
19
src/components/icons/alert-triangle.tsx
Normal file
@ -0,0 +1,19 @@
|
||||
import { createIcon } from "@chakra-ui/icons";
|
||||
|
||||
const AlertTriangle = createIcon({
|
||||
displayName: "AlertTriangle",
|
||||
viewBox: "0 0 24 24",
|
||||
path: [
|
||||
<path
|
||||
d="M11.9998 8.99999V13M11.9998 17H12.0098M10.6151 3.89171L2.39019 18.0983C1.93398 18.8863 1.70588 19.2803 1.73959 19.6037C1.769 19.8857 1.91677 20.142 2.14613 20.3088C2.40908 20.5 2.86435 20.5 3.77487 20.5H20.2246C21.1352 20.5 21.5904 20.5 21.8534 20.3088C22.0827 20.142 22.2305 19.8857 22.2599 19.6037C22.2936 19.2803 22.0655 18.8863 21.6093 18.0983L13.3844 3.89171C12.9299 3.10654 12.7026 2.71396 12.4061 2.58211C12.1474 2.4671 11.8521 2.4671 11.5935 2.58211C11.2969 2.71396 11.0696 3.10655 10.6151 3.89171Z"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
],
|
||||
defaultProps: { boxSize: 4 },
|
||||
});
|
||||
|
||||
export default AlertTriangle;
|
19
src/components/icons/align-bottom-01.tsx
Normal file
19
src/components/icons/align-bottom-01.tsx
Normal file
@ -0,0 +1,19 @@
|
||||
import { createIcon } from "@chakra-ui/icons";
|
||||
|
||||
const AlignBottom01 = createIcon({
|
||||
displayName: "AlignBottom01",
|
||||
viewBox: "0 0 24 24",
|
||||
path: [
|
||||
<path
|
||||
d="M3 21H21M12 3V17M12 17L19 10M12 17L5 10"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
],
|
||||
defaultProps: { boxSize: 4 },
|
||||
});
|
||||
|
||||
export default AlignBottom01;
|
27
src/components/icons/align-bottom-02.tsx
Normal file
27
src/components/icons/align-bottom-02.tsx
Normal file
@ -0,0 +1,27 @@
|
||||
import { createIcon } from "@chakra-ui/icons";
|
||||
|
||||
const AlignBottom02 = createIcon({
|
||||
displayName: "AlignBottom02",
|
||||
viewBox: "0 0 24 24",
|
||||
path: [
|
||||
<path
|
||||
d="M10 18V6C10 5.06812 10 4.60218 9.84776 4.23463C9.64477 3.74458 9.25542 3.35523 8.76537 3.15224C8.39782 3 7.93188 3 7 3C6.06812 3 5.60218 3 5.23463 3.15224C4.74458 3.35523 4.35523 3.74458 4.15224 4.23463C4 4.60218 4 5.06812 4 6V18C4 18.9319 4 19.3978 4.15224 19.7654C4.35523 20.2554 4.74458 20.6448 5.23463 20.8478C5.60218 21 6.06812 21 7 21C7.93188 21 8.39782 21 8.76537 20.8478C9.25542 20.6448 9.64477 20.2554 9.84776 19.7654C10 19.3978 10 18.9319 10 18Z"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
<path
|
||||
d="M20 18V10C20 9.06812 20 8.60218 19.8478 8.23463C19.6448 7.74458 19.2554 7.35523 18.7654 7.15224C18.3978 7 17.9319 7 17 7C16.0681 7 15.6022 7 15.2346 7.15224C14.7446 7.35523 14.3552 7.74458 14.1522 8.23463C14 8.60218 14 9.06812 14 10V18C14 18.9319 14 19.3978 14.1522 19.7654C14.3552 20.2554 14.7446 20.6448 15.2346 20.8478C15.6022 21 16.0681 21 17 21C17.9319 21 18.3978 21 18.7654 20.8478C19.2554 20.6448 19.6448 20.2554 19.8478 19.7654C20 19.3978 20 18.9319 20 18Z"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
],
|
||||
defaultProps: { boxSize: 4 },
|
||||
});
|
||||
|
||||
export default AlignBottom02;
|
19
src/components/icons/align-center.tsx
Normal file
19
src/components/icons/align-center.tsx
Normal file
@ -0,0 +1,19 @@
|
||||
import { createIcon } from "@chakra-ui/icons";
|
||||
|
||||
const AlignCenter = createIcon({
|
||||
displayName: "AlignCenter",
|
||||
viewBox: "0 0 24 24",
|
||||
path: [
|
||||
<path
|
||||
d="M18 10H6M21 6H3M21 14H3M18 18H6"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
],
|
||||
defaultProps: { boxSize: 4 },
|
||||
});
|
||||
|
||||
export default AlignCenter;
|
19
src/components/icons/align-horizontal-centre-01.tsx
Normal file
19
src/components/icons/align-horizontal-centre-01.tsx
Normal file
@ -0,0 +1,19 @@
|
||||
import { createIcon } from "@chakra-ui/icons";
|
||||
|
||||
const AlignHorizontalCentre01 = createIcon({
|
||||
displayName: "AlignHorizontalCentre01",
|
||||
viewBox: "0 0 24 24",
|
||||
path: [
|
||||
<path
|
||||
d="M12 3V21M22 12H15.5M15.5 12L19.5 16M15.5 12L19.5 8M2 12H8.5M8.5 12L4.5 16M8.5 12L4.5 8"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
],
|
||||
defaultProps: { boxSize: 4 },
|
||||
});
|
||||
|
||||
export default AlignHorizontalCentre01;
|
27
src/components/icons/align-horizontal-centre-02.tsx
Normal file
27
src/components/icons/align-horizontal-centre-02.tsx
Normal file
@ -0,0 +1,27 @@
|
||||
import { createIcon } from "@chakra-ui/icons";
|
||||
|
||||
const AlignHorizontalCentre02 = createIcon({
|
||||
displayName: "AlignHorizontalCentre02",
|
||||
viewBox: "0 0 24 24",
|
||||
path: [
|
||||
<path
|
||||
d="M16 10C16.9319 10 17.3978 10 17.7654 9.84776C18.2554 9.64477 18.6448 9.25542 18.8478 8.76537C19 8.39782 19 7.93188 19 7C19 6.06812 19 5.60218 18.8478 5.23463C18.6448 4.74458 18.2554 4.35523 17.7654 4.15224C17.3978 4 16.9319 4 16 4L8 4C7.06812 4 6.60218 4 6.23463 4.15224C5.74458 4.35523 5.35523 4.74458 5.15224 5.23463C5 5.60218 5 6.06812 5 7C5 7.93188 5 8.39782 5.15224 8.76537C5.35523 9.25542 5.74458 9.64477 6.23463 9.84776C6.60218 10 7.06812 10 8 10L16 10Z"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
<path
|
||||
d="M18 20C18.9319 20 19.3978 20 19.7654 19.8478C20.2554 19.6448 20.6448 19.2554 20.8478 18.7654C21 18.3978 21 17.9319 21 17C21 16.0681 21 15.6022 20.8478 15.2346C20.6448 14.7446 20.2554 14.3552 19.7654 14.1522C19.3978 14 18.9319 14 18 14H6C5.06812 14 4.60218 14 4.23463 14.1522C3.74458 14.3552 3.35523 14.7446 3.15224 15.2346C3 15.6022 3 16.0681 3 17C3 17.9319 3 18.3978 3.15224 18.7654C3.35523 19.2554 3.74458 19.6448 4.23463 19.8478C4.60218 20 5.06812 20 6 20L18 20Z"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
],
|
||||
defaultProps: { boxSize: 4 },
|
||||
});
|
||||
|
||||
export default AlignHorizontalCentre02;
|
19
src/components/icons/align-justify.tsx
Normal file
19
src/components/icons/align-justify.tsx
Normal file
@ -0,0 +1,19 @@
|
||||
import { createIcon } from "@chakra-ui/icons";
|
||||
|
||||
const AlignJustify = createIcon({
|
||||
displayName: "AlignJustify",
|
||||
viewBox: "0 0 24 24",
|
||||
path: [
|
||||
<path
|
||||
d="M21 10H3M21 18H3M21 6H3M21 14H3"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
],
|
||||
defaultProps: { boxSize: 4 },
|
||||
});
|
||||
|
||||
export default AlignJustify;
|
19
src/components/icons/align-left-01.tsx
Normal file
19
src/components/icons/align-left-01.tsx
Normal file
@ -0,0 +1,19 @@
|
||||
import { createIcon } from "@chakra-ui/icons";
|
||||
|
||||
const AlignLeft01 = createIcon({
|
||||
displayName: "AlignLeft01",
|
||||
viewBox: "0 0 24 24",
|
||||
path: [
|
||||
<path
|
||||
d="M3 3V21M21 12H7M7 12L14 19M7 12L14 5"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
],
|
||||
defaultProps: { boxSize: 4 },
|
||||
});
|
||||
|
||||
export default AlignLeft01;
|
27
src/components/icons/align-left-02.tsx
Normal file
27
src/components/icons/align-left-02.tsx
Normal file
@ -0,0 +1,27 @@
|
||||
import { createIcon } from "@chakra-ui/icons";
|
||||
|
||||
const AlignLeft02 = createIcon({
|
||||
displayName: "AlignLeft02",
|
||||
viewBox: "0 0 24 24",
|
||||
path: [
|
||||
<path
|
||||
d="M14 10C14.9319 10 15.3978 10 15.7654 9.84776C16.2554 9.64477 16.6448 9.25542 16.8478 8.76537C17 8.39782 17 7.93188 17 7C17 6.06812 17 5.60218 16.8478 5.23463C16.6448 4.74458 16.2554 4.35523 15.7654 4.15224C15.3978 4 14.9319 4 14 4L6 4C5.06812 4 4.60218 4 4.23463 4.15224C3.74458 4.35523 3.35523 4.74458 3.15224 5.23463C3 5.60218 3 6.06812 3 7C3 7.93188 3 8.39782 3.15224 8.76537C3.35523 9.25542 3.74458 9.64477 4.23463 9.84776C4.60218 10 5.06812 10 6 10L14 10Z"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
<path
|
||||
d="M18 20C18.9319 20 19.3978 20 19.7654 19.8478C20.2554 19.6448 20.6448 19.2554 20.8478 18.7654C21 18.3978 21 17.9319 21 17C21 16.0681 21 15.6022 20.8478 15.2346C20.6448 14.7446 20.2554 14.3552 19.7654 14.1522C19.3978 14 18.9319 14 18 14H6C5.06812 14 4.60218 14 4.23463 14.1522C3.74458 14.3552 3.35523 14.7446 3.15224 15.2346C3 15.6022 3 16.0681 3 17C3 17.9319 3 18.3978 3.15224 18.7654C3.35523 19.2554 3.74458 19.6448 4.23463 19.8478C4.60218 20 5.06812 20 6 20L18 20Z"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
],
|
||||
defaultProps: { boxSize: 4 },
|
||||
});
|
||||
|
||||
export default AlignLeft02;
|
19
src/components/icons/align-left.tsx
Normal file
19
src/components/icons/align-left.tsx
Normal file
@ -0,0 +1,19 @@
|
||||
import { createIcon } from "@chakra-ui/icons";
|
||||
|
||||
const AlignLeft = createIcon({
|
||||
displayName: "AlignLeft",
|
||||
viewBox: "0 0 24 24",
|
||||
path: [
|
||||
<path
|
||||
d="M16 10H3M20 6H3M20 14H3M16 18H3"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
],
|
||||
defaultProps: { boxSize: 4 },
|
||||
});
|
||||
|
||||
export default AlignLeft;
|
19
src/components/icons/align-right-01.tsx
Normal file
19
src/components/icons/align-right-01.tsx
Normal file
@ -0,0 +1,19 @@
|
||||
import { createIcon } from "@chakra-ui/icons";
|
||||
|
||||
const AlignRight01 = createIcon({
|
||||
displayName: "AlignRight01",
|
||||
viewBox: "0 0 24 24",
|
||||
path: [
|
||||
<path
|
||||
d="M21 21V3M3 12H17M17 12L10 5M17 12L10 19"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
],
|
||||
defaultProps: { boxSize: 4 },
|
||||
});
|
||||
|
||||
export default AlignRight01;
|
27
src/components/icons/align-right-02.tsx
Normal file
27
src/components/icons/align-right-02.tsx
Normal file
@ -0,0 +1,27 @@
|
||||
import { createIcon } from "@chakra-ui/icons";
|
||||
|
||||
const AlignRight02 = createIcon({
|
||||
displayName: "AlignRight02",
|
||||
viewBox: "0 0 24 24",
|
||||
path: [
|
||||
<path
|
||||
d="M18 10C18.9319 10 19.3978 10 19.7654 9.84776C20.2554 9.64477 20.6448 9.25542 20.8478 8.76537C21 8.39782 21 7.93188 21 7C21 6.06812 21 5.60218 20.8478 5.23463C20.6448 4.74458 20.2554 4.35523 19.7654 4.15224C19.3978 4 18.9319 4 18 4L10 4C9.06812 4 8.60218 4 8.23463 4.15224C7.74458 4.35523 7.35523 4.74458 7.15224 5.23463C7 5.60218 7 6.06812 7 7C7 7.93188 7 8.39782 7.15224 8.76537C7.35523 9.25542 7.74458 9.64477 8.23463 9.84776C8.60218 10 9.06812 10 10 10L18 10Z"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
<path
|
||||
d="M18 20C18.9319 20 19.3978 20 19.7654 19.8478C20.2554 19.6448 20.6448 19.2554 20.8478 18.7654C21 18.3978 21 17.9319 21 17C21 16.0681 21 15.6022 20.8478 15.2346C20.6448 14.7446 20.2554 14.3552 19.7654 14.1522C19.3978 14 18.9319 14 18 14H6C5.06812 14 4.60218 14 4.23463 14.1522C3.74458 14.3552 3.35523 14.7446 3.15224 15.2346C3 15.6022 3 16.0681 3 17C3 17.9319 3 18.3978 3.15224 18.7654C3.35523 19.2554 3.74458 19.6448 4.23463 19.8478C4.60218 20 5.06812 20 6 20L18 20Z"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
],
|
||||
defaultProps: { boxSize: 4 },
|
||||
});
|
||||
|
||||
export default AlignRight02;
|
19
src/components/icons/align-right.tsx
Normal file
19
src/components/icons/align-right.tsx
Normal file
@ -0,0 +1,19 @@
|
||||
import { createIcon } from "@chakra-ui/icons";
|
||||
|
||||
const AlignRight = createIcon({
|
||||
displayName: "AlignRight",
|
||||
viewBox: "0 0 24 24",
|
||||
path: [
|
||||
<path
|
||||
d="M21 10H8M21 6H4M21 14H4M21 18H8"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
],
|
||||
defaultProps: { boxSize: 4 },
|
||||
});
|
||||
|
||||
export default AlignRight;
|
19
src/components/icons/align-top-01.tsx
Normal file
19
src/components/icons/align-top-01.tsx
Normal file
@ -0,0 +1,19 @@
|
||||
import { createIcon } from "@chakra-ui/icons";
|
||||
|
||||
const AlignTop01 = createIcon({
|
||||
displayName: "AlignTop01",
|
||||
viewBox: "0 0 24 24",
|
||||
path: [
|
||||
<path
|
||||
d="M21 3H3M12 21V7M12 7L5 14M12 7L19 14"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
],
|
||||
defaultProps: { boxSize: 4 },
|
||||
});
|
||||
|
||||
export default AlignTop01;
|
27
src/components/icons/align-top-02.tsx
Normal file
27
src/components/icons/align-top-02.tsx
Normal file
@ -0,0 +1,27 @@
|
||||
import { createIcon } from "@chakra-ui/icons";
|
||||
|
||||
const AlignTop02 = createIcon({
|
||||
displayName: "AlignTop02",
|
||||
viewBox: "0 0 24 24",
|
||||
path: [
|
||||
<path
|
||||
d="M10 18V6C10 5.06812 10 4.60218 9.84776 4.23463C9.64477 3.74458 9.25542 3.35523 8.76537 3.15224C8.39782 3 7.93188 3 7 3C6.06812 3 5.60218 3 5.23463 3.15224C4.74458 3.35523 4.35523 3.74458 4.15224 4.23463C4 4.60218 4 5.06812 4 6V18C4 18.9319 4 19.3978 4.15224 19.7654C4.35523 20.2554 4.74458 20.6448 5.23463 20.8478C5.60218 21 6.06812 21 7 21C7.93188 21 8.39782 21 8.76537 20.8478C9.25542 20.6448 9.64477 20.2554 9.84776 19.7654C10 19.3978 10 18.9319 10 18Z"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
<path
|
||||
d="M20 14V6C20 5.06812 20 4.60218 19.8478 4.23463C19.6448 3.74458 19.2554 3.35523 18.7654 3.15224C18.3978 3 17.9319 3 17 3C16.0681 3 15.6022 3 15.2346 3.15224C14.7446 3.35523 14.3552 3.74458 14.1522 4.23463C14 4.60218 14 5.06812 14 6V14C14 14.9319 14 15.3978 14.1522 15.7654C14.3552 16.2554 14.7446 16.6448 15.2346 16.8478C15.6022 17 16.0681 17 17 17C17.9319 17 18.3978 17 18.7654 16.8478C19.2554 16.6448 19.6448 16.2554 19.8478 15.7654C20 15.3978 20 14.9319 20 14Z"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
],
|
||||
defaultProps: { boxSize: 4 },
|
||||
});
|
||||
|
||||
export default AlignTop02;
|
19
src/components/icons/align-vertical-center-01.tsx
Normal file
19
src/components/icons/align-vertical-center-01.tsx
Normal file
@ -0,0 +1,19 @@
|
||||
import { createIcon } from "@chakra-ui/icons";
|
||||
|
||||
const AlignVerticalCenter01 = createIcon({
|
||||
displayName: "AlignVerticalCenter01",
|
||||
viewBox: "0 0 24 24",
|
||||
path: [
|
||||
<path
|
||||
d="M3 12H21M12 2V8.5M12 8.5L16 4.5M12 8.5L8 4.5M12 22V15.5M12 15.5L16 19.5M12 15.5L8 19.5"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
],
|
||||
defaultProps: { boxSize: 4 },
|
||||
});
|
||||
|
||||
export default AlignVerticalCenter01;
|
27
src/components/icons/align-vertical-center-02.tsx
Normal file
27
src/components/icons/align-vertical-center-02.tsx
Normal file
@ -0,0 +1,27 @@
|
||||
import { createIcon } from "@chakra-ui/icons";
|
||||
|
||||
const AlignVerticalCenter02 = createIcon({
|
||||
displayName: "AlignVerticalCenter02",
|
||||
viewBox: "0 0 24 24",
|
||||
path: [
|
||||
<path
|
||||
d="M10 18V6C10 5.06812 10 4.60218 9.84776 4.23463C9.64477 3.74458 9.25542 3.35523 8.76537 3.15224C8.39782 3 7.93188 3 7 3C6.06812 3 5.60218 3 5.23463 3.15224C4.74458 3.35523 4.35523 3.74458 4.15224 4.23463C4 4.60218 4 5.06812 4 6V18C4 18.9319 4 19.3978 4.15224 19.7654C4.35523 20.2554 4.74458 20.6448 5.23463 20.8478C5.60218 21 6.06812 21 7 21C7.93188 21 8.39782 21 8.76537 20.8478C9.25542 20.6448 9.64477 20.2554 9.84776 19.7654C10 19.3978 10 18.9319 10 18Z"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
<path
|
||||
d="M20 16V8C20 7.06812 20 6.60218 19.8478 6.23463C19.6448 5.74458 19.2554 5.35523 18.7654 5.15224C18.3978 5 17.9319 5 17 5C16.0681 5 15.6022 5 15.2346 5.15224C14.7446 5.35523 14.3552 5.74458 14.1522 6.23463C14 6.60218 14 7.06812 14 8V16C14 16.9319 14 17.3978 14.1522 17.7654C14.3552 18.2554 14.7446 18.6448 15.2346 18.8478C15.6022 19 16.0681 19 17 19C17.9319 19 18.3978 19 18.7654 18.8478C19.2554 18.6448 19.6448 18.2554 19.8478 17.7654C20 17.3978 20 16.9319 20 16Z"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
],
|
||||
defaultProps: { boxSize: 4 },
|
||||
});
|
||||
|
||||
export default AlignVerticalCenter02;
|
19
src/components/icons/anchor.tsx
Normal file
19
src/components/icons/anchor.tsx
Normal file
@ -0,0 +1,19 @@
|
||||
import { createIcon } from "@chakra-ui/icons";
|
||||
|
||||
const Anchor = createIcon({
|
||||
displayName: "Anchor",
|
||||
viewBox: "0 0 24 24",
|
||||
path: [
|
||||
<path
|
||||
d="M12 8C13.6569 8 15 6.65685 15 5C15 3.34315 13.6569 2 12 2C10.3431 2 9 3.34315 9 5C9 6.65685 10.3431 8 12 8ZM12 8V22M12 22C9.34784 22 6.8043 20.9464 4.92893 19.0711C3.05357 17.1957 2 14.6522 2 12H5M12 22C14.6522 22 17.1957 20.9464 19.0711 19.0711C20.9464 17.1957 22 14.6522 22 12H19"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
],
|
||||
defaultProps: { boxSize: 4 },
|
||||
});
|
||||
|
||||
export default Anchor;
|
19
src/components/icons/annotation-alert.tsx
Normal file
19
src/components/icons/annotation-alert.tsx
Normal file
@ -0,0 +1,19 @@
|
||||
import { createIcon } from "@chakra-ui/icons";
|
||||
|
||||
const AnnotationAlert = createIcon({
|
||||
displayName: "AnnotationAlert",
|
||||
viewBox: "0 0 24 24",
|
||||
path: [
|
||||
<path
|
||||
d="M12 10.5V7M12 14H12.01M9.9 19.2L11.36 21.1467C11.5771 21.4362 11.6857 21.5809 11.8188 21.6327C11.9353 21.678 12.0647 21.678 12.1812 21.6327C12.3143 21.5809 12.4229 21.4362 12.64 21.1467L14.1 19.2C14.3931 18.8091 14.5397 18.6137 14.7185 18.4645C14.9569 18.2656 15.2383 18.1248 15.5405 18.0535C15.7671 18 16.0114 18 16.5 18C17.8978 18 18.5967 18 19.1481 17.7716C19.8831 17.4672 20.4672 16.8831 20.7716 16.1481C21 15.5967 21 14.8978 21 13.5V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V13.5C3 14.8978 3 15.5967 3.22836 16.1481C3.53284 16.8831 4.11687 17.4672 4.85195 17.7716C5.40326 18 6.10218 18 7.5 18C7.98858 18 8.23287 18 8.45951 18.0535C8.76169 18.1248 9.04312 18.2656 9.2815 18.4645C9.46028 18.6137 9.60685 18.8091 9.9 19.2Z"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
],
|
||||
defaultProps: { boxSize: 4 },
|
||||
});
|
||||
|
||||
export default AnnotationAlert;
|
19
src/components/icons/annotation-check.tsx
Normal file
19
src/components/icons/annotation-check.tsx
Normal file
@ -0,0 +1,19 @@
|
||||
import { createIcon } from "@chakra-ui/icons";
|
||||
|
||||
const AnnotationCheck = createIcon({
|
||||
displayName: "AnnotationCheck",
|
||||
viewBox: "0 0 24 24",
|
||||
path: [
|
||||
<path
|
||||
d="M9 11L11 13L15.5 8.5M9.9 19.2L11.36 21.1467C11.5771 21.4362 11.6857 21.5809 11.8188 21.6327C11.9353 21.678 12.0647 21.678 12.1812 21.6327C12.3143 21.5809 12.4229 21.4362 12.64 21.1467L14.1 19.2C14.3931 18.8091 14.5397 18.6137 14.7185 18.4645C14.9569 18.2656 15.2383 18.1248 15.5405 18.0535C15.7671 18 16.0114 18 16.5 18C17.8978 18 18.5967 18 19.1481 17.7716C19.8831 17.4672 20.4672 16.8831 20.7716 16.1481C21 15.5967 21 14.8978 21 13.5V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V13.5C3 14.8978 3 15.5967 3.22836 16.1481C3.53284 16.8831 4.11687 17.4672 4.85195 17.7716C5.40326 18 6.10218 18 7.5 18C7.98858 18 8.23287 18 8.45951 18.0535C8.76169 18.1248 9.04312 18.2656 9.2815 18.4645C9.46028 18.6137 9.60685 18.8091 9.9 19.2Z"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
],
|
||||
defaultProps: { boxSize: 4 },
|
||||
});
|
||||
|
||||
export default AnnotationCheck;
|
19
src/components/icons/annotation-dots.tsx
Normal file
19
src/components/icons/annotation-dots.tsx
Normal file
@ -0,0 +1,19 @@
|
||||
import { createIcon } from "@chakra-ui/icons";
|
||||
|
||||
const AnnotationDots = createIcon({
|
||||
displayName: "AnnotationDots",
|
||||
viewBox: "0 0 24 24",
|
||||
path: [
|
||||
<path
|
||||
d="M7.5 10.5H7.51M12 10.5H12.01M16.5 10.5H16.51M9.9 19.2L11.36 21.1467C11.5771 21.4362 11.6857 21.5809 11.8188 21.6327C11.9353 21.678 12.0647 21.678 12.1812 21.6327C12.3143 21.5809 12.4229 21.4362 12.64 21.1467L14.1 19.2C14.3931 18.8091 14.5397 18.6137 14.7185 18.4645C14.9569 18.2656 15.2383 18.1248 15.5405 18.0535C15.7671 18 16.0114 18 16.5 18C17.8978 18 18.5967 18 19.1481 17.7716C19.8831 17.4672 20.4672 16.8831 20.7716 16.1481C21 15.5967 21 14.8978 21 13.5V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V13.5C3 14.8978 3 15.5967 3.22836 16.1481C3.53284 16.8831 4.11687 17.4672 4.85195 17.7716C5.40326 18 6.10218 18 7.5 18C7.98858 18 8.23287 18 8.45951 18.0535C8.76169 18.1248 9.04312 18.2656 9.2815 18.4645C9.46028 18.6137 9.60685 18.8091 9.9 19.2ZM8 10.5C8 10.7761 7.77614 11 7.5 11C7.22386 11 7 10.7761 7 10.5C7 10.2239 7.22386 10 7.5 10C7.77614 10 8 10.2239 8 10.5ZM12.5 10.5C12.5 10.7761 12.2761 11 12 11C11.7239 11 11.5 10.7761 11.5 10.5C11.5 10.2239 11.7239 10 12 10C12.2761 10 12.5 10.2239 12.5 10.5ZM17 10.5C17 10.7761 16.7761 11 16.5 11C16.2239 11 16 10.7761 16 10.5C16 10.2239 16.2239 10 16.5 10C16.7761 10 17 10.2239 17 10.5Z"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
],
|
||||
defaultProps: { boxSize: 4 },
|
||||
});
|
||||
|
||||
export default AnnotationDots;
|
29
src/components/icons/annotation-heart.tsx
Normal file
29
src/components/icons/annotation-heart.tsx
Normal file
@ -0,0 +1,29 @@
|
||||
import { createIcon } from "@chakra-ui/icons";
|
||||
|
||||
const AnnotationHeart = createIcon({
|
||||
displayName: "AnnotationHeart",
|
||||
viewBox: "0 0 24 24",
|
||||
path: [
|
||||
<path
|
||||
d="M3 7.8C3 6.11984 3 5.27976 3.32698 4.63803C3.6146 4.07354 4.07354 3.6146 4.63803 3.32698C5.27976 3 6.11984 3 7.8 3H16.2C17.8802 3 18.7202 3 19.362 3.32698C19.9265 3.6146 20.3854 4.07354 20.673 4.63803C21 5.27976 21 6.11984 21 7.8V13.5C21 14.8978 21 15.5967 20.7716 16.1481C20.4672 16.8831 19.8831 17.4672 19.1481 17.7716C18.5967 18 17.8978 18 16.5 18C16.0114 18 15.7671 18 15.5405 18.0535C15.2383 18.1248 14.9569 18.2656 14.7185 18.4645C14.5397 18.6137 14.3931 18.8091 14.1 19.2L12.64 21.1467C12.4229 21.4362 12.3143 21.5809 12.1812 21.6327C12.0647 21.678 11.9353 21.678 11.8188 21.6327C11.6857 21.5809 11.5771 21.4362 11.36 21.1467L9.9 19.2C9.60685 18.8091 9.46028 18.6137 9.2815 18.4645C9.04312 18.2656 8.76169 18.1248 8.45951 18.0535C8.23287 18 7.98858 18 7.5 18C6.10218 18 5.40326 18 4.85195 17.7716C4.11687 17.4672 3.53284 16.8831 3.22836 16.1481C3 15.5967 3 14.8978 3 13.5V7.8Z"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
<path
|
||||
fill-rule="evenodd"
|
||||
clip-rule="evenodd"
|
||||
d="M11.9973 8.33059C11.1975 7.4216 9.8639 7.17708 8.86188 8.00945C7.85986 8.84182 7.71879 10.2335 8.50568 11.2179C8.97361 11.8033 10.1197 12.8531 10.9719 13.6079C11.3237 13.9195 11.4996 14.0753 11.7114 14.1385C11.8925 14.1926 12.102 14.1926 12.2832 14.1385C12.4949 14.0753 12.6708 13.9195 13.0226 13.6079C13.8748 12.8531 15.0209 11.8033 15.4888 11.2179C16.2757 10.2335 16.1519 8.83306 15.1326 8.00945C14.1134 7.18584 12.797 7.4216 11.9973 8.33059Z"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
],
|
||||
defaultProps: { boxSize: 4 },
|
||||
});
|
||||
|
||||
export default AnnotationHeart;
|
19
src/components/icons/annotation-info.tsx
Normal file
19
src/components/icons/annotation-info.tsx
Normal file
@ -0,0 +1,19 @@
|
||||
import { createIcon } from "@chakra-ui/icons";
|
||||
|
||||
const AnnotationInfo = createIcon({
|
||||
displayName: "AnnotationInfo",
|
||||
viewBox: "0 0 24 24",
|
||||
path: [
|
||||
<path
|
||||
d="M12 14V10.5M12 7H12.01M9.9 19.2L11.36 21.1467C11.5771 21.4362 11.6857 21.5809 11.8188 21.6327C11.9353 21.678 12.0647 21.678 12.1812 21.6327C12.3143 21.5809 12.4229 21.4362 12.64 21.1467L14.1 19.2C14.3931 18.8091 14.5397 18.6137 14.7185 18.4645C14.9569 18.2656 15.2383 18.1248 15.5405 18.0535C15.7671 18 16.0114 18 16.5 18C17.8978 18 18.5967 18 19.1481 17.7716C19.8831 17.4672 20.4672 16.8831 20.7716 16.1481C21 15.5967 21 14.8978 21 13.5V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V13.5C3 14.8978 3 15.5967 3.22836 16.1481C3.53284 16.8831 4.11687 17.4672 4.85195 17.7716C5.40326 18 6.10218 18 7.5 18C7.98858 18 8.23287 18 8.45951 18.0535C8.76169 18.1248 9.04312 18.2656 9.2815 18.4645C9.46028 18.6137 9.60685 18.8091 9.9 19.2Z"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
],
|
||||
defaultProps: { boxSize: 4 },
|
||||
});
|
||||
|
||||
export default AnnotationInfo;
|
19
src/components/icons/annotation-plus.tsx
Normal file
19
src/components/icons/annotation-plus.tsx
Normal file
@ -0,0 +1,19 @@
|
||||
import { createIcon } from "@chakra-ui/icons";
|
||||
|
||||
const AnnotationPlus = createIcon({
|
||||
displayName: "AnnotationPlus",
|
||||
viewBox: "0 0 24 24",
|
||||
path: [
|
||||
<path
|
||||
d="M12 13.5V7.5M9 10.5H15M9.9 19.2L11.36 21.1467C11.5771 21.4362 11.6857 21.5809 11.8188 21.6327C11.9353 21.678 12.0647 21.678 12.1812 21.6327C12.3143 21.5809 12.4229 21.4362 12.64 21.1467L14.1 19.2C14.3931 18.8091 14.5397 18.6137 14.7185 18.4645C14.9569 18.2656 15.2383 18.1248 15.5405 18.0535C15.7671 18 16.0114 18 16.5 18C17.8978 18 18.5967 18 19.1481 17.7716C19.8831 17.4672 20.4672 16.8831 20.7716 16.1481C21 15.5967 21 14.8978 21 13.5V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V13.5C3 14.8978 3 15.5967 3.22836 16.1481C3.53284 16.8831 4.11687 17.4672 4.85195 17.7716C5.40326 18 6.10218 18 7.5 18C7.98858 18 8.23287 18 8.45951 18.0535C8.76169 18.1248 9.04312 18.2656 9.2815 18.4645C9.46028 18.6137 9.60685 18.8091 9.9 19.2Z"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
],
|
||||
defaultProps: { boxSize: 4 },
|
||||
});
|
||||
|
||||
export default AnnotationPlus;
|
19
src/components/icons/annotation-question.tsx
Normal file
19
src/components/icons/annotation-question.tsx
Normal file
@ -0,0 +1,19 @@
|
||||
import { createIcon } from "@chakra-ui/icons";
|
||||
|
||||
const AnnotationQuestion = createIcon({
|
||||
displayName: "AnnotationQuestion",
|
||||
viewBox: "0 0 24 24",
|
||||
path: [
|
||||
<path
|
||||
d="M10 8.50224C10.1762 8.00136 10.524 7.579 10.9817 7.30998C11.4395 7.04095 11.9777 6.9426 12.501 7.03237C13.0243 7.12213 13.499 7.39421 13.8409 7.80041C14.1829 8.20661 14.37 8.72072 14.3692 9.25168C14.3692 10.7506 12.1209 11.5 12.1209 11.5M12.1499 14.5H12.1599M9.9 19.2L11.36 21.1467C11.5771 21.4362 11.6857 21.5809 11.8188 21.6327C11.9353 21.678 12.0647 21.678 12.1812 21.6327C12.3143 21.5809 12.4229 21.4362 12.64 21.1467L14.1 19.2C14.3931 18.8091 14.5397 18.6137 14.7185 18.4645C14.9569 18.2656 15.2383 18.1248 15.5405 18.0535C15.7671 18 16.0114 18 16.5 18C17.8978 18 18.5967 18 19.1481 17.7716C19.8831 17.4672 20.4672 16.8831 20.7716 16.1481C21 15.5967 21 14.8978 21 13.5V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V13.5C3 14.8978 3 15.5967 3.22836 16.1481C3.53284 16.8831 4.11687 17.4672 4.85195 17.7716C5.40326 18 6.10218 18 7.5 18C7.98858 18 8.23287 18 8.45951 18.0535C8.76169 18.1248 9.04312 18.2656 9.2815 18.4645C9.46028 18.6137 9.60685 18.8091 9.9 19.2Z"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
],
|
||||
defaultProps: { boxSize: 4 },
|
||||
});
|
||||
|
||||
export default AnnotationQuestion;
|
19
src/components/icons/annotation-x.tsx
Normal file
19
src/components/icons/annotation-x.tsx
Normal file
@ -0,0 +1,19 @@
|
||||
import { createIcon } from "@chakra-ui/icons";
|
||||
|
||||
const AnnotationX = createIcon({
|
||||
displayName: "AnnotationX",
|
||||
viewBox: "0 0 24 24",
|
||||
path: [
|
||||
<path
|
||||
d="M9.5 8L14.5 13M14.5 8L9.5 13M9.9 19.2L11.36 21.1467C11.5771 21.4362 11.6857 21.5809 11.8188 21.6327C11.9353 21.678 12.0647 21.678 12.1812 21.6327C12.3143 21.5809 12.4229 21.4362 12.64 21.1467L14.1 19.2C14.3931 18.8091 14.5397 18.6137 14.7185 18.4645C14.9569 18.2656 15.2383 18.1248 15.5405 18.0535C15.7671 18 16.0114 18 16.5 18C17.8978 18 18.5967 18 19.1481 17.7716C19.8831 17.4672 20.4672 16.8831 20.7716 16.1481C21 15.5967 21 14.8978 21 13.5V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V13.5C3 14.8978 3 15.5967 3.22836 16.1481C3.53284 16.8831 4.11687 17.4672 4.85195 17.7716C5.40326 18 6.10218 18 7.5 18C7.98858 18 8.23287 18 8.45951 18.0535C8.76169 18.1248 9.04312 18.2656 9.2815 18.4645C9.46028 18.6137 9.60685 18.8091 9.9 19.2Z"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
],
|
||||
defaultProps: { boxSize: 4 },
|
||||
});
|
||||
|
||||
export default AnnotationX;
|
19
src/components/icons/annotation.tsx
Normal file
19
src/components/icons/annotation.tsx
Normal file
@ -0,0 +1,19 @@
|
||||
import { createIcon } from "@chakra-ui/icons";
|
||||
|
||||
const Annotation = createIcon({
|
||||
displayName: "Annotation",
|
||||
viewBox: "0 0 24 24",
|
||||
path: [
|
||||
<path
|
||||
d="M3 7.8C3 6.11984 3 5.27976 3.32698 4.63803C3.6146 4.07354 4.07354 3.6146 4.63803 3.32698C5.27976 3 6.11984 3 7.8 3H16.2C17.8802 3 18.7202 3 19.362 3.32698C19.9265 3.6146 20.3854 4.07354 20.673 4.63803C21 5.27976 21 6.11984 21 7.8V13.5C21 14.8978 21 15.5967 20.7716 16.1481C20.4672 16.8831 19.8831 17.4672 19.1481 17.7716C18.5967 18 17.8978 18 16.5 18C16.0114 18 15.7671 18 15.5405 18.0535C15.2383 18.1248 14.9569 18.2656 14.7185 18.4645C14.5397 18.6137 14.3931 18.8091 14.1 19.2L12.64 21.1467C12.4229 21.4362 12.3143 21.5809 12.1812 21.6327C12.0647 21.678 11.9353 21.678 11.8188 21.6327C11.6857 21.5809 11.5771 21.4362 11.36 21.1467L9.9 19.2C9.60685 18.8091 9.46028 18.6137 9.2815 18.4645C9.04312 18.2656 8.76169 18.1248 8.45951 18.0535C8.23287 18 7.98858 18 7.5 18C6.10218 18 5.40326 18 4.85195 17.7716C4.11687 17.4672 3.53284 16.8831 3.22836 16.1481C3 15.5967 3 14.8978 3 13.5V7.8Z"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
],
|
||||
defaultProps: { boxSize: 4 },
|
||||
});
|
||||
|
||||
export default Annotation;
|
19
src/components/icons/announcement-01.tsx
Normal file
19
src/components/icons/announcement-01.tsx
Normal file
@ -0,0 +1,19 @@
|
||||
import { createIcon } from "@chakra-ui/icons";
|
||||
|
||||
const Announcement01 = createIcon({
|
||||
displayName: "Announcement01",
|
||||
viewBox: "0 0 24 24",
|
||||
path: [
|
||||
<path
|
||||
d="M22 7.99992V11.9999M10.25 5.49991H6.8C5.11984 5.49991 4.27976 5.49991 3.63803 5.82689C3.07354 6.11451 2.6146 6.57345 2.32698 7.13794C2 7.77968 2 8.61976 2 10.2999L2 11.4999C2 12.4318 2 12.8977 2.15224 13.2653C2.35523 13.7553 2.74458 14.1447 3.23463 14.3477C3.60218 14.4999 4.06812 14.4999 5 14.4999V18.7499C5 18.9821 5 19.0982 5.00963 19.1959C5.10316 20.1455 5.85441 20.8968 6.80397 20.9903C6.90175 20.9999 7.01783 20.9999 7.25 20.9999C7.48217 20.9999 7.59826 20.9999 7.69604 20.9903C8.64559 20.8968 9.39685 20.1455 9.49037 19.1959C9.5 19.0982 9.5 18.9821 9.5 18.7499V14.4999H10.25C12.0164 14.4999 14.1772 15.4468 15.8443 16.3556C16.8168 16.8857 17.3031 17.1508 17.6216 17.1118C17.9169 17.0756 18.1402 16.943 18.3133 16.701C18.5 16.4401 18.5 15.9179 18.5 14.8736V5.1262C18.5 4.08191 18.5 3.55976 18.3133 3.2988C18.1402 3.05681 17.9169 2.92421 17.6216 2.88804C17.3031 2.84903 16.8168 3.11411 15.8443 3.64427C14.1772 4.55302 12.0164 5.49991 10.25 5.49991Z"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
],
|
||||
defaultProps: { boxSize: 4 },
|
||||
});
|
||||
|
||||
export default Announcement01;
|
19
src/components/icons/announcement-02.tsx
Normal file
19
src/components/icons/announcement-02.tsx
Normal file
@ -0,0 +1,19 @@
|
||||
import { createIcon } from "@chakra-ui/icons";
|
||||
|
||||
const Announcement02 = createIcon({
|
||||
displayName: "Announcement02",
|
||||
viewBox: "0 0 24 24",
|
||||
path: [
|
||||
<path
|
||||
d="M4 13.9999L5.57465 20.2985C5.61893 20.4756 5.64107 20.5642 5.66727 20.6415C5.92317 21.397 6.60352 21.9282 7.39852 21.9933C7.4799 21.9999 7.5712 21.9999 7.75379 21.9999C7.98244 21.9999 8.09677 21.9999 8.19308 21.9906C9.145 21.8982 9.89834 21.1449 9.99066 20.193C10 20.0967 10 19.9823 10 19.7537V5.49991M18.5 13.4999C20.433 13.4999 22 11.9329 22 9.99991C22 8.06691 20.433 6.49991 18.5 6.49991M10.25 5.49991H6.5C4.01472 5.49991 2 7.51463 2 9.99991C2 12.4852 4.01472 14.4999 6.5 14.4999H10.25C12.0164 14.4999 14.1772 15.4468 15.8443 16.3556C16.8168 16.8857 17.3031 17.1508 17.6216 17.1118C17.9169 17.0756 18.1402 16.943 18.3133 16.701C18.5 16.4401 18.5 15.9179 18.5 14.8736V5.1262C18.5 4.08191 18.5 3.55976 18.3133 3.2988C18.1402 3.05681 17.9169 2.92421 17.6216 2.88804C17.3031 2.84903 16.8168 3.11411 15.8443 3.64427C14.1772 4.55302 12.0164 5.49991 10.25 5.49991Z"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
],
|
||||
defaultProps: { boxSize: 4 },
|
||||
});
|
||||
|
||||
export default Announcement02;
|
19
src/components/icons/announcement-03.tsx
Normal file
19
src/components/icons/announcement-03.tsx
Normal file
@ -0,0 +1,19 @@
|
||||
import { createIcon } from "@chakra-ui/icons";
|
||||
|
||||
const Announcement03 = createIcon({
|
||||
displayName: "Announcement03",
|
||||
viewBox: "0 0 24 24",
|
||||
path: [
|
||||
<path
|
||||
d="M18.5 16C20.433 16 22 13.0899 22 9.5C22 5.91015 20.433 3 18.5 3M18.5 16C16.567 16 15 13.0899 15 9.5C15 5.91015 16.567 3 18.5 3M18.5 16L5.44354 13.6261C4.51605 13.4575 4.05231 13.3731 3.67733 13.189C2.91447 12.8142 2.34636 12.1335 2.11414 11.3159C2 10.914 2 10.4427 2 9.5C2 8.5573 2 8.08595 2.11414 7.68407C2.34636 6.86649 2.91447 6.18577 3.67733 5.81105C4.05231 5.62685 4.51605 5.54254 5.44354 5.3739L18.5 3M5 14L5.39386 19.514C5.43126 20.0376 5.44996 20.2995 5.56387 20.4979C5.66417 20.6726 5.81489 20.8129 5.99629 20.9005C6.20232 21 6.46481 21 6.98979 21H8.7722C9.37234 21 9.67242 21 9.89451 20.8803C10.0897 20.7751 10.2443 20.6081 10.3342 20.4055C10.4365 20.1749 10.4135 19.8757 10.3675 19.2773L10 14.5"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
],
|
||||
defaultProps: { boxSize: 4 },
|
||||
});
|
||||
|
||||
export default Announcement03;
|
19
src/components/icons/archive.tsx
Normal file
19
src/components/icons/archive.tsx
Normal file
@ -0,0 +1,19 @@
|
||||
import { createIcon } from "@chakra-ui/icons";
|
||||
|
||||
const Archive = createIcon({
|
||||
displayName: "Archive",
|
||||
viewBox: "0 0 24 24",
|
||||
path: [
|
||||
<path
|
||||
d="M4 7.9966C3.83599 7.99236 3.7169 7.98287 3.60982 7.96157C2.81644 7.80376 2.19624 7.18356 2.03843 6.39018C2 6.19698 2 5.96466 2 5.5C2 5.03534 2 4.80302 2.03843 4.60982C2.19624 3.81644 2.81644 3.19624 3.60982 3.03843C3.80302 3 4.03534 3 4.5 3H19.5C19.9647 3 20.197 3 20.3902 3.03843C21.1836 3.19624 21.8038 3.81644 21.9616 4.60982C22 4.80302 22 5.03534 22 5.5C22 5.96466 22 6.19698 21.9616 6.39018C21.8038 7.18356 21.1836 7.80376 20.3902 7.96157C20.2831 7.98287 20.164 7.99236 20 7.9966M10 13H14M4 8H20V16.2C20 17.8802 20 18.7202 19.673 19.362C19.3854 19.9265 18.9265 20.3854 18.362 20.673C17.7202 21 16.8802 21 15.2 21H8.8C7.11984 21 6.27976 21 5.63803 20.673C5.07354 20.3854 4.6146 19.9265 4.32698 19.362C4 18.7202 4 17.8802 4 16.2V8Z"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
],
|
||||
defaultProps: { boxSize: 4 },
|
||||
});
|
||||
|
||||
export default Archive;
|
19
src/components/icons/arrow-block-down.tsx
Normal file
19
src/components/icons/arrow-block-down.tsx
Normal file
@ -0,0 +1,19 @@
|
||||
import { createIcon } from "@chakra-ui/icons";
|
||||
|
||||
const ArrowBlockDown = createIcon({
|
||||
displayName: "ArrowBlockDown",
|
||||
viewBox: "0 0 24 24",
|
||||
path: [
|
||||
<path
|
||||
d="M9 3.8C9 3.51997 9 3.37996 9.0545 3.273C9.10243 3.17892 9.17892 3.10243 9.273 3.0545C9.37996 3 9.51997 3 9.8 3H14.2C14.48 3 14.62 3 14.727 3.0545C14.8211 3.10243 14.8976 3.17892 14.9455 3.273C15 3.37996 15 3.51997 15 3.8V14H19L12 21L5 14H9V3.8Z"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
],
|
||||
defaultProps: { boxSize: 4 },
|
||||
});
|
||||
|
||||
export default ArrowBlockDown;
|
19
src/components/icons/arrow-block-left.tsx
Normal file
19
src/components/icons/arrow-block-left.tsx
Normal file
@ -0,0 +1,19 @@
|
||||
import { createIcon } from "@chakra-ui/icons";
|
||||
|
||||
const ArrowBlockLeft = createIcon({
|
||||
displayName: "ArrowBlockLeft",
|
||||
viewBox: "0 0 24 24",
|
||||
path: [
|
||||
<path
|
||||
d="M3 12L10 5V9H20.2C20.48 9 20.62 9 20.727 9.0545C20.8211 9.10243 20.8976 9.17892 20.9455 9.273C21 9.37996 21 9.51997 21 9.8V14.2C21 14.48 21 14.62 20.9455 14.727C20.8976 14.8211 20.8211 14.8976 20.727 14.9455C20.62 15 20.48 15 20.2 15H10V19L3 12Z"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
],
|
||||
defaultProps: { boxSize: 4 },
|
||||
});
|
||||
|
||||
export default ArrowBlockLeft;
|
19
src/components/icons/arrow-block-right.tsx
Normal file
19
src/components/icons/arrow-block-right.tsx
Normal file
@ -0,0 +1,19 @@
|
||||
import { createIcon } from "@chakra-ui/icons";
|
||||
|
||||
const ArrowBlockRight = createIcon({
|
||||
displayName: "ArrowBlockRight",
|
||||
viewBox: "0 0 24 24",
|
||||
path: [
|
||||
<path
|
||||
d="M21 12L14 5V9H3.8C3.51997 9 3.37996 9 3.273 9.0545C3.17892 9.10243 3.10243 9.17892 3.0545 9.273C3 9.37996 3 9.51997 3 9.8V14.2C3 14.48 3 14.62 3.0545 14.727C3.10243 14.8211 3.17892 14.8976 3.273 14.9455C3.37996 15 3.51997 15 3.8 15H14V19L21 12Z"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
],
|
||||
defaultProps: { boxSize: 4 },
|
||||
});
|
||||
|
||||
export default ArrowBlockRight;
|
19
src/components/icons/arrow-block-up.tsx
Normal file
19
src/components/icons/arrow-block-up.tsx
Normal file
@ -0,0 +1,19 @@
|
||||
import { createIcon } from "@chakra-ui/icons";
|
||||
|
||||
const ArrowBlockUp = createIcon({
|
||||
displayName: "ArrowBlockUp",
|
||||
viewBox: "0 0 24 24",
|
||||
path: [
|
||||
<path
|
||||
d="M9.8 21C9.51997 21 9.37996 21 9.273 20.9455C9.17892 20.8976 9.10243 20.8211 9.0545 20.727C9 20.62 9 20.48 9 20.2V10H5L12 3L19 10H15V20.2C15 20.48 15 20.62 14.9455 20.727C14.8976 20.8211 14.8211 20.8976 14.727 20.9455C14.62 21 14.48 21 14.2 21H9.8Z"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
],
|
||||
defaultProps: { boxSize: 4 },
|
||||
});
|
||||
|
||||
export default ArrowBlockUp;
|
19
src/components/icons/arrow-circle-broken-down-left.tsx
Normal file
19
src/components/icons/arrow-circle-broken-down-left.tsx
Normal file
@ -0,0 +1,19 @@
|
||||
import { createIcon } from "@chakra-ui/icons";
|
||||
|
||||
const ArrowCircleBrokenDownLeft = createIcon({
|
||||
displayName: "ArrowCircleBrokenDownLeft",
|
||||
viewBox: "0 0 24 24",
|
||||
path: [
|
||||
<path
|
||||
d="M9.00023 9.00007V15.0001M9.00023 15.0001H15.0002M9.00023 15.0001L19 5.00001M21.6606 9.41051C22.5515 12.7467 21.6884 16.4538 19.0711 19.0711C15.1658 22.9764 8.83418 22.9764 4.92893 19.0711C1.02369 15.1659 1.02369 8.83424 4.92893 4.92899C7.54623 2.3117 11.2534 1.44852 14.5896 2.33944"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
],
|
||||
defaultProps: { boxSize: 4 },
|
||||
});
|
||||
|
||||
export default ArrowCircleBrokenDownLeft;
|
19
src/components/icons/arrow-circle-broken-down-right.tsx
Normal file
19
src/components/icons/arrow-circle-broken-down-right.tsx
Normal file
@ -0,0 +1,19 @@
|
||||
import { createIcon } from "@chakra-ui/icons";
|
||||
|
||||
const ArrowCircleBrokenDownRight = createIcon({
|
||||
displayName: "ArrowCircleBrokenDownRight",
|
||||
viewBox: "0 0 24 24",
|
||||
path: [
|
||||
<path
|
||||
d="M9.41045 2.33944C12.7466 1.44852 16.4538 2.3117 19.0711 4.92899C22.9763 8.83424 22.9763 15.1659 19.0711 19.0711C15.1658 22.9764 8.83418 22.9764 4.92893 19.0711C2.31164 16.4538 1.44846 12.7467 2.33938 9.41051M15.0001 9.00007V15.0001M15.0001 15.0001H9.00014M15.0001 15.0001L4.99995 5.00001"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
],
|
||||
defaultProps: { boxSize: 4 },
|
||||
});
|
||||
|
||||
export default ArrowCircleBrokenDownRight;
|
19
src/components/icons/arrow-circle-broken-down.tsx
Normal file
19
src/components/icons/arrow-circle-broken-down.tsx
Normal file
@ -0,0 +1,19 @@
|
||||
import { createIcon } from "@chakra-ui/icons";
|
||||
|
||||
const ArrowCircleBrokenDown = createIcon({
|
||||
displayName: "ArrowCircleBrokenDown",
|
||||
viewBox: "0 0 24 24",
|
||||
path: [
|
||||
<path
|
||||
d="M17 3.33782C19.989 5.06687 22 8.29859 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 8.29859 4.01099 5.06687 7 3.33782M8 12L12 16M12 16L16 12M12 16V2"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
],
|
||||
defaultProps: { boxSize: 4 },
|
||||
});
|
||||
|
||||
export default ArrowCircleBrokenDown;
|
19
src/components/icons/arrow-circle-broken-left.tsx
Normal file
19
src/components/icons/arrow-circle-broken-left.tsx
Normal file
@ -0,0 +1,19 @@
|
||||
import { createIcon } from "@chakra-ui/icons";
|
||||
|
||||
const ArrowCircleBrokenLeft = createIcon({
|
||||
displayName: "ArrowCircleBrokenLeft",
|
||||
viewBox: "0 0 24 24",
|
||||
path: [
|
||||
<path
|
||||
d="M20.6621 17C18.933 19.989 15.7013 22 11.9999 22C6.47703 22 1.99988 17.5228 1.99988 12C1.99988 6.47715 6.47703 2 11.9999 2C15.7013 2 18.933 4.01099 20.6621 7M11.9999 8L7.99995 12M7.99995 12L11.9999 16M7.99995 12H21.9999"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
],
|
||||
defaultProps: { boxSize: 4 },
|
||||
});
|
||||
|
||||
export default ArrowCircleBrokenLeft;
|
19
src/components/icons/arrow-circle-broken-right.tsx
Normal file
19
src/components/icons/arrow-circle-broken-right.tsx
Normal file
@ -0,0 +1,19 @@
|
||||
import { createIcon } from "@chakra-ui/icons";
|
||||
|
||||
const ArrowCircleBrokenRight = createIcon({
|
||||
displayName: "ArrowCircleBrokenRight",
|
||||
viewBox: "0 0 24 24",
|
||||
path: [
|
||||
<path
|
||||
d="M3.33789 7C5.06694 4.01099 8.29866 2 12.0001 2C17.5229 2 22.0001 6.47715 22.0001 12C22.0001 17.5228 17.5229 22 12.0001 22C8.29866 22 5.06694 19.989 3.33789 17M12 16L16 12M16 12L12 8M16 12H2"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
],
|
||||
defaultProps: { boxSize: 4 },
|
||||
});
|
||||
|
||||
export default ArrowCircleBrokenRight;
|
19
src/components/icons/arrow-circle-broken-up-left.tsx
Normal file
19
src/components/icons/arrow-circle-broken-up-left.tsx
Normal file
@ -0,0 +1,19 @@
|
||||
import { createIcon } from "@chakra-ui/icons";
|
||||
|
||||
const ArrowCircleBrokenUpLeft = createIcon({
|
||||
displayName: "ArrowCircleBrokenUpLeft",
|
||||
viewBox: "0 0 24 24",
|
||||
path: [
|
||||
<path
|
||||
d="M14.5896 21.6606C11.2534 22.5515 7.54623 21.6884 4.92893 19.0711C1.02369 15.1658 1.02369 8.83418 4.92893 4.92893C8.83418 1.02369 15.1658 1.02369 19.0711 4.92893C21.6884 7.54623 22.5515 11.2534 21.6606 14.5896M9.00023 15.0001V9.0001M9.00023 9.0001H15.0002M9.00023 9.0001L19 19"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
],
|
||||
defaultProps: { boxSize: 4 },
|
||||
});
|
||||
|
||||
export default ArrowCircleBrokenUpLeft;
|
19
src/components/icons/arrow-circle-broken-up-right.tsx
Normal file
19
src/components/icons/arrow-circle-broken-up-right.tsx
Normal file
@ -0,0 +1,19 @@
|
||||
import { createIcon } from "@chakra-ui/icons";
|
||||
|
||||
const ArrowCircleBrokenUpRight = createIcon({
|
||||
displayName: "ArrowCircleBrokenUpRight",
|
||||
viewBox: "0 0 24 24",
|
||||
path: [
|
||||
<path
|
||||
d="M2.33938 14.5896C1.44846 11.2534 2.31164 7.54623 4.92893 4.92893C8.83418 1.02369 15.1658 1.02369 19.0711 4.92893C22.9763 8.83418 22.9763 15.1658 19.0711 19.0711C16.4538 21.6884 12.7466 22.5515 9.41045 21.6606M15.0001 15.0001V9.0001M15.0001 9.0001H9.00014M15.0001 9.0001L4.99995 19"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
],
|
||||
defaultProps: { boxSize: 4 },
|
||||
});
|
||||
|
||||
export default ArrowCircleBrokenUpRight;
|
19
src/components/icons/arrow-circle-broken-up.tsx
Normal file
19
src/components/icons/arrow-circle-broken-up.tsx
Normal file
@ -0,0 +1,19 @@
|
||||
import { createIcon } from "@chakra-ui/icons";
|
||||
|
||||
const ArrowCircleBrokenUp = createIcon({
|
||||
displayName: "ArrowCircleBrokenUp",
|
||||
viewBox: "0 0 24 24",
|
||||
path: [
|
||||
<path
|
||||
d="M7 20.6621C4.01099 18.933 2 15.7013 2 11.9999C2 6.47703 6.47715 1.99988 12 1.99988C17.5228 1.99988 22 6.47703 22 11.9999C22 15.7013 19.989 18.933 17 20.6621M16 11.9999L12 7.99995M12 7.99995L8 11.9999M12 7.99995V21.9999"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
],
|
||||
defaultProps: { boxSize: 4 },
|
||||
});
|
||||
|
||||
export default ArrowCircleBrokenUp;
|
19
src/components/icons/arrow-circle-down-left.tsx
Normal file
19
src/components/icons/arrow-circle-down-left.tsx
Normal file
@ -0,0 +1,19 @@
|
||||
import { createIcon } from "@chakra-ui/icons";
|
||||
|
||||
const ArrowCircleDownLeft = createIcon({
|
||||
displayName: "ArrowCircleDownLeft",
|
||||
viewBox: "0 0 24 24",
|
||||
path: [
|
||||
<path
|
||||
d="M9.00019 9.00005V15.0001M9.00019 15.0001H15.0002M9.00019 15.0001L15.0002 8.99994M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
],
|
||||
defaultProps: { boxSize: 4 },
|
||||
});
|
||||
|
||||
export default ArrowCircleDownLeft;
|
19
src/components/icons/arrow-circle-down-right.tsx
Normal file
19
src/components/icons/arrow-circle-down-right.tsx
Normal file
@ -0,0 +1,19 @@
|
||||
import { createIcon } from "@chakra-ui/icons";
|
||||
|
||||
const ArrowCircleDownRight = createIcon({
|
||||
displayName: "ArrowCircleDownRight",
|
||||
viewBox: "0 0 24 24",
|
||||
path: [
|
||||
<path
|
||||
d="M15.0002 9.00005V15.0001M15.0002 15.0001H9.00019M15.0002 15.0001L9.00019 8.99994M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
],
|
||||
defaultProps: { boxSize: 4 },
|
||||
});
|
||||
|
||||
export default ArrowCircleDownRight;
|
19
src/components/icons/arrow-circle-down.tsx
Normal file
19
src/components/icons/arrow-circle-down.tsx
Normal file
@ -0,0 +1,19 @@
|
||||
import { createIcon } from "@chakra-ui/icons";
|
||||
|
||||
const ArrowCircleDown = createIcon({
|
||||
displayName: "ArrowCircleDown",
|
||||
viewBox: "0 0 24 24",
|
||||
path: [
|
||||
<path
|
||||
d="M8 12L12 16M12 16L16 12M12 16V8M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
],
|
||||
defaultProps: { boxSize: 4 },
|
||||
});
|
||||
|
||||
export default ArrowCircleDown;
|
19
src/components/icons/arrow-circle-left.tsx
Normal file
19
src/components/icons/arrow-circle-left.tsx
Normal file
@ -0,0 +1,19 @@
|
||||
import { createIcon } from "@chakra-ui/icons";
|
||||
|
||||
const ArrowCircleLeft = createIcon({
|
||||
displayName: "ArrowCircleLeft",
|
||||
viewBox: "0 0 24 24",
|
||||
path: [
|
||||
<path
|
||||
d="M12 8L8 12M8 12L12 16M8 12H16M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
],
|
||||
defaultProps: { boxSize: 4 },
|
||||
});
|
||||
|
||||
export default ArrowCircleLeft;
|
19
src/components/icons/arrow-circle-right.tsx
Normal file
19
src/components/icons/arrow-circle-right.tsx
Normal file
@ -0,0 +1,19 @@
|
||||
import { createIcon } from "@chakra-ui/icons";
|
||||
|
||||
const ArrowCircleRight = createIcon({
|
||||
displayName: "ArrowCircleRight",
|
||||
viewBox: "0 0 24 24",
|
||||
path: [
|
||||
<path
|
||||
d="M12 16L16 12M16 12L12 8M16 12H8M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
],
|
||||
defaultProps: { boxSize: 4 },
|
||||
});
|
||||
|
||||
export default ArrowCircleRight;
|
19
src/components/icons/arrow-circle-up-left.tsx
Normal file
19
src/components/icons/arrow-circle-up-left.tsx
Normal file
@ -0,0 +1,19 @@
|
||||
import { createIcon } from "@chakra-ui/icons";
|
||||
|
||||
const ArrowCircleUpLeft = createIcon({
|
||||
displayName: "ArrowCircleUpLeft",
|
||||
viewBox: "0 0 24 24",
|
||||
path: [
|
||||
<path
|
||||
d="M9.00019 15.0001V9.00005M9.00019 9.00005H15.0002M9.00019 9.00005L15.0002 14.9999M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
],
|
||||
defaultProps: { boxSize: 4 },
|
||||
});
|
||||
|
||||
export default ArrowCircleUpLeft;
|
19
src/components/icons/arrow-circle-up-right.tsx
Normal file
19
src/components/icons/arrow-circle-up-right.tsx
Normal file
@ -0,0 +1,19 @@
|
||||
import { createIcon } from "@chakra-ui/icons";
|
||||
|
||||
const ArrowCircleUpRight = createIcon({
|
||||
displayName: "ArrowCircleUpRight",
|
||||
viewBox: "0 0 24 24",
|
||||
path: [
|
||||
<path
|
||||
d="M15.0002 15.0001V9.00005M15.0002 9.00005H9.00019M15.0002 9.00005L9.00019 14.9999M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
],
|
||||
defaultProps: { boxSize: 4 },
|
||||
});
|
||||
|
||||
export default ArrowCircleUpRight;
|
19
src/components/icons/arrow-circle-up.tsx
Normal file
19
src/components/icons/arrow-circle-up.tsx
Normal file
@ -0,0 +1,19 @@
|
||||
import { createIcon } from "@chakra-ui/icons";
|
||||
|
||||
const ArrowCircleUp = createIcon({
|
||||
displayName: "ArrowCircleUp",
|
||||
viewBox: "0 0 24 24",
|
||||
path: [
|
||||
<path
|
||||
d="M16 12L12 8M12 8L8 12M12 8V16M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
],
|
||||
defaultProps: { boxSize: 4 },
|
||||
});
|
||||
|
||||
export default ArrowCircleUp;
|
19
src/components/icons/arrow-down-left.tsx
Normal file
19
src/components/icons/arrow-down-left.tsx
Normal file
@ -0,0 +1,19 @@
|
||||
import { createIcon } from "@chakra-ui/icons";
|
||||
|
||||
const ArrowDownLeft = createIcon({
|
||||
displayName: "ArrowDownLeft",
|
||||
viewBox: "0 0 24 24",
|
||||
path: [
|
||||
<path
|
||||
d="M17 7L7 17M7 17H17M7 17V7"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
],
|
||||
defaultProps: { boxSize: 4 },
|
||||
});
|
||||
|
||||
export default ArrowDownLeft;
|
19
src/components/icons/arrow-down-right.tsx
Normal file
19
src/components/icons/arrow-down-right.tsx
Normal file
@ -0,0 +1,19 @@
|
||||
import { createIcon } from "@chakra-ui/icons";
|
||||
|
||||
const ArrowDownRight = createIcon({
|
||||
displayName: "ArrowDownRight",
|
||||
viewBox: "0 0 24 24",
|
||||
path: [
|
||||
<path
|
||||
d="M7 7L17 17M17 17V7M17 17H7"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
],
|
||||
defaultProps: { boxSize: 4 },
|
||||
});
|
||||
|
||||
export default ArrowDownRight;
|
19
src/components/icons/arrow-down.tsx
Normal file
19
src/components/icons/arrow-down.tsx
Normal file
@ -0,0 +1,19 @@
|
||||
import { createIcon } from "@chakra-ui/icons";
|
||||
|
||||
const ArrowDown = createIcon({
|
||||
displayName: "ArrowDown",
|
||||
viewBox: "0 0 24 24",
|
||||
path: [
|
||||
<path
|
||||
d="M12 5V19M12 19L19 12M12 19L5 12"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
],
|
||||
defaultProps: { boxSize: 4 },
|
||||
});
|
||||
|
||||
export default ArrowDown;
|
19
src/components/icons/arrow-left.tsx
Normal file
19
src/components/icons/arrow-left.tsx
Normal file
@ -0,0 +1,19 @@
|
||||
import { createIcon } from "@chakra-ui/icons";
|
||||
|
||||
const ArrowLeft = createIcon({
|
||||
displayName: "ArrowLeft",
|
||||
viewBox: "0 0 24 24",
|
||||
path: [
|
||||
<path
|
||||
d="M19 12H5M5 12L12 19M5 12L12 5"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
],
|
||||
defaultProps: { boxSize: 4 },
|
||||
});
|
||||
|
||||
export default ArrowLeft;
|
19
src/components/icons/arrow-narrow-down-left.tsx
Normal file
19
src/components/icons/arrow-narrow-down-left.tsx
Normal file
@ -0,0 +1,19 @@
|
||||
import { createIcon } from "@chakra-ui/icons";
|
||||
|
||||
const ArrowNarrowDownLeft = createIcon({
|
||||
displayName: "ArrowNarrowDownLeft",
|
||||
viewBox: "0 0 24 24",
|
||||
path: [
|
||||
<path
|
||||
d="M18 6L6 18M6 18H14M6 18V10"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
],
|
||||
defaultProps: { boxSize: 4 },
|
||||
});
|
||||
|
||||
export default ArrowNarrowDownLeft;
|
19
src/components/icons/arrow-narrow-down-right.tsx
Normal file
19
src/components/icons/arrow-narrow-down-right.tsx
Normal file
@ -0,0 +1,19 @@
|
||||
import { createIcon } from "@chakra-ui/icons";
|
||||
|
||||
const ArrowNarrowDownRight = createIcon({
|
||||
displayName: "ArrowNarrowDownRight",
|
||||
viewBox: "0 0 24 24",
|
||||
path: [
|
||||
<path
|
||||
d="M6 6L18 18M18 18V10M18 18H10"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
],
|
||||
defaultProps: { boxSize: 4 },
|
||||
});
|
||||
|
||||
export default ArrowNarrowDownRight;
|
19
src/components/icons/arrow-narrow-down.tsx
Normal file
19
src/components/icons/arrow-narrow-down.tsx
Normal file
@ -0,0 +1,19 @@
|
||||
import { createIcon } from "@chakra-ui/icons";
|
||||
|
||||
const ArrowNarrowDown = createIcon({
|
||||
displayName: "ArrowNarrowDown",
|
||||
viewBox: "0 0 24 24",
|
||||
path: [
|
||||
<path
|
||||
d="M12 4V20M12 20L18 14M12 20L6 14"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
],
|
||||
defaultProps: { boxSize: 4 },
|
||||
});
|
||||
|
||||
export default ArrowNarrowDown;
|
19
src/components/icons/arrow-narrow-left.tsx
Normal file
19
src/components/icons/arrow-narrow-left.tsx
Normal file
@ -0,0 +1,19 @@
|
||||
import { createIcon } from "@chakra-ui/icons";
|
||||
|
||||
const ArrowNarrowLeft = createIcon({
|
||||
displayName: "ArrowNarrowLeft",
|
||||
viewBox: "0 0 24 24",
|
||||
path: [
|
||||
<path
|
||||
d="M20 12H4M4 12L10 18M4 12L10 6"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
],
|
||||
defaultProps: { boxSize: 4 },
|
||||
});
|
||||
|
||||
export default ArrowNarrowLeft;
|
19
src/components/icons/arrow-narrow-right.tsx
Normal file
19
src/components/icons/arrow-narrow-right.tsx
Normal file
@ -0,0 +1,19 @@
|
||||
import { createIcon } from "@chakra-ui/icons";
|
||||
|
||||
const ArrowNarrowRight = createIcon({
|
||||
displayName: "ArrowNarrowRight",
|
||||
viewBox: "0 0 24 24",
|
||||
path: [
|
||||
<path
|
||||
d="M4 12H20M20 12L14 6M20 12L14 18"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
],
|
||||
defaultProps: { boxSize: 4 },
|
||||
});
|
||||
|
||||
export default ArrowNarrowRight;
|
19
src/components/icons/arrow-narrow-up-left.tsx
Normal file
19
src/components/icons/arrow-narrow-up-left.tsx
Normal file
@ -0,0 +1,19 @@
|
||||
import { createIcon } from "@chakra-ui/icons";
|
||||
|
||||
const ArrowNarrowUpLeft = createIcon({
|
||||
displayName: "ArrowNarrowUpLeft",
|
||||
viewBox: "0 0 24 24",
|
||||
path: [
|
||||
<path
|
||||
d="M18 18L6 6M6 6V14M6 6H14"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
],
|
||||
defaultProps: { boxSize: 4 },
|
||||
});
|
||||
|
||||
export default ArrowNarrowUpLeft;
|
19
src/components/icons/arrow-narrow-up-right.tsx
Normal file
19
src/components/icons/arrow-narrow-up-right.tsx
Normal file
@ -0,0 +1,19 @@
|
||||
import { createIcon } from "@chakra-ui/icons";
|
||||
|
||||
const ArrowNarrowUpRight = createIcon({
|
||||
displayName: "ArrowNarrowUpRight",
|
||||
viewBox: "0 0 24 24",
|
||||
path: [
|
||||
<path
|
||||
d="M6 18L18 6M18 6H10M18 6V14"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
],
|
||||
defaultProps: { boxSize: 4 },
|
||||
});
|
||||
|
||||
export default ArrowNarrowUpRight;
|
19
src/components/icons/arrow-narrow-up.tsx
Normal file
19
src/components/icons/arrow-narrow-up.tsx
Normal file
@ -0,0 +1,19 @@
|
||||
import { createIcon } from "@chakra-ui/icons";
|
||||
|
||||
const ArrowNarrowUp = createIcon({
|
||||
displayName: "ArrowNarrowUp",
|
||||
viewBox: "0 0 24 24",
|
||||
path: [
|
||||
<path
|
||||
d="M12 20V4M12 4L6 10M12 4L18 10"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
],
|
||||
defaultProps: { boxSize: 4 },
|
||||
});
|
||||
|
||||
export default ArrowNarrowUp;
|
19
src/components/icons/arrow-right.tsx
Normal file
19
src/components/icons/arrow-right.tsx
Normal file
@ -0,0 +1,19 @@
|
||||
import { createIcon } from "@chakra-ui/icons";
|
||||
|
||||
const ArrowRight = createIcon({
|
||||
displayName: "ArrowRight",
|
||||
viewBox: "0 0 24 24",
|
||||
path: [
|
||||
<path
|
||||
d="M5 12H19M19 12L12 5M19 12L12 19"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
],
|
||||
defaultProps: { boxSize: 4 },
|
||||
});
|
||||
|
||||
export default ArrowRight;
|
19
src/components/icons/arrow-square-down-left.tsx
Normal file
19
src/components/icons/arrow-square-down-left.tsx
Normal file
@ -0,0 +1,19 @@
|
||||
import { createIcon } from "@chakra-ui/icons";
|
||||
|
||||
const ArrowSquareDownLeft = createIcon({
|
||||
displayName: "ArrowSquareDownLeft",
|
||||
viewBox: "0 0 24 24",
|
||||
path: [
|
||||
<path
|
||||
d="M9.00019 9.00005V15.0001M9.00019 15.0001H15.0002M9.00019 15.0001L15.0002 8.99994M7.8 21H16.2C17.8802 21 18.7202 21 19.362 20.673C19.9265 20.3854 20.3854 19.9265 20.673 19.362C21 18.7202 21 17.8802 21 16.2V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21Z"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
],
|
||||
defaultProps: { boxSize: 4 },
|
||||
});
|
||||
|
||||
export default ArrowSquareDownLeft;
|
19
src/components/icons/arrow-square-down-right.tsx
Normal file
19
src/components/icons/arrow-square-down-right.tsx
Normal file
@ -0,0 +1,19 @@
|
||||
import { createIcon } from "@chakra-ui/icons";
|
||||
|
||||
const ArrowSquareDownRight = createIcon({
|
||||
displayName: "ArrowSquareDownRight",
|
||||
viewBox: "0 0 24 24",
|
||||
path: [
|
||||
<path
|
||||
d="M15.0002 9.00005V15.0001M15.0002 15.0001H9.00019M15.0002 15.0001L9.00019 8.99994M7.8 21H16.2C17.8802 21 18.7202 21 19.362 20.673C19.9265 20.3854 20.3854 19.9265 20.673 19.362C21 18.7202 21 17.8802 21 16.2V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21Z"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
],
|
||||
defaultProps: { boxSize: 4 },
|
||||
});
|
||||
|
||||
export default ArrowSquareDownRight;
|
19
src/components/icons/arrow-square-down.tsx
Normal file
19
src/components/icons/arrow-square-down.tsx
Normal file
@ -0,0 +1,19 @@
|
||||
import { createIcon } from "@chakra-ui/icons";
|
||||
|
||||
const ArrowSquareDown = createIcon({
|
||||
displayName: "ArrowSquareDown",
|
||||
viewBox: "0 0 24 24",
|
||||
path: [
|
||||
<path
|
||||
d="M8 12L12 16M12 16L16 12M12 16V8M7.8 21H16.2C17.8802 21 18.7202 21 19.362 20.673C19.9265 20.3854 20.3854 19.9265 20.673 19.362C21 18.7202 21 17.8802 21 16.2V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21Z"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
],
|
||||
defaultProps: { boxSize: 4 },
|
||||
});
|
||||
|
||||
export default ArrowSquareDown;
|
19
src/components/icons/arrow-square-left.tsx
Normal file
19
src/components/icons/arrow-square-left.tsx
Normal file
@ -0,0 +1,19 @@
|
||||
import { createIcon } from "@chakra-ui/icons";
|
||||
|
||||
const ArrowSquareLeft = createIcon({
|
||||
displayName: "ArrowSquareLeft",
|
||||
viewBox: "0 0 24 24",
|
||||
path: [
|
||||
<path
|
||||
d="M12 8L8 12M8 12L12 16M8 12H16M7.8 21H16.2C17.8802 21 18.7202 21 19.362 20.673C19.9265 20.3854 20.3854 19.9265 20.673 19.362C21 18.7202 21 17.8802 21 16.2V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21Z"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
],
|
||||
defaultProps: { boxSize: 4 },
|
||||
});
|
||||
|
||||
export default ArrowSquareLeft;
|
19
src/components/icons/arrow-square-right.tsx
Normal file
19
src/components/icons/arrow-square-right.tsx
Normal file
@ -0,0 +1,19 @@
|
||||
import { createIcon } from "@chakra-ui/icons";
|
||||
|
||||
const ArrowSquareRight = createIcon({
|
||||
displayName: "ArrowSquareRight",
|
||||
viewBox: "0 0 24 24",
|
||||
path: [
|
||||
<path
|
||||
d="M12 16L16 12M16 12L12 8M16 12H8M7.8 21H16.2C17.8802 21 18.7202 21 19.362 20.673C19.9265 20.3854 20.3854 19.9265 20.673 19.362C21 18.7202 21 17.8802 21 16.2V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21Z"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
],
|
||||
defaultProps: { boxSize: 4 },
|
||||
});
|
||||
|
||||
export default ArrowSquareRight;
|
19
src/components/icons/arrow-square-up-left.tsx
Normal file
19
src/components/icons/arrow-square-up-left.tsx
Normal file
@ -0,0 +1,19 @@
|
||||
import { createIcon } from "@chakra-ui/icons";
|
||||
|
||||
const ArrowSquareUpLeft = createIcon({
|
||||
displayName: "ArrowSquareUpLeft",
|
||||
viewBox: "0 0 24 24",
|
||||
path: [
|
||||
<path
|
||||
d="M9.00019 15.0001V9.00005M9.00019 9.00005H15.0002M9.00019 9.00005L15.0002 14.9999M7.8 21H16.2C17.8802 21 18.7202 21 19.362 20.673C19.9265 20.3854 20.3854 19.9265 20.673 19.362C21 18.7202 21 17.8802 21 16.2V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21Z"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
],
|
||||
defaultProps: { boxSize: 4 },
|
||||
});
|
||||
|
||||
export default ArrowSquareUpLeft;
|
19
src/components/icons/arrow-square-up-right.tsx
Normal file
19
src/components/icons/arrow-square-up-right.tsx
Normal file
@ -0,0 +1,19 @@
|
||||
import { createIcon } from "@chakra-ui/icons";
|
||||
|
||||
const ArrowSquareUpRight = createIcon({
|
||||
displayName: "ArrowSquareUpRight",
|
||||
viewBox: "0 0 24 24",
|
||||
path: [
|
||||
<path
|
||||
d="M15.0002 15.0001V9.00005M15.0002 9.00005H9.00019M15.0002 9.00005L9.00019 14.9999M7.8 21H16.2C17.8802 21 18.7202 21 19.362 20.673C19.9265 20.3854 20.3854 19.9265 20.673 19.362C21 18.7202 21 17.8802 21 16.2V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21Z"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
],
|
||||
defaultProps: { boxSize: 4 },
|
||||
});
|
||||
|
||||
export default ArrowSquareUpRight;
|
19
src/components/icons/arrow-square-up.tsx
Normal file
19
src/components/icons/arrow-square-up.tsx
Normal file
@ -0,0 +1,19 @@
|
||||
import { createIcon } from "@chakra-ui/icons";
|
||||
|
||||
const ArrowSquareUp = createIcon({
|
||||
displayName: "ArrowSquareUp",
|
||||
viewBox: "0 0 24 24",
|
||||
path: [
|
||||
<path
|
||||
d="M16 12L12 8M12 8L8 12M12 8V16M7.8 21H16.2C17.8802 21 18.7202 21 19.362 20.673C19.9265 20.3854 20.3854 19.9265 20.673 19.362C21 18.7202 21 17.8802 21 16.2V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21Z"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
],
|
||||
defaultProps: { boxSize: 4 },
|
||||
});
|
||||
|
||||
export default ArrowSquareUp;
|
19
src/components/icons/arrow-up-left.tsx
Normal file
19
src/components/icons/arrow-up-left.tsx
Normal file
@ -0,0 +1,19 @@
|
||||
import { createIcon } from "@chakra-ui/icons";
|
||||
|
||||
const ArrowUpLeft = createIcon({
|
||||
displayName: "ArrowUpLeft",
|
||||
viewBox: "0 0 24 24",
|
||||
path: [
|
||||
<path
|
||||
d="M17 17L7 7M7 7V17M7 7H17"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
],
|
||||
defaultProps: { boxSize: 4 },
|
||||
});
|
||||
|
||||
export default ArrowUpLeft;
|
19
src/components/icons/arrow-up-right.tsx
Normal file
19
src/components/icons/arrow-up-right.tsx
Normal file
@ -0,0 +1,19 @@
|
||||
import { createIcon } from "@chakra-ui/icons";
|
||||
|
||||
const ArrowUpRight = createIcon({
|
||||
displayName: "ArrowUpRight",
|
||||
viewBox: "0 0 24 24",
|
||||
path: [
|
||||
<path
|
||||
d="M7 17L17 7M17 7H7M17 7V17"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
],
|
||||
defaultProps: { boxSize: 4 },
|
||||
});
|
||||
|
||||
export default ArrowUpRight;
|
19
src/components/icons/arrow-up.tsx
Normal file
19
src/components/icons/arrow-up.tsx
Normal file
@ -0,0 +1,19 @@
|
||||
import { createIcon } from "@chakra-ui/icons";
|
||||
|
||||
const ArrowUp = createIcon({
|
||||
displayName: "ArrowUp",
|
||||
viewBox: "0 0 24 24",
|
||||
path: [
|
||||
<path
|
||||
d="M12 19V5M12 5L5 12M12 5L19 12"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
],
|
||||
defaultProps: { boxSize: 4 },
|
||||
});
|
||||
|
||||
export default ArrowUp;
|
19
src/components/icons/arrows-down.tsx
Normal file
19
src/components/icons/arrows-down.tsx
Normal file
@ -0,0 +1,19 @@
|
||||
import { createIcon } from "@chakra-ui/icons";
|
||||
|
||||
const ArrowsDown = createIcon({
|
||||
displayName: "ArrowsDown",
|
||||
viewBox: "0 0 24 24",
|
||||
path: [
|
||||
<path
|
||||
d="M17 4V15M17 15L13 11M17 15L21 11M7 4V20M7 20L3 16M7 20L11 16"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
],
|
||||
defaultProps: { boxSize: 4 },
|
||||
});
|
||||
|
||||
export default ArrowsDown;
|
19
src/components/icons/arrows-left.tsx
Normal file
19
src/components/icons/arrows-left.tsx
Normal file
@ -0,0 +1,19 @@
|
||||
import { createIcon } from "@chakra-ui/icons";
|
||||
|
||||
const ArrowsLeft = createIcon({
|
||||
displayName: "ArrowsLeft",
|
||||
viewBox: "0 0 24 24",
|
||||
path: [
|
||||
<path
|
||||
d="M20 17H4M4 17L8 21M4 17L8 13M20 7H9M9 7L13 11M9 7L13 3"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
],
|
||||
defaultProps: { boxSize: 4 },
|
||||
});
|
||||
|
||||
export default ArrowsLeft;
|
19
src/components/icons/arrows-right.tsx
Normal file
19
src/components/icons/arrows-right.tsx
Normal file
@ -0,0 +1,19 @@
|
||||
import { createIcon } from "@chakra-ui/icons";
|
||||
|
||||
const ArrowsRight = createIcon({
|
||||
displayName: "ArrowsRight",
|
||||
viewBox: "0 0 24 24",
|
||||
path: [
|
||||
<path
|
||||
d="M4 7H15M15 7L11 11M15 7L11 3M4 17H20M20 17L16 21M20 17L16 13"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
],
|
||||
defaultProps: { boxSize: 4 },
|
||||
});
|
||||
|
||||
export default ArrowsRight;
|
19
src/components/icons/arrows-triangle.tsx
Normal file
19
src/components/icons/arrows-triangle.tsx
Normal file
@ -0,0 +1,19 @@
|
||||
import { createIcon } from "@chakra-ui/icons";
|
||||
|
||||
const ArrowsTriangle = createIcon({
|
||||
displayName: "ArrowsTriangle",
|
||||
viewBox: "0 0 24 24",
|
||||
path: [
|
||||
<path
|
||||
d="M13 19H17.2942C19.1594 19 20.092 19 20.6215 18.6092C21.0832 18.2685 21.3763 17.7459 21.4263 17.1743C21.4836 16.5187 20.9973 15.7229 20.0247 14.1313L19.0278 12.5M6.13014 10.6052L3.97528 14.1314C3.00267 15.7229 2.51637 16.5187 2.57372 17.1743C2.62372 17.7459 2.91681 18.2685 3.37846 18.6092C3.90799 19 4.84059 19 6.70578 19H8.5M16.8889 8.99999L14.7305 5.46808C13.8277 3.99079 13.3763 3.25214 12.7952 3.00033C12.2879 2.78049 11.7121 2.78049 11.2048 3.00033C10.6237 3.25214 10.1723 3.99079 9.2695 5.46809L8.24967 7.13689M18 5.00006L16.9019 9.09813L12.8038 8.00006M2 11.5981L6.09808 10.5L7.19615 14.5981M15.5 22L12.5 19L15.5 16"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
fill="none"
|
||||
></path>,
|
||||
],
|
||||
defaultProps: { boxSize: 4 },
|
||||
});
|
||||
|
||||
export default ArrowsTriangle;
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user