diff --git a/.changeset/violet-gifts-notice.md b/.changeset/violet-gifts-notice.md new file mode 100644 index 000000000..2e6f37fe8 --- /dev/null +++ b/.changeset/violet-gifts-notice.md @@ -0,0 +1,5 @@ +--- +"nostrudel": minor +--- + +Update all icons diff --git a/.prettierignore b/.prettierignore index aa2846dd6..ae3de1f23 100644 --- a/.prettierignore +++ b/.prettierignore @@ -1,3 +1,4 @@ node_modules dist public/lib +stats.html diff --git a/package.json b/package.json index fc093273c..776b8d92f 100644 --- a/package.json +++ b/package.json @@ -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", diff --git a/scripts/build-icons.mjs b/scripts/build-icons.mjs new file mode 100644 index 000000000..f42f63af7 --- /dev/null +++ b/scripts/build-icons.mjs @@ -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}`); +} diff --git a/src/components/copy-icon-button.tsx b/src/components/copy-icon-button.tsx index 33c5f0b0a..11113b385 100644 --- a/src/components/copy-icon-button.tsx +++ b/src/components/copy-icon-button.tsx @@ -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) => { const [copied, setCopied] = useState(false); return ( : } + icon={copied ? : } onClick={() => { if (text && navigator.clipboard && !copied) { navigator.clipboard.writeText(text); diff --git a/src/components/event-zap-modal/pay-step.tsx b/src/components/event-zap-modal/pay-step.tsx index 9e39f5ce1..3b7c8975a 100644 --- a/src/components/event-zap-modal/pay-step.tsx +++ b/src/components/event-zap-modal/pay-step.tsx @@ -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 : } + icon={showMore.isOpen ? : } aria-label="More Options" onClick={showMore.onToggle} /> diff --git a/src/components/icons.tsx b/src/components/icons.tsx index b35dc53ae..df559fc19 100644 --- a/src/components/icons.tsx +++ b/src/components/icons.tsx @@ -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", diff --git a/src/components/icons/ZoomOut.tsx b/src/components/icons/ZoomOut.tsx new file mode 100644 index 000000000..bb7f82cbe --- /dev/null +++ b/src/components/icons/ZoomOut.tsx @@ -0,0 +1,12 @@ +import { createIcon } from "@chakra-ui/icons"; + +const UpDownIcon = createIcon({ + displayName: "UpDownIcon", + viewBox: "0 0 200 200", + path: [ + , + , + ], +}); + +export default UpDownIcon; diff --git a/src/components/icons/activity-heart.tsx b/src/components/icons/activity-heart.tsx new file mode 100644 index 000000000..9edeae875 --- /dev/null +++ b/src/components/icons/activity-heart.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ActivityHeart = createIcon({ + displayName: "ActivityHeart", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ActivityHeart; diff --git a/src/components/icons/activity.tsx b/src/components/icons/activity.tsx new file mode 100644 index 000000000..04d6b5780 --- /dev/null +++ b/src/components/icons/activity.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Activity = createIcon({ + displayName: "Activity", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Activity; diff --git a/src/components/icons/airplay.tsx b/src/components/icons/airplay.tsx new file mode 100644 index 000000000..7c6e298a5 --- /dev/null +++ b/src/components/icons/airplay.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Airplay = createIcon({ + displayName: "Airplay", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Airplay; diff --git a/src/components/icons/airpods.tsx b/src/components/icons/airpods.tsx new file mode 100644 index 000000000..e45877e7f --- /dev/null +++ b/src/components/icons/airpods.tsx @@ -0,0 +1,27 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Airpods = createIcon({ + displayName: "Airpods", + viewBox: "0 0 24 24", + path: [ + , + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Airpods; diff --git a/src/components/icons/alarm-clock-check.tsx b/src/components/icons/alarm-clock-check.tsx new file mode 100644 index 000000000..788977553 --- /dev/null +++ b/src/components/icons/alarm-clock-check.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const AlarmClockCheck = createIcon({ + displayName: "AlarmClockCheck", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default AlarmClockCheck; diff --git a/src/components/icons/alarm-clock-minus.tsx b/src/components/icons/alarm-clock-minus.tsx new file mode 100644 index 000000000..3dde4ee5e --- /dev/null +++ b/src/components/icons/alarm-clock-minus.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const AlarmClockMinus = createIcon({ + displayName: "AlarmClockMinus", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default AlarmClockMinus; diff --git a/src/components/icons/alarm-clock-off.tsx b/src/components/icons/alarm-clock-off.tsx new file mode 100644 index 000000000..4e19e6287 --- /dev/null +++ b/src/components/icons/alarm-clock-off.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const AlarmClockOff = createIcon({ + displayName: "AlarmClockOff", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default AlarmClockOff; diff --git a/src/components/icons/alarm-clock-plus.tsx b/src/components/icons/alarm-clock-plus.tsx new file mode 100644 index 000000000..62ed44dc7 --- /dev/null +++ b/src/components/icons/alarm-clock-plus.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const AlarmClockPlus = createIcon({ + displayName: "AlarmClockPlus", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default AlarmClockPlus; diff --git a/src/components/icons/alarm-clock.tsx b/src/components/icons/alarm-clock.tsx new file mode 100644 index 000000000..5d5b4371c --- /dev/null +++ b/src/components/icons/alarm-clock.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const AlarmClock = createIcon({ + displayName: "AlarmClock", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default AlarmClock; diff --git a/src/components/icons/alert-circle.tsx b/src/components/icons/alert-circle.tsx new file mode 100644 index 000000000..4560d785c --- /dev/null +++ b/src/components/icons/alert-circle.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const AlertCircle = createIcon({ + displayName: "AlertCircle", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default AlertCircle; diff --git a/src/components/icons/alert-hexagon.tsx b/src/components/icons/alert-hexagon.tsx new file mode 100644 index 000000000..b1426cb48 --- /dev/null +++ b/src/components/icons/alert-hexagon.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const AlertHexagon = createIcon({ + displayName: "AlertHexagon", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default AlertHexagon; diff --git a/src/components/icons/alert-octagon.tsx b/src/components/icons/alert-octagon.tsx new file mode 100644 index 000000000..fc58e8f1f --- /dev/null +++ b/src/components/icons/alert-octagon.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const AlertOctagon = createIcon({ + displayName: "AlertOctagon", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default AlertOctagon; diff --git a/src/components/icons/alert-square.tsx b/src/components/icons/alert-square.tsx new file mode 100644 index 000000000..e8440d4ed --- /dev/null +++ b/src/components/icons/alert-square.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const AlertSquare = createIcon({ + displayName: "AlertSquare", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default AlertSquare; diff --git a/src/components/icons/alert-triangle.tsx b/src/components/icons/alert-triangle.tsx new file mode 100644 index 000000000..752e85de5 --- /dev/null +++ b/src/components/icons/alert-triangle.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const AlertTriangle = createIcon({ + displayName: "AlertTriangle", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default AlertTriangle; diff --git a/src/components/icons/align-bottom-01.tsx b/src/components/icons/align-bottom-01.tsx new file mode 100644 index 000000000..56e2c8399 --- /dev/null +++ b/src/components/icons/align-bottom-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const AlignBottom01 = createIcon({ + displayName: "AlignBottom01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default AlignBottom01; diff --git a/src/components/icons/align-bottom-02.tsx b/src/components/icons/align-bottom-02.tsx new file mode 100644 index 000000000..1fa8b8be8 --- /dev/null +++ b/src/components/icons/align-bottom-02.tsx @@ -0,0 +1,27 @@ +import { createIcon } from "@chakra-ui/icons"; + +const AlignBottom02 = createIcon({ + displayName: "AlignBottom02", + viewBox: "0 0 24 24", + path: [ + , + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default AlignBottom02; diff --git a/src/components/icons/align-center.tsx b/src/components/icons/align-center.tsx new file mode 100644 index 000000000..fc08b6356 --- /dev/null +++ b/src/components/icons/align-center.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const AlignCenter = createIcon({ + displayName: "AlignCenter", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default AlignCenter; diff --git a/src/components/icons/align-horizontal-centre-01.tsx b/src/components/icons/align-horizontal-centre-01.tsx new file mode 100644 index 000000000..013982640 --- /dev/null +++ b/src/components/icons/align-horizontal-centre-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const AlignHorizontalCentre01 = createIcon({ + displayName: "AlignHorizontalCentre01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default AlignHorizontalCentre01; diff --git a/src/components/icons/align-horizontal-centre-02.tsx b/src/components/icons/align-horizontal-centre-02.tsx new file mode 100644 index 000000000..9c043bafd --- /dev/null +++ b/src/components/icons/align-horizontal-centre-02.tsx @@ -0,0 +1,27 @@ +import { createIcon } from "@chakra-ui/icons"; + +const AlignHorizontalCentre02 = createIcon({ + displayName: "AlignHorizontalCentre02", + viewBox: "0 0 24 24", + path: [ + , + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default AlignHorizontalCentre02; diff --git a/src/components/icons/align-justify.tsx b/src/components/icons/align-justify.tsx new file mode 100644 index 000000000..72f3879b1 --- /dev/null +++ b/src/components/icons/align-justify.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const AlignJustify = createIcon({ + displayName: "AlignJustify", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default AlignJustify; diff --git a/src/components/icons/align-left-01.tsx b/src/components/icons/align-left-01.tsx new file mode 100644 index 000000000..5d5ebcd50 --- /dev/null +++ b/src/components/icons/align-left-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const AlignLeft01 = createIcon({ + displayName: "AlignLeft01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default AlignLeft01; diff --git a/src/components/icons/align-left-02.tsx b/src/components/icons/align-left-02.tsx new file mode 100644 index 000000000..fbc65eed5 --- /dev/null +++ b/src/components/icons/align-left-02.tsx @@ -0,0 +1,27 @@ +import { createIcon } from "@chakra-ui/icons"; + +const AlignLeft02 = createIcon({ + displayName: "AlignLeft02", + viewBox: "0 0 24 24", + path: [ + , + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default AlignLeft02; diff --git a/src/components/icons/align-left.tsx b/src/components/icons/align-left.tsx new file mode 100644 index 000000000..c20ca7300 --- /dev/null +++ b/src/components/icons/align-left.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const AlignLeft = createIcon({ + displayName: "AlignLeft", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default AlignLeft; diff --git a/src/components/icons/align-right-01.tsx b/src/components/icons/align-right-01.tsx new file mode 100644 index 000000000..c0fe46658 --- /dev/null +++ b/src/components/icons/align-right-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const AlignRight01 = createIcon({ + displayName: "AlignRight01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default AlignRight01; diff --git a/src/components/icons/align-right-02.tsx b/src/components/icons/align-right-02.tsx new file mode 100644 index 000000000..a55721a3e --- /dev/null +++ b/src/components/icons/align-right-02.tsx @@ -0,0 +1,27 @@ +import { createIcon } from "@chakra-ui/icons"; + +const AlignRight02 = createIcon({ + displayName: "AlignRight02", + viewBox: "0 0 24 24", + path: [ + , + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default AlignRight02; diff --git a/src/components/icons/align-right.tsx b/src/components/icons/align-right.tsx new file mode 100644 index 000000000..e263a1a8c --- /dev/null +++ b/src/components/icons/align-right.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const AlignRight = createIcon({ + displayName: "AlignRight", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default AlignRight; diff --git a/src/components/icons/align-top-01.tsx b/src/components/icons/align-top-01.tsx new file mode 100644 index 000000000..caa9eae8c --- /dev/null +++ b/src/components/icons/align-top-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const AlignTop01 = createIcon({ + displayName: "AlignTop01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default AlignTop01; diff --git a/src/components/icons/align-top-02.tsx b/src/components/icons/align-top-02.tsx new file mode 100644 index 000000000..b5bd5f2b2 --- /dev/null +++ b/src/components/icons/align-top-02.tsx @@ -0,0 +1,27 @@ +import { createIcon } from "@chakra-ui/icons"; + +const AlignTop02 = createIcon({ + displayName: "AlignTop02", + viewBox: "0 0 24 24", + path: [ + , + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default AlignTop02; diff --git a/src/components/icons/align-vertical-center-01.tsx b/src/components/icons/align-vertical-center-01.tsx new file mode 100644 index 000000000..676c8a40d --- /dev/null +++ b/src/components/icons/align-vertical-center-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const AlignVerticalCenter01 = createIcon({ + displayName: "AlignVerticalCenter01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default AlignVerticalCenter01; diff --git a/src/components/icons/align-vertical-center-02.tsx b/src/components/icons/align-vertical-center-02.tsx new file mode 100644 index 000000000..50d866644 --- /dev/null +++ b/src/components/icons/align-vertical-center-02.tsx @@ -0,0 +1,27 @@ +import { createIcon } from "@chakra-ui/icons"; + +const AlignVerticalCenter02 = createIcon({ + displayName: "AlignVerticalCenter02", + viewBox: "0 0 24 24", + path: [ + , + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default AlignVerticalCenter02; diff --git a/src/components/icons/anchor.tsx b/src/components/icons/anchor.tsx new file mode 100644 index 000000000..e744e641d --- /dev/null +++ b/src/components/icons/anchor.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Anchor = createIcon({ + displayName: "Anchor", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Anchor; diff --git a/src/components/icons/annotation-alert.tsx b/src/components/icons/annotation-alert.tsx new file mode 100644 index 000000000..d4c24ddce --- /dev/null +++ b/src/components/icons/annotation-alert.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const AnnotationAlert = createIcon({ + displayName: "AnnotationAlert", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default AnnotationAlert; diff --git a/src/components/icons/annotation-check.tsx b/src/components/icons/annotation-check.tsx new file mode 100644 index 000000000..3f81dab8e --- /dev/null +++ b/src/components/icons/annotation-check.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const AnnotationCheck = createIcon({ + displayName: "AnnotationCheck", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default AnnotationCheck; diff --git a/src/components/icons/annotation-dots.tsx b/src/components/icons/annotation-dots.tsx new file mode 100644 index 000000000..be9610b55 --- /dev/null +++ b/src/components/icons/annotation-dots.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const AnnotationDots = createIcon({ + displayName: "AnnotationDots", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default AnnotationDots; diff --git a/src/components/icons/annotation-heart.tsx b/src/components/icons/annotation-heart.tsx new file mode 100644 index 000000000..0bb926112 --- /dev/null +++ b/src/components/icons/annotation-heart.tsx @@ -0,0 +1,29 @@ +import { createIcon } from "@chakra-ui/icons"; + +const AnnotationHeart = createIcon({ + displayName: "AnnotationHeart", + viewBox: "0 0 24 24", + path: [ + , + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default AnnotationHeart; diff --git a/src/components/icons/annotation-info.tsx b/src/components/icons/annotation-info.tsx new file mode 100644 index 000000000..ec624f1fb --- /dev/null +++ b/src/components/icons/annotation-info.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const AnnotationInfo = createIcon({ + displayName: "AnnotationInfo", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default AnnotationInfo; diff --git a/src/components/icons/annotation-plus.tsx b/src/components/icons/annotation-plus.tsx new file mode 100644 index 000000000..685fc1d76 --- /dev/null +++ b/src/components/icons/annotation-plus.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const AnnotationPlus = createIcon({ + displayName: "AnnotationPlus", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default AnnotationPlus; diff --git a/src/components/icons/annotation-question.tsx b/src/components/icons/annotation-question.tsx new file mode 100644 index 000000000..818b0904b --- /dev/null +++ b/src/components/icons/annotation-question.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const AnnotationQuestion = createIcon({ + displayName: "AnnotationQuestion", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default AnnotationQuestion; diff --git a/src/components/icons/annotation-x.tsx b/src/components/icons/annotation-x.tsx new file mode 100644 index 000000000..bff4f9a1a --- /dev/null +++ b/src/components/icons/annotation-x.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const AnnotationX = createIcon({ + displayName: "AnnotationX", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default AnnotationX; diff --git a/src/components/icons/annotation.tsx b/src/components/icons/annotation.tsx new file mode 100644 index 000000000..fba68c340 --- /dev/null +++ b/src/components/icons/annotation.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Annotation = createIcon({ + displayName: "Annotation", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Annotation; diff --git a/src/components/icons/announcement-01.tsx b/src/components/icons/announcement-01.tsx new file mode 100644 index 000000000..8b3f07987 --- /dev/null +++ b/src/components/icons/announcement-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Announcement01 = createIcon({ + displayName: "Announcement01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Announcement01; diff --git a/src/components/icons/announcement-02.tsx b/src/components/icons/announcement-02.tsx new file mode 100644 index 000000000..a2dec5c40 --- /dev/null +++ b/src/components/icons/announcement-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Announcement02 = createIcon({ + displayName: "Announcement02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Announcement02; diff --git a/src/components/icons/announcement-03.tsx b/src/components/icons/announcement-03.tsx new file mode 100644 index 000000000..21a2d98e6 --- /dev/null +++ b/src/components/icons/announcement-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Announcement03 = createIcon({ + displayName: "Announcement03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Announcement03; diff --git a/src/components/icons/archive.tsx b/src/components/icons/archive.tsx new file mode 100644 index 000000000..5362b9f87 --- /dev/null +++ b/src/components/icons/archive.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Archive = createIcon({ + displayName: "Archive", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Archive; diff --git a/src/components/icons/arrow-block-down.tsx b/src/components/icons/arrow-block-down.tsx new file mode 100644 index 000000000..9ed765bb6 --- /dev/null +++ b/src/components/icons/arrow-block-down.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ArrowBlockDown = createIcon({ + displayName: "ArrowBlockDown", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ArrowBlockDown; diff --git a/src/components/icons/arrow-block-left.tsx b/src/components/icons/arrow-block-left.tsx new file mode 100644 index 000000000..1fb7b0fdb --- /dev/null +++ b/src/components/icons/arrow-block-left.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ArrowBlockLeft = createIcon({ + displayName: "ArrowBlockLeft", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ArrowBlockLeft; diff --git a/src/components/icons/arrow-block-right.tsx b/src/components/icons/arrow-block-right.tsx new file mode 100644 index 000000000..d049a433d --- /dev/null +++ b/src/components/icons/arrow-block-right.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ArrowBlockRight = createIcon({ + displayName: "ArrowBlockRight", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ArrowBlockRight; diff --git a/src/components/icons/arrow-block-up.tsx b/src/components/icons/arrow-block-up.tsx new file mode 100644 index 000000000..0cd1630f9 --- /dev/null +++ b/src/components/icons/arrow-block-up.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ArrowBlockUp = createIcon({ + displayName: "ArrowBlockUp", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ArrowBlockUp; diff --git a/src/components/icons/arrow-circle-broken-down-left.tsx b/src/components/icons/arrow-circle-broken-down-left.tsx new file mode 100644 index 000000000..ca5bb4cc3 --- /dev/null +++ b/src/components/icons/arrow-circle-broken-down-left.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ArrowCircleBrokenDownLeft = createIcon({ + displayName: "ArrowCircleBrokenDownLeft", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ArrowCircleBrokenDownLeft; diff --git a/src/components/icons/arrow-circle-broken-down-right.tsx b/src/components/icons/arrow-circle-broken-down-right.tsx new file mode 100644 index 000000000..a9de9d009 --- /dev/null +++ b/src/components/icons/arrow-circle-broken-down-right.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ArrowCircleBrokenDownRight = createIcon({ + displayName: "ArrowCircleBrokenDownRight", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ArrowCircleBrokenDownRight; diff --git a/src/components/icons/arrow-circle-broken-down.tsx b/src/components/icons/arrow-circle-broken-down.tsx new file mode 100644 index 000000000..c97fb47ef --- /dev/null +++ b/src/components/icons/arrow-circle-broken-down.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ArrowCircleBrokenDown = createIcon({ + displayName: "ArrowCircleBrokenDown", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ArrowCircleBrokenDown; diff --git a/src/components/icons/arrow-circle-broken-left.tsx b/src/components/icons/arrow-circle-broken-left.tsx new file mode 100644 index 000000000..d9bf856b5 --- /dev/null +++ b/src/components/icons/arrow-circle-broken-left.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ArrowCircleBrokenLeft = createIcon({ + displayName: "ArrowCircleBrokenLeft", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ArrowCircleBrokenLeft; diff --git a/src/components/icons/arrow-circle-broken-right.tsx b/src/components/icons/arrow-circle-broken-right.tsx new file mode 100644 index 000000000..7c45ca3e2 --- /dev/null +++ b/src/components/icons/arrow-circle-broken-right.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ArrowCircleBrokenRight = createIcon({ + displayName: "ArrowCircleBrokenRight", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ArrowCircleBrokenRight; diff --git a/src/components/icons/arrow-circle-broken-up-left.tsx b/src/components/icons/arrow-circle-broken-up-left.tsx new file mode 100644 index 000000000..63702c63f --- /dev/null +++ b/src/components/icons/arrow-circle-broken-up-left.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ArrowCircleBrokenUpLeft = createIcon({ + displayName: "ArrowCircleBrokenUpLeft", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ArrowCircleBrokenUpLeft; diff --git a/src/components/icons/arrow-circle-broken-up-right.tsx b/src/components/icons/arrow-circle-broken-up-right.tsx new file mode 100644 index 000000000..41af1b5d1 --- /dev/null +++ b/src/components/icons/arrow-circle-broken-up-right.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ArrowCircleBrokenUpRight = createIcon({ + displayName: "ArrowCircleBrokenUpRight", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ArrowCircleBrokenUpRight; diff --git a/src/components/icons/arrow-circle-broken-up.tsx b/src/components/icons/arrow-circle-broken-up.tsx new file mode 100644 index 000000000..4c17a6c65 --- /dev/null +++ b/src/components/icons/arrow-circle-broken-up.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ArrowCircleBrokenUp = createIcon({ + displayName: "ArrowCircleBrokenUp", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ArrowCircleBrokenUp; diff --git a/src/components/icons/arrow-circle-down-left.tsx b/src/components/icons/arrow-circle-down-left.tsx new file mode 100644 index 000000000..8123232a3 --- /dev/null +++ b/src/components/icons/arrow-circle-down-left.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ArrowCircleDownLeft = createIcon({ + displayName: "ArrowCircleDownLeft", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ArrowCircleDownLeft; diff --git a/src/components/icons/arrow-circle-down-right.tsx b/src/components/icons/arrow-circle-down-right.tsx new file mode 100644 index 000000000..5d5d89264 --- /dev/null +++ b/src/components/icons/arrow-circle-down-right.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ArrowCircleDownRight = createIcon({ + displayName: "ArrowCircleDownRight", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ArrowCircleDownRight; diff --git a/src/components/icons/arrow-circle-down.tsx b/src/components/icons/arrow-circle-down.tsx new file mode 100644 index 000000000..fb17cb127 --- /dev/null +++ b/src/components/icons/arrow-circle-down.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ArrowCircleDown = createIcon({ + displayName: "ArrowCircleDown", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ArrowCircleDown; diff --git a/src/components/icons/arrow-circle-left.tsx b/src/components/icons/arrow-circle-left.tsx new file mode 100644 index 000000000..0244092a6 --- /dev/null +++ b/src/components/icons/arrow-circle-left.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ArrowCircleLeft = createIcon({ + displayName: "ArrowCircleLeft", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ArrowCircleLeft; diff --git a/src/components/icons/arrow-circle-right.tsx b/src/components/icons/arrow-circle-right.tsx new file mode 100644 index 000000000..ac5174fc9 --- /dev/null +++ b/src/components/icons/arrow-circle-right.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ArrowCircleRight = createIcon({ + displayName: "ArrowCircleRight", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ArrowCircleRight; diff --git a/src/components/icons/arrow-circle-up-left.tsx b/src/components/icons/arrow-circle-up-left.tsx new file mode 100644 index 000000000..e842a1fd1 --- /dev/null +++ b/src/components/icons/arrow-circle-up-left.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ArrowCircleUpLeft = createIcon({ + displayName: "ArrowCircleUpLeft", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ArrowCircleUpLeft; diff --git a/src/components/icons/arrow-circle-up-right.tsx b/src/components/icons/arrow-circle-up-right.tsx new file mode 100644 index 000000000..88e9b24e8 --- /dev/null +++ b/src/components/icons/arrow-circle-up-right.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ArrowCircleUpRight = createIcon({ + displayName: "ArrowCircleUpRight", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ArrowCircleUpRight; diff --git a/src/components/icons/arrow-circle-up.tsx b/src/components/icons/arrow-circle-up.tsx new file mode 100644 index 000000000..c51b97a29 --- /dev/null +++ b/src/components/icons/arrow-circle-up.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ArrowCircleUp = createIcon({ + displayName: "ArrowCircleUp", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ArrowCircleUp; diff --git a/src/components/icons/arrow-down-left.tsx b/src/components/icons/arrow-down-left.tsx new file mode 100644 index 000000000..05fc97ce9 --- /dev/null +++ b/src/components/icons/arrow-down-left.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ArrowDownLeft = createIcon({ + displayName: "ArrowDownLeft", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ArrowDownLeft; diff --git a/src/components/icons/arrow-down-right.tsx b/src/components/icons/arrow-down-right.tsx new file mode 100644 index 000000000..58c6d951e --- /dev/null +++ b/src/components/icons/arrow-down-right.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ArrowDownRight = createIcon({ + displayName: "ArrowDownRight", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ArrowDownRight; diff --git a/src/components/icons/arrow-down.tsx b/src/components/icons/arrow-down.tsx new file mode 100644 index 000000000..23fea7b13 --- /dev/null +++ b/src/components/icons/arrow-down.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ArrowDown = createIcon({ + displayName: "ArrowDown", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ArrowDown; diff --git a/src/components/icons/arrow-left.tsx b/src/components/icons/arrow-left.tsx new file mode 100644 index 000000000..419be23a6 --- /dev/null +++ b/src/components/icons/arrow-left.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ArrowLeft = createIcon({ + displayName: "ArrowLeft", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ArrowLeft; diff --git a/src/components/icons/arrow-narrow-down-left.tsx b/src/components/icons/arrow-narrow-down-left.tsx new file mode 100644 index 000000000..433e03e39 --- /dev/null +++ b/src/components/icons/arrow-narrow-down-left.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ArrowNarrowDownLeft = createIcon({ + displayName: "ArrowNarrowDownLeft", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ArrowNarrowDownLeft; diff --git a/src/components/icons/arrow-narrow-down-right.tsx b/src/components/icons/arrow-narrow-down-right.tsx new file mode 100644 index 000000000..c48bfc6b0 --- /dev/null +++ b/src/components/icons/arrow-narrow-down-right.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ArrowNarrowDownRight = createIcon({ + displayName: "ArrowNarrowDownRight", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ArrowNarrowDownRight; diff --git a/src/components/icons/arrow-narrow-down.tsx b/src/components/icons/arrow-narrow-down.tsx new file mode 100644 index 000000000..7f8431c06 --- /dev/null +++ b/src/components/icons/arrow-narrow-down.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ArrowNarrowDown = createIcon({ + displayName: "ArrowNarrowDown", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ArrowNarrowDown; diff --git a/src/components/icons/arrow-narrow-left.tsx b/src/components/icons/arrow-narrow-left.tsx new file mode 100644 index 000000000..0af3ca658 --- /dev/null +++ b/src/components/icons/arrow-narrow-left.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ArrowNarrowLeft = createIcon({ + displayName: "ArrowNarrowLeft", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ArrowNarrowLeft; diff --git a/src/components/icons/arrow-narrow-right.tsx b/src/components/icons/arrow-narrow-right.tsx new file mode 100644 index 000000000..eab28cc61 --- /dev/null +++ b/src/components/icons/arrow-narrow-right.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ArrowNarrowRight = createIcon({ + displayName: "ArrowNarrowRight", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ArrowNarrowRight; diff --git a/src/components/icons/arrow-narrow-up-left.tsx b/src/components/icons/arrow-narrow-up-left.tsx new file mode 100644 index 000000000..61826f8bc --- /dev/null +++ b/src/components/icons/arrow-narrow-up-left.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ArrowNarrowUpLeft = createIcon({ + displayName: "ArrowNarrowUpLeft", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ArrowNarrowUpLeft; diff --git a/src/components/icons/arrow-narrow-up-right.tsx b/src/components/icons/arrow-narrow-up-right.tsx new file mode 100644 index 000000000..d305ad907 --- /dev/null +++ b/src/components/icons/arrow-narrow-up-right.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ArrowNarrowUpRight = createIcon({ + displayName: "ArrowNarrowUpRight", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ArrowNarrowUpRight; diff --git a/src/components/icons/arrow-narrow-up.tsx b/src/components/icons/arrow-narrow-up.tsx new file mode 100644 index 000000000..65a3cb9cf --- /dev/null +++ b/src/components/icons/arrow-narrow-up.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ArrowNarrowUp = createIcon({ + displayName: "ArrowNarrowUp", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ArrowNarrowUp; diff --git a/src/components/icons/arrow-right.tsx b/src/components/icons/arrow-right.tsx new file mode 100644 index 000000000..550464f1f --- /dev/null +++ b/src/components/icons/arrow-right.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ArrowRight = createIcon({ + displayName: "ArrowRight", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ArrowRight; diff --git a/src/components/icons/arrow-square-down-left.tsx b/src/components/icons/arrow-square-down-left.tsx new file mode 100644 index 000000000..847a00870 --- /dev/null +++ b/src/components/icons/arrow-square-down-left.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ArrowSquareDownLeft = createIcon({ + displayName: "ArrowSquareDownLeft", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ArrowSquareDownLeft; diff --git a/src/components/icons/arrow-square-down-right.tsx b/src/components/icons/arrow-square-down-right.tsx new file mode 100644 index 000000000..40198f276 --- /dev/null +++ b/src/components/icons/arrow-square-down-right.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ArrowSquareDownRight = createIcon({ + displayName: "ArrowSquareDownRight", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ArrowSquareDownRight; diff --git a/src/components/icons/arrow-square-down.tsx b/src/components/icons/arrow-square-down.tsx new file mode 100644 index 000000000..69999f2e9 --- /dev/null +++ b/src/components/icons/arrow-square-down.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ArrowSquareDown = createIcon({ + displayName: "ArrowSquareDown", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ArrowSquareDown; diff --git a/src/components/icons/arrow-square-left.tsx b/src/components/icons/arrow-square-left.tsx new file mode 100644 index 000000000..12fba9a9a --- /dev/null +++ b/src/components/icons/arrow-square-left.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ArrowSquareLeft = createIcon({ + displayName: "ArrowSquareLeft", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ArrowSquareLeft; diff --git a/src/components/icons/arrow-square-right.tsx b/src/components/icons/arrow-square-right.tsx new file mode 100644 index 000000000..b570a8e1f --- /dev/null +++ b/src/components/icons/arrow-square-right.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ArrowSquareRight = createIcon({ + displayName: "ArrowSquareRight", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ArrowSquareRight; diff --git a/src/components/icons/arrow-square-up-left.tsx b/src/components/icons/arrow-square-up-left.tsx new file mode 100644 index 000000000..923c705f2 --- /dev/null +++ b/src/components/icons/arrow-square-up-left.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ArrowSquareUpLeft = createIcon({ + displayName: "ArrowSquareUpLeft", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ArrowSquareUpLeft; diff --git a/src/components/icons/arrow-square-up-right.tsx b/src/components/icons/arrow-square-up-right.tsx new file mode 100644 index 000000000..d1f8195bb --- /dev/null +++ b/src/components/icons/arrow-square-up-right.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ArrowSquareUpRight = createIcon({ + displayName: "ArrowSquareUpRight", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ArrowSquareUpRight; diff --git a/src/components/icons/arrow-square-up.tsx b/src/components/icons/arrow-square-up.tsx new file mode 100644 index 000000000..fdfc6eac9 --- /dev/null +++ b/src/components/icons/arrow-square-up.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ArrowSquareUp = createIcon({ + displayName: "ArrowSquareUp", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ArrowSquareUp; diff --git a/src/components/icons/arrow-up-left.tsx b/src/components/icons/arrow-up-left.tsx new file mode 100644 index 000000000..94ca1ff75 --- /dev/null +++ b/src/components/icons/arrow-up-left.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ArrowUpLeft = createIcon({ + displayName: "ArrowUpLeft", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ArrowUpLeft; diff --git a/src/components/icons/arrow-up-right.tsx b/src/components/icons/arrow-up-right.tsx new file mode 100644 index 000000000..0bbc2c679 --- /dev/null +++ b/src/components/icons/arrow-up-right.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ArrowUpRight = createIcon({ + displayName: "ArrowUpRight", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ArrowUpRight; diff --git a/src/components/icons/arrow-up.tsx b/src/components/icons/arrow-up.tsx new file mode 100644 index 000000000..8003c72ee --- /dev/null +++ b/src/components/icons/arrow-up.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ArrowUp = createIcon({ + displayName: "ArrowUp", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ArrowUp; diff --git a/src/components/icons/arrows-down.tsx b/src/components/icons/arrows-down.tsx new file mode 100644 index 000000000..6b4637edb --- /dev/null +++ b/src/components/icons/arrows-down.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ArrowsDown = createIcon({ + displayName: "ArrowsDown", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ArrowsDown; diff --git a/src/components/icons/arrows-left.tsx b/src/components/icons/arrows-left.tsx new file mode 100644 index 000000000..7b99f62e9 --- /dev/null +++ b/src/components/icons/arrows-left.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ArrowsLeft = createIcon({ + displayName: "ArrowsLeft", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ArrowsLeft; diff --git a/src/components/icons/arrows-right.tsx b/src/components/icons/arrows-right.tsx new file mode 100644 index 000000000..e1b88a70d --- /dev/null +++ b/src/components/icons/arrows-right.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ArrowsRight = createIcon({ + displayName: "ArrowsRight", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ArrowsRight; diff --git a/src/components/icons/arrows-triangle.tsx b/src/components/icons/arrows-triangle.tsx new file mode 100644 index 000000000..ec35fa8b0 --- /dev/null +++ b/src/components/icons/arrows-triangle.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ArrowsTriangle = createIcon({ + displayName: "ArrowsTriangle", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ArrowsTriangle; diff --git a/src/components/icons/arrows-up.tsx b/src/components/icons/arrows-up.tsx new file mode 100644 index 000000000..7e8f2927a --- /dev/null +++ b/src/components/icons/arrows-up.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ArrowsUp = createIcon({ + displayName: "ArrowsUp", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ArrowsUp; diff --git a/src/components/icons/asterisk-01.tsx b/src/components/icons/asterisk-01.tsx new file mode 100644 index 000000000..8ec6acb24 --- /dev/null +++ b/src/components/icons/asterisk-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Asterisk01 = createIcon({ + displayName: "Asterisk01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Asterisk01; diff --git a/src/components/icons/asterisk-02.tsx b/src/components/icons/asterisk-02.tsx new file mode 100644 index 000000000..31354db90 --- /dev/null +++ b/src/components/icons/asterisk-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Asterisk02 = createIcon({ + displayName: "Asterisk02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Asterisk02; diff --git a/src/components/icons/at-sign.tsx b/src/components/icons/at-sign.tsx new file mode 100644 index 000000000..340d6a0c4 --- /dev/null +++ b/src/components/icons/at-sign.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const AtSign = createIcon({ + displayName: "AtSign", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default AtSign; diff --git a/src/components/icons/atom-01.tsx b/src/components/icons/atom-01.tsx new file mode 100644 index 000000000..a32527dbf --- /dev/null +++ b/src/components/icons/atom-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Atom01 = createIcon({ + displayName: "Atom01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Atom01; diff --git a/src/components/icons/atom-02.tsx b/src/components/icons/atom-02.tsx new file mode 100644 index 000000000..8baa71f13 --- /dev/null +++ b/src/components/icons/atom-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Atom02 = createIcon({ + displayName: "Atom02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Atom02; diff --git a/src/components/icons/attachment-01.tsx b/src/components/icons/attachment-01.tsx new file mode 100644 index 000000000..4cd13a7d8 --- /dev/null +++ b/src/components/icons/attachment-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Attachment01 = createIcon({ + displayName: "Attachment01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Attachment01; diff --git a/src/components/icons/attachment-02.tsx b/src/components/icons/attachment-02.tsx new file mode 100644 index 000000000..38fecc22b --- /dev/null +++ b/src/components/icons/attachment-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Attachment02 = createIcon({ + displayName: "Attachment02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Attachment02; diff --git a/src/components/icons/award-01.tsx b/src/components/icons/award-01.tsx new file mode 100644 index 000000000..05460842e --- /dev/null +++ b/src/components/icons/award-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Award01 = createIcon({ + displayName: "Award01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Award01; diff --git a/src/components/icons/award-02.tsx b/src/components/icons/award-02.tsx new file mode 100644 index 000000000..83f7b711e --- /dev/null +++ b/src/components/icons/award-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Award02 = createIcon({ + displayName: "Award02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Award02; diff --git a/src/components/icons/award-03.tsx b/src/components/icons/award-03.tsx new file mode 100644 index 000000000..5d176a9c6 --- /dev/null +++ b/src/components/icons/award-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Award03 = createIcon({ + displayName: "Award03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Award03; diff --git a/src/components/icons/award-04.tsx b/src/components/icons/award-04.tsx new file mode 100644 index 000000000..010170ef6 --- /dev/null +++ b/src/components/icons/award-04.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Award04 = createIcon({ + displayName: "Award04", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Award04; diff --git a/src/components/icons/award-05.tsx b/src/components/icons/award-05.tsx new file mode 100644 index 000000000..177b47d62 --- /dev/null +++ b/src/components/icons/award-05.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Award05 = createIcon({ + displayName: "Award05", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Award05; diff --git a/src/components/icons/backpack.tsx b/src/components/icons/backpack.tsx new file mode 100644 index 000000000..7c5b119e1 --- /dev/null +++ b/src/components/icons/backpack.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Backpack = createIcon({ + displayName: "Backpack", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Backpack; diff --git a/src/components/icons/bank-note-01.tsx b/src/components/icons/bank-note-01.tsx new file mode 100644 index 000000000..d07374001 --- /dev/null +++ b/src/components/icons/bank-note-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const BankNote01 = createIcon({ + displayName: "BankNote01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default BankNote01; diff --git a/src/components/icons/bank-note-02.tsx b/src/components/icons/bank-note-02.tsx new file mode 100644 index 000000000..036a04391 --- /dev/null +++ b/src/components/icons/bank-note-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const BankNote02 = createIcon({ + displayName: "BankNote02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default BankNote02; diff --git a/src/components/icons/bank-note-03.tsx b/src/components/icons/bank-note-03.tsx new file mode 100644 index 000000000..9c39db435 --- /dev/null +++ b/src/components/icons/bank-note-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const BankNote03 = createIcon({ + displayName: "BankNote03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default BankNote03; diff --git a/src/components/icons/bank.tsx b/src/components/icons/bank.tsx new file mode 100644 index 000000000..54e6ee5b7 --- /dev/null +++ b/src/components/icons/bank.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Bank = createIcon({ + displayName: "Bank", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Bank; diff --git a/src/components/icons/bar-chart-01.tsx b/src/components/icons/bar-chart-01.tsx new file mode 100644 index 000000000..4ec6c5ffe --- /dev/null +++ b/src/components/icons/bar-chart-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const BarChart01 = createIcon({ + displayName: "BarChart01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default BarChart01; diff --git a/src/components/icons/bar-chart-02.tsx b/src/components/icons/bar-chart-02.tsx new file mode 100644 index 000000000..498231458 --- /dev/null +++ b/src/components/icons/bar-chart-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const BarChart02 = createIcon({ + displayName: "BarChart02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default BarChart02; diff --git a/src/components/icons/bar-chart-03.tsx b/src/components/icons/bar-chart-03.tsx new file mode 100644 index 000000000..0d9fe3c38 --- /dev/null +++ b/src/components/icons/bar-chart-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const BarChart03 = createIcon({ + displayName: "BarChart03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default BarChart03; diff --git a/src/components/icons/bar-chart-04.tsx b/src/components/icons/bar-chart-04.tsx new file mode 100644 index 000000000..f03495978 --- /dev/null +++ b/src/components/icons/bar-chart-04.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const BarChart04 = createIcon({ + displayName: "BarChart04", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default BarChart04; diff --git a/src/components/icons/bar-chart-05.tsx b/src/components/icons/bar-chart-05.tsx new file mode 100644 index 000000000..c7347c052 --- /dev/null +++ b/src/components/icons/bar-chart-05.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const BarChart05 = createIcon({ + displayName: "BarChart05", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default BarChart05; diff --git a/src/components/icons/bar-chart-06.tsx b/src/components/icons/bar-chart-06.tsx new file mode 100644 index 000000000..808ce10ea --- /dev/null +++ b/src/components/icons/bar-chart-06.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const BarChart06 = createIcon({ + displayName: "BarChart06", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default BarChart06; diff --git a/src/components/icons/bar-chart-07.tsx b/src/components/icons/bar-chart-07.tsx new file mode 100644 index 000000000..97e9ffcae --- /dev/null +++ b/src/components/icons/bar-chart-07.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const BarChart07 = createIcon({ + displayName: "BarChart07", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default BarChart07; diff --git a/src/components/icons/bar-chart-08.tsx b/src/components/icons/bar-chart-08.tsx new file mode 100644 index 000000000..c98654a99 --- /dev/null +++ b/src/components/icons/bar-chart-08.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const BarChart08 = createIcon({ + displayName: "BarChart08", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default BarChart08; diff --git a/src/components/icons/bar-chart-09.tsx b/src/components/icons/bar-chart-09.tsx new file mode 100644 index 000000000..35d53b88a --- /dev/null +++ b/src/components/icons/bar-chart-09.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const BarChart09 = createIcon({ + displayName: "BarChart09", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default BarChart09; diff --git a/src/components/icons/bar-chart-10.tsx b/src/components/icons/bar-chart-10.tsx new file mode 100644 index 000000000..04a9fe520 --- /dev/null +++ b/src/components/icons/bar-chart-10.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const BarChart10 = createIcon({ + displayName: "BarChart10", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default BarChart10; diff --git a/src/components/icons/bar-chart-11.tsx b/src/components/icons/bar-chart-11.tsx new file mode 100644 index 000000000..145cf6c97 --- /dev/null +++ b/src/components/icons/bar-chart-11.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const BarChart11 = createIcon({ + displayName: "BarChart11", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default BarChart11; diff --git a/src/components/icons/bar-chart-12.tsx b/src/components/icons/bar-chart-12.tsx new file mode 100644 index 000000000..2d53e529a --- /dev/null +++ b/src/components/icons/bar-chart-12.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const BarChart12 = createIcon({ + displayName: "BarChart12", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default BarChart12; diff --git a/src/components/icons/bar-chart-circle-01.tsx b/src/components/icons/bar-chart-circle-01.tsx new file mode 100644 index 000000000..7d9a8be86 --- /dev/null +++ b/src/components/icons/bar-chart-circle-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const BarChartCircle01 = createIcon({ + displayName: "BarChartCircle01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default BarChartCircle01; diff --git a/src/components/icons/bar-chart-circle-02.tsx b/src/components/icons/bar-chart-circle-02.tsx new file mode 100644 index 000000000..573ce474b --- /dev/null +++ b/src/components/icons/bar-chart-circle-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const BarChartCircle02 = createIcon({ + displayName: "BarChartCircle02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default BarChartCircle02; diff --git a/src/components/icons/bar-chart-circle-03.tsx b/src/components/icons/bar-chart-circle-03.tsx new file mode 100644 index 000000000..80711a962 --- /dev/null +++ b/src/components/icons/bar-chart-circle-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const BarChartCircle03 = createIcon({ + displayName: "BarChartCircle03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default BarChartCircle03; diff --git a/src/components/icons/bar-chart-square-01.tsx b/src/components/icons/bar-chart-square-01.tsx new file mode 100644 index 000000000..bed200d10 --- /dev/null +++ b/src/components/icons/bar-chart-square-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const BarChartSquare01 = createIcon({ + displayName: "BarChartSquare01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default BarChartSquare01; diff --git a/src/components/icons/bar-chart-square-02.tsx b/src/components/icons/bar-chart-square-02.tsx new file mode 100644 index 000000000..0d7a98b3a --- /dev/null +++ b/src/components/icons/bar-chart-square-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const BarChartSquare02 = createIcon({ + displayName: "BarChartSquare02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default BarChartSquare02; diff --git a/src/components/icons/bar-chart-square-03.tsx b/src/components/icons/bar-chart-square-03.tsx new file mode 100644 index 000000000..32b9ab267 --- /dev/null +++ b/src/components/icons/bar-chart-square-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const BarChartSquare03 = createIcon({ + displayName: "BarChartSquare03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default BarChartSquare03; diff --git a/src/components/icons/bar-chart-square-down.tsx b/src/components/icons/bar-chart-square-down.tsx new file mode 100644 index 000000000..c3008ea03 --- /dev/null +++ b/src/components/icons/bar-chart-square-down.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const BarChartSquareDown = createIcon({ + displayName: "BarChartSquareDown", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default BarChartSquareDown; diff --git a/src/components/icons/bar-chart-square-minus.tsx b/src/components/icons/bar-chart-square-minus.tsx new file mode 100644 index 000000000..eabfc36eb --- /dev/null +++ b/src/components/icons/bar-chart-square-minus.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const BarChartSquareMinus = createIcon({ + displayName: "BarChartSquareMinus", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default BarChartSquareMinus; diff --git a/src/components/icons/bar-chart-square-plus.tsx b/src/components/icons/bar-chart-square-plus.tsx new file mode 100644 index 000000000..954dc1c5d --- /dev/null +++ b/src/components/icons/bar-chart-square-plus.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const BarChartSquarePlus = createIcon({ + displayName: "BarChartSquarePlus", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default BarChartSquarePlus; diff --git a/src/components/icons/bar-chart-square-up.tsx b/src/components/icons/bar-chart-square-up.tsx new file mode 100644 index 000000000..ded55b6b2 --- /dev/null +++ b/src/components/icons/bar-chart-square-up.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const BarChartSquareUp = createIcon({ + displayName: "BarChartSquareUp", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default BarChartSquareUp; diff --git a/src/components/icons/bar-line-chart.tsx b/src/components/icons/bar-line-chart.tsx new file mode 100644 index 000000000..5f361d4ba --- /dev/null +++ b/src/components/icons/bar-line-chart.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const BarLineChart = createIcon({ + displayName: "BarLineChart", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default BarLineChart; diff --git a/src/components/icons/battery-charging-01.tsx b/src/components/icons/battery-charging-01.tsx new file mode 100644 index 000000000..bc9999f56 --- /dev/null +++ b/src/components/icons/battery-charging-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const BatteryCharging01 = createIcon({ + displayName: "BatteryCharging01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default BatteryCharging01; diff --git a/src/components/icons/battery-charging-02.tsx b/src/components/icons/battery-charging-02.tsx new file mode 100644 index 000000000..b1c6bf1e8 --- /dev/null +++ b/src/components/icons/battery-charging-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const BatteryCharging02 = createIcon({ + displayName: "BatteryCharging02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default BatteryCharging02; diff --git a/src/components/icons/battery-empty.tsx b/src/components/icons/battery-empty.tsx new file mode 100644 index 000000000..71b0d77ce --- /dev/null +++ b/src/components/icons/battery-empty.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const BatteryEmpty = createIcon({ + displayName: "BatteryEmpty", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default BatteryEmpty; diff --git a/src/components/icons/battery-full.tsx b/src/components/icons/battery-full.tsx new file mode 100644 index 000000000..574d91eba --- /dev/null +++ b/src/components/icons/battery-full.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const BatteryFull = createIcon({ + displayName: "BatteryFull", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default BatteryFull; diff --git a/src/components/icons/battery-low.tsx b/src/components/icons/battery-low.tsx new file mode 100644 index 000000000..065f97530 --- /dev/null +++ b/src/components/icons/battery-low.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const BatteryLow = createIcon({ + displayName: "BatteryLow", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default BatteryLow; diff --git a/src/components/icons/battery-mid.tsx b/src/components/icons/battery-mid.tsx new file mode 100644 index 000000000..f6dbcd6ba --- /dev/null +++ b/src/components/icons/battery-mid.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const BatteryMid = createIcon({ + displayName: "BatteryMid", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default BatteryMid; diff --git a/src/components/icons/beaker-01.tsx b/src/components/icons/beaker-01.tsx new file mode 100644 index 000000000..ca62b9e0d --- /dev/null +++ b/src/components/icons/beaker-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Beaker01 = createIcon({ + displayName: "Beaker01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Beaker01; diff --git a/src/components/icons/beaker-02.tsx b/src/components/icons/beaker-02.tsx new file mode 100644 index 000000000..2410b1c25 --- /dev/null +++ b/src/components/icons/beaker-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Beaker02 = createIcon({ + displayName: "Beaker02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Beaker02; diff --git a/src/components/icons/bell-01.tsx b/src/components/icons/bell-01.tsx new file mode 100644 index 000000000..cb08a650d --- /dev/null +++ b/src/components/icons/bell-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Bell01 = createIcon({ + displayName: "Bell01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Bell01; diff --git a/src/components/icons/bell-02.tsx b/src/components/icons/bell-02.tsx new file mode 100644 index 000000000..5a65b926f --- /dev/null +++ b/src/components/icons/bell-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Bell02 = createIcon({ + displayName: "Bell02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Bell02; diff --git a/src/components/icons/bell-03.tsx b/src/components/icons/bell-03.tsx new file mode 100644 index 000000000..f321a4ec9 --- /dev/null +++ b/src/components/icons/bell-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Bell03 = createIcon({ + displayName: "Bell03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Bell03; diff --git a/src/components/icons/bell-04.tsx b/src/components/icons/bell-04.tsx new file mode 100644 index 000000000..12acd608f --- /dev/null +++ b/src/components/icons/bell-04.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Bell04 = createIcon({ + displayName: "Bell04", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Bell04; diff --git a/src/components/icons/bell-minus.tsx b/src/components/icons/bell-minus.tsx new file mode 100644 index 000000000..53026e04b --- /dev/null +++ b/src/components/icons/bell-minus.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const BellMinus = createIcon({ + displayName: "BellMinus", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default BellMinus; diff --git a/src/components/icons/bell-off-01.tsx b/src/components/icons/bell-off-01.tsx new file mode 100644 index 000000000..8049b051f --- /dev/null +++ b/src/components/icons/bell-off-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const BellOff01 = createIcon({ + displayName: "BellOff01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default BellOff01; diff --git a/src/components/icons/bell-off-02.tsx b/src/components/icons/bell-off-02.tsx new file mode 100644 index 000000000..d0b0ec202 --- /dev/null +++ b/src/components/icons/bell-off-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const BellOff02 = createIcon({ + displayName: "BellOff02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default BellOff02; diff --git a/src/components/icons/bell-off-03.tsx b/src/components/icons/bell-off-03.tsx new file mode 100644 index 000000000..b2f92eb42 --- /dev/null +++ b/src/components/icons/bell-off-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const BellOff03 = createIcon({ + displayName: "BellOff03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default BellOff03; diff --git a/src/components/icons/bell-plus.tsx b/src/components/icons/bell-plus.tsx new file mode 100644 index 000000000..26faeb7d9 --- /dev/null +++ b/src/components/icons/bell-plus.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const BellPlus = createIcon({ + displayName: "BellPlus", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default BellPlus; diff --git a/src/components/icons/bell-ringing-01.tsx b/src/components/icons/bell-ringing-01.tsx new file mode 100644 index 000000000..d3395f03c --- /dev/null +++ b/src/components/icons/bell-ringing-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const BellRinging01 = createIcon({ + displayName: "BellRinging01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default BellRinging01; diff --git a/src/components/icons/bell-ringing-02.tsx b/src/components/icons/bell-ringing-02.tsx new file mode 100644 index 000000000..768fec22d --- /dev/null +++ b/src/components/icons/bell-ringing-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const BellRinging02 = createIcon({ + displayName: "BellRinging02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default BellRinging02; diff --git a/src/components/icons/bell-ringing-03.tsx b/src/components/icons/bell-ringing-03.tsx new file mode 100644 index 000000000..185749dc7 --- /dev/null +++ b/src/components/icons/bell-ringing-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const BellRinging03 = createIcon({ + displayName: "BellRinging03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default BellRinging03; diff --git a/src/components/icons/bell-ringing-04.tsx b/src/components/icons/bell-ringing-04.tsx new file mode 100644 index 000000000..91ac391df --- /dev/null +++ b/src/components/icons/bell-ringing-04.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const BellRinging04 = createIcon({ + displayName: "BellRinging04", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default BellRinging04; diff --git a/src/components/icons/bezier-curve-01.tsx b/src/components/icons/bezier-curve-01.tsx new file mode 100644 index 000000000..086c3122a --- /dev/null +++ b/src/components/icons/bezier-curve-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const BezierCurve01 = createIcon({ + displayName: "BezierCurve01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default BezierCurve01; diff --git a/src/components/icons/bezier-curve-02.tsx b/src/components/icons/bezier-curve-02.tsx new file mode 100644 index 000000000..ab83c1f41 --- /dev/null +++ b/src/components/icons/bezier-curve-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const BezierCurve02 = createIcon({ + displayName: "BezierCurve02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default BezierCurve02; diff --git a/src/components/icons/bezier-curve-03.tsx b/src/components/icons/bezier-curve-03.tsx new file mode 100644 index 000000000..8993bd591 --- /dev/null +++ b/src/components/icons/bezier-curve-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const BezierCurve03 = createIcon({ + displayName: "BezierCurve03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default BezierCurve03; diff --git a/src/components/icons/bluetooth-connect.tsx b/src/components/icons/bluetooth-connect.tsx new file mode 100644 index 000000000..916aa75e5 --- /dev/null +++ b/src/components/icons/bluetooth-connect.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const BluetoothConnect = createIcon({ + displayName: "BluetoothConnect", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default BluetoothConnect; diff --git a/src/components/icons/bluetooth-off.tsx b/src/components/icons/bluetooth-off.tsx new file mode 100644 index 000000000..9459d46ca --- /dev/null +++ b/src/components/icons/bluetooth-off.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const BluetoothOff = createIcon({ + displayName: "BluetoothOff", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default BluetoothOff; diff --git a/src/components/icons/bluetooth-on.tsx b/src/components/icons/bluetooth-on.tsx new file mode 100644 index 000000000..b3612cbe8 --- /dev/null +++ b/src/components/icons/bluetooth-on.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const BluetoothOn = createIcon({ + displayName: "BluetoothOn", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default BluetoothOn; diff --git a/src/components/icons/bluetooth-signal.tsx b/src/components/icons/bluetooth-signal.tsx new file mode 100644 index 000000000..950fef9ff --- /dev/null +++ b/src/components/icons/bluetooth-signal.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const BluetoothSignal = createIcon({ + displayName: "BluetoothSignal", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default BluetoothSignal; diff --git a/src/components/icons/bold-01.tsx b/src/components/icons/bold-01.tsx new file mode 100644 index 000000000..c67f4c9aa --- /dev/null +++ b/src/components/icons/bold-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Bold01 = createIcon({ + displayName: "Bold01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Bold01; diff --git a/src/components/icons/bold-02.tsx b/src/components/icons/bold-02.tsx new file mode 100644 index 000000000..2d931a972 --- /dev/null +++ b/src/components/icons/bold-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Bold02 = createIcon({ + displayName: "Bold02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Bold02; diff --git a/src/components/icons/bold-square.tsx b/src/components/icons/bold-square.tsx new file mode 100644 index 000000000..11014ce27 --- /dev/null +++ b/src/components/icons/bold-square.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const BoldSquare = createIcon({ + displayName: "BoldSquare", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default BoldSquare; diff --git a/src/components/icons/book-closed.tsx b/src/components/icons/book-closed.tsx new file mode 100644 index 000000000..4606fdf61 --- /dev/null +++ b/src/components/icons/book-closed.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const BookClosed = createIcon({ + displayName: "BookClosed", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default BookClosed; diff --git a/src/components/icons/book-open-01.tsx b/src/components/icons/book-open-01.tsx new file mode 100644 index 000000000..5828ed5da --- /dev/null +++ b/src/components/icons/book-open-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const BookOpen01 = createIcon({ + displayName: "BookOpen01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default BookOpen01; diff --git a/src/components/icons/book-open-02.tsx b/src/components/icons/book-open-02.tsx new file mode 100644 index 000000000..0228bc5a5 --- /dev/null +++ b/src/components/icons/book-open-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const BookOpen02 = createIcon({ + displayName: "BookOpen02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default BookOpen02; diff --git a/src/components/icons/bookmark-add.tsx b/src/components/icons/bookmark-add.tsx new file mode 100644 index 000000000..b1693800a --- /dev/null +++ b/src/components/icons/bookmark-add.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const BookmarkAdd = createIcon({ + displayName: "BookmarkAdd", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default BookmarkAdd; diff --git a/src/components/icons/bookmark-check.tsx b/src/components/icons/bookmark-check.tsx new file mode 100644 index 000000000..f5479b255 --- /dev/null +++ b/src/components/icons/bookmark-check.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const BookmarkCheck = createIcon({ + displayName: "BookmarkCheck", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default BookmarkCheck; diff --git a/src/components/icons/bookmark-minus.tsx b/src/components/icons/bookmark-minus.tsx new file mode 100644 index 000000000..7c9ba0a50 --- /dev/null +++ b/src/components/icons/bookmark-minus.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const BookmarkMinus = createIcon({ + displayName: "BookmarkMinus", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default BookmarkMinus; diff --git a/src/components/icons/bookmark-x.tsx b/src/components/icons/bookmark-x.tsx new file mode 100644 index 000000000..a302fa743 --- /dev/null +++ b/src/components/icons/bookmark-x.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const BookmarkX = createIcon({ + displayName: "BookmarkX", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default BookmarkX; diff --git a/src/components/icons/bookmark.tsx b/src/components/icons/bookmark.tsx new file mode 100644 index 000000000..46a3a70fe --- /dev/null +++ b/src/components/icons/bookmark.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Bookmark = createIcon({ + displayName: "Bookmark", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Bookmark; diff --git a/src/components/icons/box.tsx b/src/components/icons/box.tsx new file mode 100644 index 000000000..470434dec --- /dev/null +++ b/src/components/icons/box.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Box = createIcon({ + displayName: "Box", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Box; diff --git a/src/components/icons/brackets-check.tsx b/src/components/icons/brackets-check.tsx new file mode 100644 index 000000000..56a3f25a7 --- /dev/null +++ b/src/components/icons/brackets-check.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const BracketsCheck = createIcon({ + displayName: "BracketsCheck", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default BracketsCheck; diff --git a/src/components/icons/brackets-ellipses.tsx b/src/components/icons/brackets-ellipses.tsx new file mode 100644 index 000000000..b838a492d --- /dev/null +++ b/src/components/icons/brackets-ellipses.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const BracketsEllipses = createIcon({ + displayName: "BracketsEllipses", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default BracketsEllipses; diff --git a/src/components/icons/brackets-minus.tsx b/src/components/icons/brackets-minus.tsx new file mode 100644 index 000000000..1af0bf1e7 --- /dev/null +++ b/src/components/icons/brackets-minus.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const BracketsMinus = createIcon({ + displayName: "BracketsMinus", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default BracketsMinus; diff --git a/src/components/icons/brackets-plus.tsx b/src/components/icons/brackets-plus.tsx new file mode 100644 index 000000000..24549d9f0 --- /dev/null +++ b/src/components/icons/brackets-plus.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const BracketsPlus = createIcon({ + displayName: "BracketsPlus", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default BracketsPlus; diff --git a/src/components/icons/brackets-slash.tsx b/src/components/icons/brackets-slash.tsx new file mode 100644 index 000000000..d948d24a6 --- /dev/null +++ b/src/components/icons/brackets-slash.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const BracketsSlash = createIcon({ + displayName: "BracketsSlash", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default BracketsSlash; diff --git a/src/components/icons/brackets-x.tsx b/src/components/icons/brackets-x.tsx new file mode 100644 index 000000000..3c8fa42b0 --- /dev/null +++ b/src/components/icons/brackets-x.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const BracketsX = createIcon({ + displayName: "BracketsX", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default BracketsX; diff --git a/src/components/icons/brackets.tsx b/src/components/icons/brackets.tsx new file mode 100644 index 000000000..05c564b73 --- /dev/null +++ b/src/components/icons/brackets.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Brackets = createIcon({ + displayName: "Brackets", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Brackets; diff --git a/src/components/icons/briefcase-01.tsx b/src/components/icons/briefcase-01.tsx new file mode 100644 index 000000000..a8d43f47a --- /dev/null +++ b/src/components/icons/briefcase-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Briefcase01 = createIcon({ + displayName: "Briefcase01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Briefcase01; diff --git a/src/components/icons/briefcase-02.tsx b/src/components/icons/briefcase-02.tsx new file mode 100644 index 000000000..8f77394dc --- /dev/null +++ b/src/components/icons/briefcase-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Briefcase02 = createIcon({ + displayName: "Briefcase02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Briefcase02; diff --git a/src/components/icons/browser.tsx b/src/components/icons/browser.tsx new file mode 100644 index 000000000..2c013d937 --- /dev/null +++ b/src/components/icons/browser.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Browser = createIcon({ + displayName: "Browser", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Browser; diff --git a/src/components/icons/brush-01.tsx b/src/components/icons/brush-01.tsx new file mode 100644 index 000000000..d8969f62e --- /dev/null +++ b/src/components/icons/brush-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Brush01 = createIcon({ + displayName: "Brush01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Brush01; diff --git a/src/components/icons/brush-02.tsx b/src/components/icons/brush-02.tsx new file mode 100644 index 000000000..5466458ae --- /dev/null +++ b/src/components/icons/brush-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Brush02 = createIcon({ + displayName: "Brush02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Brush02; diff --git a/src/components/icons/brush-03.tsx b/src/components/icons/brush-03.tsx new file mode 100644 index 000000000..6d0c3bb8f --- /dev/null +++ b/src/components/icons/brush-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Brush03 = createIcon({ + displayName: "Brush03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Brush03; diff --git a/src/components/icons/building-01.tsx b/src/components/icons/building-01.tsx new file mode 100644 index 000000000..a23c25837 --- /dev/null +++ b/src/components/icons/building-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Building01 = createIcon({ + displayName: "Building01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Building01; diff --git a/src/components/icons/building-02.tsx b/src/components/icons/building-02.tsx new file mode 100644 index 000000000..a7f057c7b --- /dev/null +++ b/src/components/icons/building-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Building02 = createIcon({ + displayName: "Building02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Building02; diff --git a/src/components/icons/building-03.tsx b/src/components/icons/building-03.tsx new file mode 100644 index 000000000..99dc76a61 --- /dev/null +++ b/src/components/icons/building-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Building03 = createIcon({ + displayName: "Building03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Building03; diff --git a/src/components/icons/building-04.tsx b/src/components/icons/building-04.tsx new file mode 100644 index 000000000..f58def6cd --- /dev/null +++ b/src/components/icons/building-04.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Building04 = createIcon({ + displayName: "Building04", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Building04; diff --git a/src/components/icons/building-05.tsx b/src/components/icons/building-05.tsx new file mode 100644 index 000000000..f3d12fba8 --- /dev/null +++ b/src/components/icons/building-05.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Building05 = createIcon({ + displayName: "Building05", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Building05; diff --git a/src/components/icons/building-06.tsx b/src/components/icons/building-06.tsx new file mode 100644 index 000000000..d44e93f2f --- /dev/null +++ b/src/components/icons/building-06.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Building06 = createIcon({ + displayName: "Building06", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Building06; diff --git a/src/components/icons/building-07.tsx b/src/components/icons/building-07.tsx new file mode 100644 index 000000000..a29011fe5 --- /dev/null +++ b/src/components/icons/building-07.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Building07 = createIcon({ + displayName: "Building07", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Building07; diff --git a/src/components/icons/building-08.tsx b/src/components/icons/building-08.tsx new file mode 100644 index 000000000..9bb609a69 --- /dev/null +++ b/src/components/icons/building-08.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Building08 = createIcon({ + displayName: "Building08", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Building08; diff --git a/src/components/icons/bus.tsx b/src/components/icons/bus.tsx new file mode 100644 index 000000000..63ed91a71 --- /dev/null +++ b/src/components/icons/bus.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Bus = createIcon({ + displayName: "Bus", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Bus; diff --git a/src/components/icons/calculator.tsx b/src/components/icons/calculator.tsx new file mode 100644 index 000000000..21343d1b0 --- /dev/null +++ b/src/components/icons/calculator.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Calculator = createIcon({ + displayName: "Calculator", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Calculator; diff --git a/src/components/icons/calendar-check-01.tsx b/src/components/icons/calendar-check-01.tsx new file mode 100644 index 000000000..3ee9a01a2 --- /dev/null +++ b/src/components/icons/calendar-check-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CalendarCheck01 = createIcon({ + displayName: "CalendarCheck01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CalendarCheck01; diff --git a/src/components/icons/calendar-check-02.tsx b/src/components/icons/calendar-check-02.tsx new file mode 100644 index 000000000..c010ee0c6 --- /dev/null +++ b/src/components/icons/calendar-check-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CalendarCheck02 = createIcon({ + displayName: "CalendarCheck02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CalendarCheck02; diff --git a/src/components/icons/calendar-date.tsx b/src/components/icons/calendar-date.tsx new file mode 100644 index 000000000..7ec169281 --- /dev/null +++ b/src/components/icons/calendar-date.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CalendarDate = createIcon({ + displayName: "CalendarDate", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CalendarDate; diff --git a/src/components/icons/calendar-heart-01.tsx b/src/components/icons/calendar-heart-01.tsx new file mode 100644 index 000000000..f45bc119d --- /dev/null +++ b/src/components/icons/calendar-heart-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CalendarHeart01 = createIcon({ + displayName: "CalendarHeart01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CalendarHeart01; diff --git a/src/components/icons/calendar-heart-02.tsx b/src/components/icons/calendar-heart-02.tsx new file mode 100644 index 000000000..68fcbc08f --- /dev/null +++ b/src/components/icons/calendar-heart-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CalendarHeart02 = createIcon({ + displayName: "CalendarHeart02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CalendarHeart02; diff --git a/src/components/icons/calendar-minus-01.tsx b/src/components/icons/calendar-minus-01.tsx new file mode 100644 index 000000000..225dd3417 --- /dev/null +++ b/src/components/icons/calendar-minus-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CalendarMinus01 = createIcon({ + displayName: "CalendarMinus01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CalendarMinus01; diff --git a/src/components/icons/calendar-minus-02.tsx b/src/components/icons/calendar-minus-02.tsx new file mode 100644 index 000000000..d817b5259 --- /dev/null +++ b/src/components/icons/calendar-minus-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CalendarMinus02 = createIcon({ + displayName: "CalendarMinus02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CalendarMinus02; diff --git a/src/components/icons/calendar-plus-01.tsx b/src/components/icons/calendar-plus-01.tsx new file mode 100644 index 000000000..c2023586c --- /dev/null +++ b/src/components/icons/calendar-plus-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CalendarPlus01 = createIcon({ + displayName: "CalendarPlus01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CalendarPlus01; diff --git a/src/components/icons/calendar-plus-02.tsx b/src/components/icons/calendar-plus-02.tsx new file mode 100644 index 000000000..2c57d2180 --- /dev/null +++ b/src/components/icons/calendar-plus-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CalendarPlus02 = createIcon({ + displayName: "CalendarPlus02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CalendarPlus02; diff --git a/src/components/icons/calendar.tsx b/src/components/icons/calendar.tsx new file mode 100644 index 000000000..06fed3473 --- /dev/null +++ b/src/components/icons/calendar.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Calendar = createIcon({ + displayName: "Calendar", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Calendar; diff --git a/src/components/icons/camera-01.tsx b/src/components/icons/camera-01.tsx new file mode 100644 index 000000000..98bcf7a3f --- /dev/null +++ b/src/components/icons/camera-01.tsx @@ -0,0 +1,27 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Camera01 = createIcon({ + displayName: "Camera01", + viewBox: "0 0 24 24", + path: [ + , + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Camera01; diff --git a/src/components/icons/camera-02.tsx b/src/components/icons/camera-02.tsx new file mode 100644 index 000000000..0fb0798d3 --- /dev/null +++ b/src/components/icons/camera-02.tsx @@ -0,0 +1,27 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Camera02 = createIcon({ + displayName: "Camera02", + viewBox: "0 0 24 24", + path: [ + , + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Camera02; diff --git a/src/components/icons/camera-03.tsx b/src/components/icons/camera-03.tsx new file mode 100644 index 000000000..c91945540 --- /dev/null +++ b/src/components/icons/camera-03.tsx @@ -0,0 +1,27 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Camera03 = createIcon({ + displayName: "Camera03", + viewBox: "0 0 24 24", + path: [ + , + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Camera03; diff --git a/src/components/icons/camera-lens.tsx b/src/components/icons/camera-lens.tsx new file mode 100644 index 000000000..fae7677f0 --- /dev/null +++ b/src/components/icons/camera-lens.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CameraLens = createIcon({ + displayName: "CameraLens", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CameraLens; diff --git a/src/components/icons/camera-off.tsx b/src/components/icons/camera-off.tsx new file mode 100644 index 000000000..767ee28f5 --- /dev/null +++ b/src/components/icons/camera-off.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CameraOff = createIcon({ + displayName: "CameraOff", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CameraOff; diff --git a/src/components/icons/camera-plus.tsx b/src/components/icons/camera-plus.tsx new file mode 100644 index 000000000..6be92719f --- /dev/null +++ b/src/components/icons/camera-plus.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CameraPlus = createIcon({ + displayName: "CameraPlus", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CameraPlus; diff --git a/src/components/icons/car-01.tsx b/src/components/icons/car-01.tsx new file mode 100644 index 000000000..28229e3a1 --- /dev/null +++ b/src/components/icons/car-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Car01 = createIcon({ + displayName: "Car01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Car01; diff --git a/src/components/icons/car-02.tsx b/src/components/icons/car-02.tsx new file mode 100644 index 000000000..1c763f96f --- /dev/null +++ b/src/components/icons/car-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Car02 = createIcon({ + displayName: "Car02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Car02; diff --git a/src/components/icons/certificate-01.tsx b/src/components/icons/certificate-01.tsx new file mode 100644 index 000000000..2aabe3812 --- /dev/null +++ b/src/components/icons/certificate-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Certificate01 = createIcon({ + displayName: "Certificate01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Certificate01; diff --git a/src/components/icons/certificate-02.tsx b/src/components/icons/certificate-02.tsx new file mode 100644 index 000000000..cc30692e5 --- /dev/null +++ b/src/components/icons/certificate-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Certificate02 = createIcon({ + displayName: "Certificate02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Certificate02; diff --git a/src/components/icons/chart-breakout-circle.tsx b/src/components/icons/chart-breakout-circle.tsx new file mode 100644 index 000000000..b1cfeee0d --- /dev/null +++ b/src/components/icons/chart-breakout-circle.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ChartBreakoutCircle = createIcon({ + displayName: "ChartBreakoutCircle", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ChartBreakoutCircle; diff --git a/src/components/icons/chart-breakout-square.tsx b/src/components/icons/chart-breakout-square.tsx new file mode 100644 index 000000000..036fbdd12 --- /dev/null +++ b/src/components/icons/chart-breakout-square.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ChartBreakoutSquare = createIcon({ + displayName: "ChartBreakoutSquare", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ChartBreakoutSquare; diff --git a/src/components/icons/check-circle-broken.tsx b/src/components/icons/check-circle-broken.tsx new file mode 100644 index 000000000..5cd74544e --- /dev/null +++ b/src/components/icons/check-circle-broken.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CheckCircleBroken = createIcon({ + displayName: "CheckCircleBroken", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CheckCircleBroken; diff --git a/src/components/icons/check-circle.tsx b/src/components/icons/check-circle.tsx new file mode 100644 index 000000000..f5dae0b79 --- /dev/null +++ b/src/components/icons/check-circle.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CheckCircle = createIcon({ + displayName: "CheckCircle", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CheckCircle; diff --git a/src/components/icons/check-done-01.tsx b/src/components/icons/check-done-01.tsx new file mode 100644 index 000000000..c6e57f21e --- /dev/null +++ b/src/components/icons/check-done-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CheckDone01 = createIcon({ + displayName: "CheckDone01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CheckDone01; diff --git a/src/components/icons/check-done-02.tsx b/src/components/icons/check-done-02.tsx new file mode 100644 index 000000000..40cc7df14 --- /dev/null +++ b/src/components/icons/check-done-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CheckDone02 = createIcon({ + displayName: "CheckDone02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CheckDone02; diff --git a/src/components/icons/check-heart.tsx b/src/components/icons/check-heart.tsx new file mode 100644 index 000000000..05349d540 --- /dev/null +++ b/src/components/icons/check-heart.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CheckHeart = createIcon({ + displayName: "CheckHeart", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CheckHeart; diff --git a/src/components/icons/check-square-broken.tsx b/src/components/icons/check-square-broken.tsx new file mode 100644 index 000000000..7dd37202d --- /dev/null +++ b/src/components/icons/check-square-broken.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CheckSquareBroken = createIcon({ + displayName: "CheckSquareBroken", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CheckSquareBroken; diff --git a/src/components/icons/check-square.tsx b/src/components/icons/check-square.tsx new file mode 100644 index 000000000..a2ceb6f81 --- /dev/null +++ b/src/components/icons/check-square.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CheckSquare = createIcon({ + displayName: "CheckSquare", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CheckSquare; diff --git a/src/components/icons/check-verified-01.tsx b/src/components/icons/check-verified-01.tsx new file mode 100644 index 000000000..1402a7fd1 --- /dev/null +++ b/src/components/icons/check-verified-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CheckVerified01 = createIcon({ + displayName: "CheckVerified01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CheckVerified01; diff --git a/src/components/icons/check-verified-02.tsx b/src/components/icons/check-verified-02.tsx new file mode 100644 index 000000000..2055e6902 --- /dev/null +++ b/src/components/icons/check-verified-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CheckVerified02 = createIcon({ + displayName: "CheckVerified02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CheckVerified02; diff --git a/src/components/icons/check-verified-03.tsx b/src/components/icons/check-verified-03.tsx new file mode 100644 index 000000000..7f4efb18d --- /dev/null +++ b/src/components/icons/check-verified-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CheckVerified03 = createIcon({ + displayName: "CheckVerified03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CheckVerified03; diff --git a/src/components/icons/check.tsx b/src/components/icons/check.tsx new file mode 100644 index 000000000..6fd9c9fad --- /dev/null +++ b/src/components/icons/check.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Check = createIcon({ + displayName: "Check", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Check; diff --git a/src/components/icons/chevron-down-double.tsx b/src/components/icons/chevron-down-double.tsx new file mode 100644 index 000000000..b6fcbf896 --- /dev/null +++ b/src/components/icons/chevron-down-double.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ChevronDownDouble = createIcon({ + displayName: "ChevronDownDouble", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ChevronDownDouble; diff --git a/src/components/icons/chevron-down.tsx b/src/components/icons/chevron-down.tsx new file mode 100644 index 000000000..866a60352 --- /dev/null +++ b/src/components/icons/chevron-down.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ChevronDown = createIcon({ + displayName: "ChevronDown", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ChevronDown; diff --git a/src/components/icons/chevron-left-double.tsx b/src/components/icons/chevron-left-double.tsx new file mode 100644 index 000000000..31f314afe --- /dev/null +++ b/src/components/icons/chevron-left-double.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ChevronLeftDouble = createIcon({ + displayName: "ChevronLeftDouble", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ChevronLeftDouble; diff --git a/src/components/icons/chevron-left.tsx b/src/components/icons/chevron-left.tsx new file mode 100644 index 000000000..7a45ebd09 --- /dev/null +++ b/src/components/icons/chevron-left.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ChevronLeft = createIcon({ + displayName: "ChevronLeft", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ChevronLeft; diff --git a/src/components/icons/chevron-right-double.tsx b/src/components/icons/chevron-right-double.tsx new file mode 100644 index 000000000..4c8645cdf --- /dev/null +++ b/src/components/icons/chevron-right-double.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ChevronRightDouble = createIcon({ + displayName: "ChevronRightDouble", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ChevronRightDouble; diff --git a/src/components/icons/chevron-right.tsx b/src/components/icons/chevron-right.tsx new file mode 100644 index 000000000..0a405866b --- /dev/null +++ b/src/components/icons/chevron-right.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ChevronRight = createIcon({ + displayName: "ChevronRight", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ChevronRight; diff --git a/src/components/icons/chevron-selector-horizontal.tsx b/src/components/icons/chevron-selector-horizontal.tsx new file mode 100644 index 000000000..beb8babf8 --- /dev/null +++ b/src/components/icons/chevron-selector-horizontal.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ChevronSelectorHorizontal = createIcon({ + displayName: "ChevronSelectorHorizontal", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ChevronSelectorHorizontal; diff --git a/src/components/icons/chevron-selector-vertical.tsx b/src/components/icons/chevron-selector-vertical.tsx new file mode 100644 index 000000000..dae0f80c4 --- /dev/null +++ b/src/components/icons/chevron-selector-vertical.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ChevronSelectorVertical = createIcon({ + displayName: "ChevronSelectorVertical", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ChevronSelectorVertical; diff --git a/src/components/icons/chevron-up-double.tsx b/src/components/icons/chevron-up-double.tsx new file mode 100644 index 000000000..1c3c3060d --- /dev/null +++ b/src/components/icons/chevron-up-double.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ChevronUpDouble = createIcon({ + displayName: "ChevronUpDouble", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ChevronUpDouble; diff --git a/src/components/icons/chevron-up.tsx b/src/components/icons/chevron-up.tsx new file mode 100644 index 000000000..d0f108a5d --- /dev/null +++ b/src/components/icons/chevron-up.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ChevronUp = createIcon({ + displayName: "ChevronUp", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ChevronUp; diff --git a/src/components/icons/chrome-cast.tsx b/src/components/icons/chrome-cast.tsx new file mode 100644 index 000000000..fd4793b2c --- /dev/null +++ b/src/components/icons/chrome-cast.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ChromeCast = createIcon({ + displayName: "ChromeCast", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ChromeCast; diff --git a/src/components/icons/circle-cut.tsx b/src/components/icons/circle-cut.tsx new file mode 100644 index 000000000..e233ee464 --- /dev/null +++ b/src/components/icons/circle-cut.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CircleCut = createIcon({ + displayName: "CircleCut", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CircleCut; diff --git a/src/components/icons/circle.tsx b/src/components/icons/circle.tsx new file mode 100644 index 000000000..f7c563d77 --- /dev/null +++ b/src/components/icons/circle.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Circle = createIcon({ + displayName: "Circle", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Circle; diff --git a/src/components/icons/clapperboard.tsx b/src/components/icons/clapperboard.tsx new file mode 100644 index 000000000..86edb3968 --- /dev/null +++ b/src/components/icons/clapperboard.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Clapperboard = createIcon({ + displayName: "Clapperboard", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Clapperboard; diff --git a/src/components/icons/clipboard-attachment.tsx b/src/components/icons/clipboard-attachment.tsx new file mode 100644 index 000000000..34b284209 --- /dev/null +++ b/src/components/icons/clipboard-attachment.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ClipboardAttachment = createIcon({ + displayName: "ClipboardAttachment", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ClipboardAttachment; diff --git a/src/components/icons/clipboard-check.tsx b/src/components/icons/clipboard-check.tsx new file mode 100644 index 000000000..62eb3fc35 --- /dev/null +++ b/src/components/icons/clipboard-check.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ClipboardCheck = createIcon({ + displayName: "ClipboardCheck", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ClipboardCheck; diff --git a/src/components/icons/clipboard-download.tsx b/src/components/icons/clipboard-download.tsx new file mode 100644 index 000000000..5824ba255 --- /dev/null +++ b/src/components/icons/clipboard-download.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ClipboardDownload = createIcon({ + displayName: "ClipboardDownload", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ClipboardDownload; diff --git a/src/components/icons/clipboard-minus.tsx b/src/components/icons/clipboard-minus.tsx new file mode 100644 index 000000000..5baf80de0 --- /dev/null +++ b/src/components/icons/clipboard-minus.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ClipboardMinus = createIcon({ + displayName: "ClipboardMinus", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ClipboardMinus; diff --git a/src/components/icons/clipboard-plus.tsx b/src/components/icons/clipboard-plus.tsx new file mode 100644 index 000000000..9bec53a6b --- /dev/null +++ b/src/components/icons/clipboard-plus.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ClipboardPlus = createIcon({ + displayName: "ClipboardPlus", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ClipboardPlus; diff --git a/src/components/icons/clipboard-x.tsx b/src/components/icons/clipboard-x.tsx new file mode 100644 index 000000000..a0a95fc6a --- /dev/null +++ b/src/components/icons/clipboard-x.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ClipboardX = createIcon({ + displayName: "ClipboardX", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ClipboardX; diff --git a/src/components/icons/clipboard.tsx b/src/components/icons/clipboard.tsx new file mode 100644 index 000000000..7fe3d010f --- /dev/null +++ b/src/components/icons/clipboard.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Clipboard = createIcon({ + displayName: "Clipboard", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Clipboard; diff --git a/src/components/icons/clock-check.tsx b/src/components/icons/clock-check.tsx new file mode 100644 index 000000000..9080f7b3f --- /dev/null +++ b/src/components/icons/clock-check.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ClockCheck = createIcon({ + displayName: "ClockCheck", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ClockCheck; diff --git a/src/components/icons/clock-fast-forward.tsx b/src/components/icons/clock-fast-forward.tsx new file mode 100644 index 000000000..304034f2a --- /dev/null +++ b/src/components/icons/clock-fast-forward.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ClockFastForward = createIcon({ + displayName: "ClockFastForward", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ClockFastForward; diff --git a/src/components/icons/clock-plus.tsx b/src/components/icons/clock-plus.tsx new file mode 100644 index 000000000..c622860c7 --- /dev/null +++ b/src/components/icons/clock-plus.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ClockPlus = createIcon({ + displayName: "ClockPlus", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ClockPlus; diff --git a/src/components/icons/clock-refresh.tsx b/src/components/icons/clock-refresh.tsx new file mode 100644 index 000000000..11e2ee4ca --- /dev/null +++ b/src/components/icons/clock-refresh.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ClockRefresh = createIcon({ + displayName: "ClockRefresh", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ClockRefresh; diff --git a/src/components/icons/clock-rewind.tsx b/src/components/icons/clock-rewind.tsx new file mode 100644 index 000000000..e110cee7f --- /dev/null +++ b/src/components/icons/clock-rewind.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ClockRewind = createIcon({ + displayName: "ClockRewind", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ClockRewind; diff --git a/src/components/icons/clock-snooze.tsx b/src/components/icons/clock-snooze.tsx new file mode 100644 index 000000000..c4dcc8ba6 --- /dev/null +++ b/src/components/icons/clock-snooze.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ClockSnooze = createIcon({ + displayName: "ClockSnooze", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ClockSnooze; diff --git a/src/components/icons/clock-stopwatch.tsx b/src/components/icons/clock-stopwatch.tsx new file mode 100644 index 000000000..a8da8de19 --- /dev/null +++ b/src/components/icons/clock-stopwatch.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ClockStopwatch = createIcon({ + displayName: "ClockStopwatch", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ClockStopwatch; diff --git a/src/components/icons/clock.tsx b/src/components/icons/clock.tsx new file mode 100644 index 000000000..6ed66b748 --- /dev/null +++ b/src/components/icons/clock.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Clock = createIcon({ + displayName: "Clock", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Clock; diff --git a/src/components/icons/cloud-01.tsx b/src/components/icons/cloud-01.tsx new file mode 100644 index 000000000..c49c3f56b --- /dev/null +++ b/src/components/icons/cloud-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Cloud01 = createIcon({ + displayName: "Cloud01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Cloud01; diff --git a/src/components/icons/cloud-02.tsx b/src/components/icons/cloud-02.tsx new file mode 100644 index 000000000..54aa19862 --- /dev/null +++ b/src/components/icons/cloud-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Cloud02 = createIcon({ + displayName: "Cloud02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Cloud02; diff --git a/src/components/icons/cloud-03.tsx b/src/components/icons/cloud-03.tsx new file mode 100644 index 000000000..658d6f7ae --- /dev/null +++ b/src/components/icons/cloud-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Cloud03 = createIcon({ + displayName: "Cloud03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Cloud03; diff --git a/src/components/icons/cloud-blank-01.tsx b/src/components/icons/cloud-blank-01.tsx new file mode 100644 index 000000000..3a1ccb7bf --- /dev/null +++ b/src/components/icons/cloud-blank-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CloudBlank01 = createIcon({ + displayName: "CloudBlank01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CloudBlank01; diff --git a/src/components/icons/cloud-blank-02.tsx b/src/components/icons/cloud-blank-02.tsx new file mode 100644 index 000000000..7ea9fa7e0 --- /dev/null +++ b/src/components/icons/cloud-blank-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CloudBlank02 = createIcon({ + displayName: "CloudBlank02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CloudBlank02; diff --git a/src/components/icons/cloud-lightning.tsx b/src/components/icons/cloud-lightning.tsx new file mode 100644 index 000000000..74a16ed80 --- /dev/null +++ b/src/components/icons/cloud-lightning.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CloudLightning = createIcon({ + displayName: "CloudLightning", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CloudLightning; diff --git a/src/components/icons/cloud-moon.tsx b/src/components/icons/cloud-moon.tsx new file mode 100644 index 000000000..38d78f6ff --- /dev/null +++ b/src/components/icons/cloud-moon.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CloudMoon = createIcon({ + displayName: "CloudMoon", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CloudMoon; diff --git a/src/components/icons/cloud-off.tsx b/src/components/icons/cloud-off.tsx new file mode 100644 index 000000000..2d57dab56 --- /dev/null +++ b/src/components/icons/cloud-off.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CloudOff = createIcon({ + displayName: "CloudOff", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CloudOff; diff --git a/src/components/icons/cloud-raining-01.tsx b/src/components/icons/cloud-raining-01.tsx new file mode 100644 index 000000000..54eab0a60 --- /dev/null +++ b/src/components/icons/cloud-raining-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CloudRaining01 = createIcon({ + displayName: "CloudRaining01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CloudRaining01; diff --git a/src/components/icons/cloud-raining-02.tsx b/src/components/icons/cloud-raining-02.tsx new file mode 100644 index 000000000..534b5912c --- /dev/null +++ b/src/components/icons/cloud-raining-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CloudRaining02 = createIcon({ + displayName: "CloudRaining02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CloudRaining02; diff --git a/src/components/icons/cloud-raining-03.tsx b/src/components/icons/cloud-raining-03.tsx new file mode 100644 index 000000000..628c39389 --- /dev/null +++ b/src/components/icons/cloud-raining-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CloudRaining03 = createIcon({ + displayName: "CloudRaining03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CloudRaining03; diff --git a/src/components/icons/cloud-raining-04.tsx b/src/components/icons/cloud-raining-04.tsx new file mode 100644 index 000000000..32e993f28 --- /dev/null +++ b/src/components/icons/cloud-raining-04.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CloudRaining04 = createIcon({ + displayName: "CloudRaining04", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CloudRaining04; diff --git a/src/components/icons/cloud-raining-05.tsx b/src/components/icons/cloud-raining-05.tsx new file mode 100644 index 000000000..fe5f9b12e --- /dev/null +++ b/src/components/icons/cloud-raining-05.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CloudRaining05 = createIcon({ + displayName: "CloudRaining05", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CloudRaining05; diff --git a/src/components/icons/cloud-raining-06.tsx b/src/components/icons/cloud-raining-06.tsx new file mode 100644 index 000000000..3fdab6ea6 --- /dev/null +++ b/src/components/icons/cloud-raining-06.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CloudRaining06 = createIcon({ + displayName: "CloudRaining06", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CloudRaining06; diff --git a/src/components/icons/cloud-snowing-01.tsx b/src/components/icons/cloud-snowing-01.tsx new file mode 100644 index 000000000..49e18ef8d --- /dev/null +++ b/src/components/icons/cloud-snowing-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CloudSnowing01 = createIcon({ + displayName: "CloudSnowing01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CloudSnowing01; diff --git a/src/components/icons/cloud-snowing-02.tsx b/src/components/icons/cloud-snowing-02.tsx new file mode 100644 index 000000000..333f3cd32 --- /dev/null +++ b/src/components/icons/cloud-snowing-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CloudSnowing02 = createIcon({ + displayName: "CloudSnowing02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CloudSnowing02; diff --git a/src/components/icons/cloud-sun-01.tsx b/src/components/icons/cloud-sun-01.tsx new file mode 100644 index 000000000..c6445bdbe --- /dev/null +++ b/src/components/icons/cloud-sun-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CloudSun01 = createIcon({ + displayName: "CloudSun01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CloudSun01; diff --git a/src/components/icons/cloud-sun-02.tsx b/src/components/icons/cloud-sun-02.tsx new file mode 100644 index 000000000..1d4ef318c --- /dev/null +++ b/src/components/icons/cloud-sun-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CloudSun02 = createIcon({ + displayName: "CloudSun02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CloudSun02; diff --git a/src/components/icons/cloud-sun-03.tsx b/src/components/icons/cloud-sun-03.tsx new file mode 100644 index 000000000..6ec73cbb5 --- /dev/null +++ b/src/components/icons/cloud-sun-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CloudSun03 = createIcon({ + displayName: "CloudSun03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CloudSun03; diff --git a/src/components/icons/code-01.tsx b/src/components/icons/code-01.tsx new file mode 100644 index 000000000..916e4c044 --- /dev/null +++ b/src/components/icons/code-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Code01 = createIcon({ + displayName: "Code01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Code01; diff --git a/src/components/icons/code-02.tsx b/src/components/icons/code-02.tsx new file mode 100644 index 000000000..c598b76cc --- /dev/null +++ b/src/components/icons/code-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Code02 = createIcon({ + displayName: "Code02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Code02; diff --git a/src/components/icons/code-browser.tsx b/src/components/icons/code-browser.tsx new file mode 100644 index 000000000..d81eaece2 --- /dev/null +++ b/src/components/icons/code-browser.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CodeBrowser = createIcon({ + displayName: "CodeBrowser", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CodeBrowser; diff --git a/src/components/icons/code-circle-01.tsx b/src/components/icons/code-circle-01.tsx new file mode 100644 index 000000000..211e34887 --- /dev/null +++ b/src/components/icons/code-circle-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CodeCircle01 = createIcon({ + displayName: "CodeCircle01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CodeCircle01; diff --git a/src/components/icons/code-circle-02.tsx b/src/components/icons/code-circle-02.tsx new file mode 100644 index 000000000..67a6bf2a2 --- /dev/null +++ b/src/components/icons/code-circle-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CodeCircle02 = createIcon({ + displayName: "CodeCircle02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CodeCircle02; diff --git a/src/components/icons/code-circle-03.tsx b/src/components/icons/code-circle-03.tsx new file mode 100644 index 000000000..004fd7bc1 --- /dev/null +++ b/src/components/icons/code-circle-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CodeCircle03 = createIcon({ + displayName: "CodeCircle03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CodeCircle03; diff --git a/src/components/icons/code-snippet-01.tsx b/src/components/icons/code-snippet-01.tsx new file mode 100644 index 000000000..6aa9ffd39 --- /dev/null +++ b/src/components/icons/code-snippet-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CodeSnippet01 = createIcon({ + displayName: "CodeSnippet01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CodeSnippet01; diff --git a/src/components/icons/code-snippet-02.tsx b/src/components/icons/code-snippet-02.tsx new file mode 100644 index 000000000..2b11f9ed9 --- /dev/null +++ b/src/components/icons/code-snippet-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CodeSnippet02 = createIcon({ + displayName: "CodeSnippet02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CodeSnippet02; diff --git a/src/components/icons/code-square-01.tsx b/src/components/icons/code-square-01.tsx new file mode 100644 index 000000000..cb8b6cf87 --- /dev/null +++ b/src/components/icons/code-square-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CodeSquare01 = createIcon({ + displayName: "CodeSquare01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CodeSquare01; diff --git a/src/components/icons/code-square-02.tsx b/src/components/icons/code-square-02.tsx new file mode 100644 index 000000000..6546f6f1c --- /dev/null +++ b/src/components/icons/code-square-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CodeSquare02 = createIcon({ + displayName: "CodeSquare02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CodeSquare02; diff --git a/src/components/icons/codepen.tsx b/src/components/icons/codepen.tsx new file mode 100644 index 000000000..98d13c8a7 --- /dev/null +++ b/src/components/icons/codepen.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Codepen = createIcon({ + displayName: "Codepen", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Codepen; diff --git a/src/components/icons/coins-01.tsx b/src/components/icons/coins-01.tsx new file mode 100644 index 000000000..a50776615 --- /dev/null +++ b/src/components/icons/coins-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Coins01 = createIcon({ + displayName: "Coins01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Coins01; diff --git a/src/components/icons/coins-02.tsx b/src/components/icons/coins-02.tsx new file mode 100644 index 000000000..2afb6f515 --- /dev/null +++ b/src/components/icons/coins-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Coins02 = createIcon({ + displayName: "Coins02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Coins02; diff --git a/src/components/icons/coins-03.tsx b/src/components/icons/coins-03.tsx new file mode 100644 index 000000000..fb36a8d4f --- /dev/null +++ b/src/components/icons/coins-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Coins03 = createIcon({ + displayName: "Coins03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Coins03; diff --git a/src/components/icons/coins-04.tsx b/src/components/icons/coins-04.tsx new file mode 100644 index 000000000..2cbfc4df7 --- /dev/null +++ b/src/components/icons/coins-04.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Coins04 = createIcon({ + displayName: "Coins04", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Coins04; diff --git a/src/components/icons/coins-hand.tsx b/src/components/icons/coins-hand.tsx new file mode 100644 index 000000000..e2b51d637 --- /dev/null +++ b/src/components/icons/coins-hand.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CoinsHand = createIcon({ + displayName: "CoinsHand", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CoinsHand; diff --git a/src/components/icons/coins-stacked-01.tsx b/src/components/icons/coins-stacked-01.tsx new file mode 100644 index 000000000..42019e2ea --- /dev/null +++ b/src/components/icons/coins-stacked-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CoinsStacked01 = createIcon({ + displayName: "CoinsStacked01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CoinsStacked01; diff --git a/src/components/icons/coins-stacked-02.tsx b/src/components/icons/coins-stacked-02.tsx new file mode 100644 index 000000000..953fe22e5 --- /dev/null +++ b/src/components/icons/coins-stacked-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CoinsStacked02 = createIcon({ + displayName: "CoinsStacked02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CoinsStacked02; diff --git a/src/components/icons/coins-stacked-03.tsx b/src/components/icons/coins-stacked-03.tsx new file mode 100644 index 000000000..7bb32cccb --- /dev/null +++ b/src/components/icons/coins-stacked-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CoinsStacked03 = createIcon({ + displayName: "CoinsStacked03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CoinsStacked03; diff --git a/src/components/icons/coins-stacked-04.tsx b/src/components/icons/coins-stacked-04.tsx new file mode 100644 index 000000000..55e987432 --- /dev/null +++ b/src/components/icons/coins-stacked-04.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CoinsStacked04 = createIcon({ + displayName: "CoinsStacked04", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CoinsStacked04; diff --git a/src/components/icons/coins-swap-01.tsx b/src/components/icons/coins-swap-01.tsx new file mode 100644 index 000000000..b7e596cd1 --- /dev/null +++ b/src/components/icons/coins-swap-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CoinsSwap01 = createIcon({ + displayName: "CoinsSwap01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CoinsSwap01; diff --git a/src/components/icons/coins-swap-02.tsx b/src/components/icons/coins-swap-02.tsx new file mode 100644 index 000000000..ed38467f8 --- /dev/null +++ b/src/components/icons/coins-swap-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CoinsSwap02 = createIcon({ + displayName: "CoinsSwap02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CoinsSwap02; diff --git a/src/components/icons/colors-1.tsx b/src/components/icons/colors-1.tsx new file mode 100644 index 000000000..c50dc85f7 --- /dev/null +++ b/src/components/icons/colors-1.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Colors1 = createIcon({ + displayName: "Colors1", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Colors1; diff --git a/src/components/icons/colors.tsx b/src/components/icons/colors.tsx new file mode 100644 index 000000000..87a71d7eb --- /dev/null +++ b/src/components/icons/colors.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Colors = createIcon({ + displayName: "Colors", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Colors; diff --git a/src/components/icons/columns-01.tsx b/src/components/icons/columns-01.tsx new file mode 100644 index 000000000..112c9a14e --- /dev/null +++ b/src/components/icons/columns-01.tsx @@ -0,0 +1,27 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Columns01 = createIcon({ + displayName: "Columns01", + viewBox: "0 0 24 24", + path: [ + , + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Columns01; diff --git a/src/components/icons/columns-02.tsx b/src/components/icons/columns-02.tsx new file mode 100644 index 000000000..85bd4a91a --- /dev/null +++ b/src/components/icons/columns-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Columns02 = createIcon({ + displayName: "Columns02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Columns02; diff --git a/src/components/icons/columns-03.tsx b/src/components/icons/columns-03.tsx new file mode 100644 index 000000000..ec8475a5e --- /dev/null +++ b/src/components/icons/columns-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Columns03 = createIcon({ + displayName: "Columns03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Columns03; diff --git a/src/components/icons/command.tsx b/src/components/icons/command.tsx new file mode 100644 index 000000000..751535d4e --- /dev/null +++ b/src/components/icons/command.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Command = createIcon({ + displayName: "Command", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Command; diff --git a/src/components/icons/compass-01.tsx b/src/components/icons/compass-01.tsx new file mode 100644 index 000000000..e09ea037d --- /dev/null +++ b/src/components/icons/compass-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Compass01 = createIcon({ + displayName: "Compass01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Compass01; diff --git a/src/components/icons/compass-02.tsx b/src/components/icons/compass-02.tsx new file mode 100644 index 000000000..fa6bd03be --- /dev/null +++ b/src/components/icons/compass-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Compass02 = createIcon({ + displayName: "Compass02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Compass02; diff --git a/src/components/icons/compass-03.tsx b/src/components/icons/compass-03.tsx new file mode 100644 index 000000000..cf4053558 --- /dev/null +++ b/src/components/icons/compass-03.tsx @@ -0,0 +1,27 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Compass03 = createIcon({ + displayName: "Compass03", + viewBox: "0 0 24 24", + path: [ + , + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Compass03; diff --git a/src/components/icons/compass.tsx b/src/components/icons/compass.tsx new file mode 100644 index 000000000..5ad769216 --- /dev/null +++ b/src/components/icons/compass.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Compass = createIcon({ + displayName: "Compass", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Compass; diff --git a/src/components/icons/container.tsx b/src/components/icons/container.tsx new file mode 100644 index 000000000..08fdef1bc --- /dev/null +++ b/src/components/icons/container.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Container = createIcon({ + displayName: "Container", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Container; diff --git a/src/components/icons/contrast-01.tsx b/src/components/icons/contrast-01.tsx new file mode 100644 index 000000000..14399e9ad --- /dev/null +++ b/src/components/icons/contrast-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Contrast01 = createIcon({ + displayName: "Contrast01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Contrast01; diff --git a/src/components/icons/contrast-02.tsx b/src/components/icons/contrast-02.tsx new file mode 100644 index 000000000..9929ce62f --- /dev/null +++ b/src/components/icons/contrast-02.tsx @@ -0,0 +1,27 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Contrast02 = createIcon({ + displayName: "Contrast02", + viewBox: "0 0 24 24", + path: [ + , + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Contrast02; diff --git a/src/components/icons/contrast-03.tsx b/src/components/icons/contrast-03.tsx new file mode 100644 index 000000000..2f02f8475 --- /dev/null +++ b/src/components/icons/contrast-03.tsx @@ -0,0 +1,27 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Contrast03 = createIcon({ + displayName: "Contrast03", + viewBox: "0 0 24 24", + path: [ + , + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Contrast03; diff --git a/src/components/icons/copy-01.tsx b/src/components/icons/copy-01.tsx new file mode 100644 index 000000000..1cbd2ceab --- /dev/null +++ b/src/components/icons/copy-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Copy01 = createIcon({ + displayName: "Copy01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Copy01; diff --git a/src/components/icons/copy-02.tsx b/src/components/icons/copy-02.tsx new file mode 100644 index 000000000..9a911e472 --- /dev/null +++ b/src/components/icons/copy-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Copy02 = createIcon({ + displayName: "Copy02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Copy02; diff --git a/src/components/icons/copy-03.tsx b/src/components/icons/copy-03.tsx new file mode 100644 index 000000000..7442ad932 --- /dev/null +++ b/src/components/icons/copy-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Copy03 = createIcon({ + displayName: "Copy03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Copy03; diff --git a/src/components/icons/copy-04.tsx b/src/components/icons/copy-04.tsx new file mode 100644 index 000000000..48b6e0a2e --- /dev/null +++ b/src/components/icons/copy-04.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Copy04 = createIcon({ + displayName: "Copy04", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Copy04; diff --git a/src/components/icons/copy-05.tsx b/src/components/icons/copy-05.tsx new file mode 100644 index 000000000..1e0866c6f --- /dev/null +++ b/src/components/icons/copy-05.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Copy05 = createIcon({ + displayName: "Copy05", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Copy05; diff --git a/src/components/icons/copy-06.tsx b/src/components/icons/copy-06.tsx new file mode 100644 index 000000000..64c2d468b --- /dev/null +++ b/src/components/icons/copy-06.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Copy06 = createIcon({ + displayName: "Copy06", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Copy06; diff --git a/src/components/icons/copy-07.tsx b/src/components/icons/copy-07.tsx new file mode 100644 index 000000000..033e0b156 --- /dev/null +++ b/src/components/icons/copy-07.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Copy07 = createIcon({ + displayName: "Copy07", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Copy07; diff --git a/src/components/icons/corner-down-left.tsx b/src/components/icons/corner-down-left.tsx new file mode 100644 index 000000000..3123b0616 --- /dev/null +++ b/src/components/icons/corner-down-left.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CornerDownLeft = createIcon({ + displayName: "CornerDownLeft", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CornerDownLeft; diff --git a/src/components/icons/corner-down-right.tsx b/src/components/icons/corner-down-right.tsx new file mode 100644 index 000000000..246c2cfe6 --- /dev/null +++ b/src/components/icons/corner-down-right.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CornerDownRight = createIcon({ + displayName: "CornerDownRight", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CornerDownRight; diff --git a/src/components/icons/corner-left-down.tsx b/src/components/icons/corner-left-down.tsx new file mode 100644 index 000000000..8857d7b1a --- /dev/null +++ b/src/components/icons/corner-left-down.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CornerLeftDown = createIcon({ + displayName: "CornerLeftDown", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CornerLeftDown; diff --git a/src/components/icons/corner-left-up.tsx b/src/components/icons/corner-left-up.tsx new file mode 100644 index 000000000..8bc4673a6 --- /dev/null +++ b/src/components/icons/corner-left-up.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CornerLeftUp = createIcon({ + displayName: "CornerLeftUp", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CornerLeftUp; diff --git a/src/components/icons/corner-right-down.tsx b/src/components/icons/corner-right-down.tsx new file mode 100644 index 000000000..c3dbb071e --- /dev/null +++ b/src/components/icons/corner-right-down.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CornerRightDown = createIcon({ + displayName: "CornerRightDown", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CornerRightDown; diff --git a/src/components/icons/corner-right-up.tsx b/src/components/icons/corner-right-up.tsx new file mode 100644 index 000000000..5db674de5 --- /dev/null +++ b/src/components/icons/corner-right-up.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CornerRightUp = createIcon({ + displayName: "CornerRightUp", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CornerRightUp; diff --git a/src/components/icons/corner-up-left.tsx b/src/components/icons/corner-up-left.tsx new file mode 100644 index 000000000..7a8ee3072 --- /dev/null +++ b/src/components/icons/corner-up-left.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CornerUpLeft = createIcon({ + displayName: "CornerUpLeft", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CornerUpLeft; diff --git a/src/components/icons/corner-up-right.tsx b/src/components/icons/corner-up-right.tsx new file mode 100644 index 000000000..e25e1b6c7 --- /dev/null +++ b/src/components/icons/corner-up-right.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CornerUpRight = createIcon({ + displayName: "CornerUpRight", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CornerUpRight; diff --git a/src/components/icons/cpu-chip-01.tsx b/src/components/icons/cpu-chip-01.tsx new file mode 100644 index 000000000..0a38a958e --- /dev/null +++ b/src/components/icons/cpu-chip-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CpuChip01 = createIcon({ + displayName: "CpuChip01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CpuChip01; diff --git a/src/components/icons/cpu-chip-02.tsx b/src/components/icons/cpu-chip-02.tsx new file mode 100644 index 000000000..c6bdbb37f --- /dev/null +++ b/src/components/icons/cpu-chip-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CpuChip02 = createIcon({ + displayName: "CpuChip02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CpuChip02; diff --git a/src/components/icons/credit-card-01.tsx b/src/components/icons/credit-card-01.tsx new file mode 100644 index 000000000..9f1b6ef37 --- /dev/null +++ b/src/components/icons/credit-card-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CreditCard01 = createIcon({ + displayName: "CreditCard01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CreditCard01; diff --git a/src/components/icons/credit-card-02.tsx b/src/components/icons/credit-card-02.tsx new file mode 100644 index 000000000..4557023f0 --- /dev/null +++ b/src/components/icons/credit-card-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CreditCard02 = createIcon({ + displayName: "CreditCard02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CreditCard02; diff --git a/src/components/icons/credit-card-check.tsx b/src/components/icons/credit-card-check.tsx new file mode 100644 index 000000000..7ab879edc --- /dev/null +++ b/src/components/icons/credit-card-check.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CreditCardCheck = createIcon({ + displayName: "CreditCardCheck", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CreditCardCheck; diff --git a/src/components/icons/credit-card-down.tsx b/src/components/icons/credit-card-down.tsx new file mode 100644 index 000000000..65aa380a1 --- /dev/null +++ b/src/components/icons/credit-card-down.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CreditCardDown = createIcon({ + displayName: "CreditCardDown", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CreditCardDown; diff --git a/src/components/icons/credit-card-download.tsx b/src/components/icons/credit-card-download.tsx new file mode 100644 index 000000000..07bca8107 --- /dev/null +++ b/src/components/icons/credit-card-download.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CreditCardDownload = createIcon({ + displayName: "CreditCardDownload", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CreditCardDownload; diff --git a/src/components/icons/credit-card-edit.tsx b/src/components/icons/credit-card-edit.tsx new file mode 100644 index 000000000..47fe8a6bf --- /dev/null +++ b/src/components/icons/credit-card-edit.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CreditCardEdit = createIcon({ + displayName: "CreditCardEdit", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CreditCardEdit; diff --git a/src/components/icons/credit-card-lock.tsx b/src/components/icons/credit-card-lock.tsx new file mode 100644 index 000000000..0bc9d8807 --- /dev/null +++ b/src/components/icons/credit-card-lock.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CreditCardLock = createIcon({ + displayName: "CreditCardLock", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CreditCardLock; diff --git a/src/components/icons/credit-card-minus.tsx b/src/components/icons/credit-card-minus.tsx new file mode 100644 index 000000000..caa9ed036 --- /dev/null +++ b/src/components/icons/credit-card-minus.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CreditCardMinus = createIcon({ + displayName: "CreditCardMinus", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CreditCardMinus; diff --git a/src/components/icons/credit-card-plus.tsx b/src/components/icons/credit-card-plus.tsx new file mode 100644 index 000000000..c9f4e7bed --- /dev/null +++ b/src/components/icons/credit-card-plus.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CreditCardPlus = createIcon({ + displayName: "CreditCardPlus", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CreditCardPlus; diff --git a/src/components/icons/credit-card-refresh.tsx b/src/components/icons/credit-card-refresh.tsx new file mode 100644 index 000000000..58cdbff1d --- /dev/null +++ b/src/components/icons/credit-card-refresh.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CreditCardRefresh = createIcon({ + displayName: "CreditCardRefresh", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CreditCardRefresh; diff --git a/src/components/icons/credit-card-search.tsx b/src/components/icons/credit-card-search.tsx new file mode 100644 index 000000000..f7a4d01bd --- /dev/null +++ b/src/components/icons/credit-card-search.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CreditCardSearch = createIcon({ + displayName: "CreditCardSearch", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CreditCardSearch; diff --git a/src/components/icons/credit-card-shield.tsx b/src/components/icons/credit-card-shield.tsx new file mode 100644 index 000000000..42a22a3f4 --- /dev/null +++ b/src/components/icons/credit-card-shield.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CreditCardShield = createIcon({ + displayName: "CreditCardShield", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CreditCardShield; diff --git a/src/components/icons/credit-card-up.tsx b/src/components/icons/credit-card-up.tsx new file mode 100644 index 000000000..a568bfb3e --- /dev/null +++ b/src/components/icons/credit-card-up.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CreditCardUp = createIcon({ + displayName: "CreditCardUp", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CreditCardUp; diff --git a/src/components/icons/credit-card-upload.tsx b/src/components/icons/credit-card-upload.tsx new file mode 100644 index 000000000..ba33200c2 --- /dev/null +++ b/src/components/icons/credit-card-upload.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CreditCardUpload = createIcon({ + displayName: "CreditCardUpload", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CreditCardUpload; diff --git a/src/components/icons/credit-card-x.tsx b/src/components/icons/credit-card-x.tsx new file mode 100644 index 000000000..271ee47e3 --- /dev/null +++ b/src/components/icons/credit-card-x.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CreditCardX = createIcon({ + displayName: "CreditCardX", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CreditCardX; diff --git a/src/components/icons/crop-01.tsx b/src/components/icons/crop-01.tsx new file mode 100644 index 000000000..15199a4d4 --- /dev/null +++ b/src/components/icons/crop-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Crop01 = createIcon({ + displayName: "Crop01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Crop01; diff --git a/src/components/icons/crop-02.tsx b/src/components/icons/crop-02.tsx new file mode 100644 index 000000000..8900cb54f --- /dev/null +++ b/src/components/icons/crop-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Crop02 = createIcon({ + displayName: "Crop02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Crop02; diff --git a/src/components/icons/cryptocurrency-01.tsx b/src/components/icons/cryptocurrency-01.tsx new file mode 100644 index 000000000..d5273f220 --- /dev/null +++ b/src/components/icons/cryptocurrency-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Cryptocurrency01 = createIcon({ + displayName: "Cryptocurrency01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Cryptocurrency01; diff --git a/src/components/icons/cryptocurrency-02.tsx b/src/components/icons/cryptocurrency-02.tsx new file mode 100644 index 000000000..fca632c5f --- /dev/null +++ b/src/components/icons/cryptocurrency-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Cryptocurrency02 = createIcon({ + displayName: "Cryptocurrency02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Cryptocurrency02; diff --git a/src/components/icons/cryptocurrency-03.tsx b/src/components/icons/cryptocurrency-03.tsx new file mode 100644 index 000000000..e6219e21b --- /dev/null +++ b/src/components/icons/cryptocurrency-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Cryptocurrency03 = createIcon({ + displayName: "Cryptocurrency03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Cryptocurrency03; diff --git a/src/components/icons/cryptocurrency-04.tsx b/src/components/icons/cryptocurrency-04.tsx new file mode 100644 index 000000000..94a76bcc2 --- /dev/null +++ b/src/components/icons/cryptocurrency-04.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Cryptocurrency04 = createIcon({ + displayName: "Cryptocurrency04", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Cryptocurrency04; diff --git a/src/components/icons/cube-01.tsx b/src/components/icons/cube-01.tsx new file mode 100644 index 000000000..d5dfedf8b --- /dev/null +++ b/src/components/icons/cube-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Cube01 = createIcon({ + displayName: "Cube01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Cube01; diff --git a/src/components/icons/cube-02.tsx b/src/components/icons/cube-02.tsx new file mode 100644 index 000000000..6cccdeec4 --- /dev/null +++ b/src/components/icons/cube-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Cube02 = createIcon({ + displayName: "Cube02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Cube02; diff --git a/src/components/icons/cube-03.tsx b/src/components/icons/cube-03.tsx new file mode 100644 index 000000000..431605b2b --- /dev/null +++ b/src/components/icons/cube-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Cube03 = createIcon({ + displayName: "Cube03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Cube03; diff --git a/src/components/icons/cube-04.tsx b/src/components/icons/cube-04.tsx new file mode 100644 index 000000000..9c2b3ca41 --- /dev/null +++ b/src/components/icons/cube-04.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Cube04 = createIcon({ + displayName: "Cube04", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Cube04; diff --git a/src/components/icons/cube-outline.tsx b/src/components/icons/cube-outline.tsx new file mode 100644 index 000000000..0c287bdfb --- /dev/null +++ b/src/components/icons/cube-outline.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CubeOutline = createIcon({ + displayName: "CubeOutline", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CubeOutline; diff --git a/src/components/icons/currency-bitcoin-circle.tsx b/src/components/icons/currency-bitcoin-circle.tsx new file mode 100644 index 000000000..eee47c627 --- /dev/null +++ b/src/components/icons/currency-bitcoin-circle.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CurrencyBitcoinCircle = createIcon({ + displayName: "CurrencyBitcoinCircle", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CurrencyBitcoinCircle; diff --git a/src/components/icons/currency-bitcoin.tsx b/src/components/icons/currency-bitcoin.tsx new file mode 100644 index 000000000..b4637b4fe --- /dev/null +++ b/src/components/icons/currency-bitcoin.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CurrencyBitcoin = createIcon({ + displayName: "CurrencyBitcoin", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CurrencyBitcoin; diff --git a/src/components/icons/currency-dollar-circle.tsx b/src/components/icons/currency-dollar-circle.tsx new file mode 100644 index 000000000..c48cb6bf0 --- /dev/null +++ b/src/components/icons/currency-dollar-circle.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CurrencyDollarCircle = createIcon({ + displayName: "CurrencyDollarCircle", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CurrencyDollarCircle; diff --git a/src/components/icons/currency-dollar.tsx b/src/components/icons/currency-dollar.tsx new file mode 100644 index 000000000..73437c3c5 --- /dev/null +++ b/src/components/icons/currency-dollar.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CurrencyDollar = createIcon({ + displayName: "CurrencyDollar", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CurrencyDollar; diff --git a/src/components/icons/currency-ethereum-circle.tsx b/src/components/icons/currency-ethereum-circle.tsx new file mode 100644 index 000000000..092993974 --- /dev/null +++ b/src/components/icons/currency-ethereum-circle.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CurrencyEthereumCircle = createIcon({ + displayName: "CurrencyEthereumCircle", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CurrencyEthereumCircle; diff --git a/src/components/icons/currency-ethereum.tsx b/src/components/icons/currency-ethereum.tsx new file mode 100644 index 000000000..eafdca708 --- /dev/null +++ b/src/components/icons/currency-ethereum.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CurrencyEthereum = createIcon({ + displayName: "CurrencyEthereum", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CurrencyEthereum; diff --git a/src/components/icons/currency-euro-circle.tsx b/src/components/icons/currency-euro-circle.tsx new file mode 100644 index 000000000..7be8ec73a --- /dev/null +++ b/src/components/icons/currency-euro-circle.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CurrencyEuroCircle = createIcon({ + displayName: "CurrencyEuroCircle", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CurrencyEuroCircle; diff --git a/src/components/icons/currency-euro.tsx b/src/components/icons/currency-euro.tsx new file mode 100644 index 000000000..211bda4f1 --- /dev/null +++ b/src/components/icons/currency-euro.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CurrencyEuro = createIcon({ + displayName: "CurrencyEuro", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CurrencyEuro; diff --git a/src/components/icons/currency-pound-circle.tsx b/src/components/icons/currency-pound-circle.tsx new file mode 100644 index 000000000..e75519279 --- /dev/null +++ b/src/components/icons/currency-pound-circle.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CurrencyPoundCircle = createIcon({ + displayName: "CurrencyPoundCircle", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CurrencyPoundCircle; diff --git a/src/components/icons/currency-pound.tsx b/src/components/icons/currency-pound.tsx new file mode 100644 index 000000000..0e578ac44 --- /dev/null +++ b/src/components/icons/currency-pound.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CurrencyPound = createIcon({ + displayName: "CurrencyPound", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CurrencyPound; diff --git a/src/components/icons/currency-ruble-circle.tsx b/src/components/icons/currency-ruble-circle.tsx new file mode 100644 index 000000000..a61f8b30d --- /dev/null +++ b/src/components/icons/currency-ruble-circle.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CurrencyRubleCircle = createIcon({ + displayName: "CurrencyRubleCircle", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CurrencyRubleCircle; diff --git a/src/components/icons/currency-ruble.tsx b/src/components/icons/currency-ruble.tsx new file mode 100644 index 000000000..a53d8fd52 --- /dev/null +++ b/src/components/icons/currency-ruble.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CurrencyRuble = createIcon({ + displayName: "CurrencyRuble", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CurrencyRuble; diff --git a/src/components/icons/currency-rupee-circle.tsx b/src/components/icons/currency-rupee-circle.tsx new file mode 100644 index 000000000..b9876b09e --- /dev/null +++ b/src/components/icons/currency-rupee-circle.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CurrencyRupeeCircle = createIcon({ + displayName: "CurrencyRupeeCircle", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CurrencyRupeeCircle; diff --git a/src/components/icons/currency-rupee.tsx b/src/components/icons/currency-rupee.tsx new file mode 100644 index 000000000..2a709c183 --- /dev/null +++ b/src/components/icons/currency-rupee.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CurrencyRupee = createIcon({ + displayName: "CurrencyRupee", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CurrencyRupee; diff --git a/src/components/icons/currency-yen-circle.tsx b/src/components/icons/currency-yen-circle.tsx new file mode 100644 index 000000000..865dbfa9a --- /dev/null +++ b/src/components/icons/currency-yen-circle.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CurrencyYenCircle = createIcon({ + displayName: "CurrencyYenCircle", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CurrencyYenCircle; diff --git a/src/components/icons/currency-yen.tsx b/src/components/icons/currency-yen.tsx new file mode 100644 index 000000000..6fbd7dded --- /dev/null +++ b/src/components/icons/currency-yen.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CurrencyYen = createIcon({ + displayName: "CurrencyYen", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CurrencyYen; diff --git a/src/components/icons/cursor-01.tsx b/src/components/icons/cursor-01.tsx new file mode 100644 index 000000000..69cbe4d2a --- /dev/null +++ b/src/components/icons/cursor-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Cursor01 = createIcon({ + displayName: "Cursor01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Cursor01; diff --git a/src/components/icons/cursor-02.tsx b/src/components/icons/cursor-02.tsx new file mode 100644 index 000000000..d64437149 --- /dev/null +++ b/src/components/icons/cursor-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Cursor02 = createIcon({ + displayName: "Cursor02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Cursor02; diff --git a/src/components/icons/cursor-03.tsx b/src/components/icons/cursor-03.tsx new file mode 100644 index 000000000..a395f6980 --- /dev/null +++ b/src/components/icons/cursor-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Cursor03 = createIcon({ + displayName: "Cursor03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Cursor03; diff --git a/src/components/icons/cursor-04.tsx b/src/components/icons/cursor-04.tsx new file mode 100644 index 000000000..e6eaa2cd2 --- /dev/null +++ b/src/components/icons/cursor-04.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Cursor04 = createIcon({ + displayName: "Cursor04", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Cursor04; diff --git a/src/components/icons/cursor-box.tsx b/src/components/icons/cursor-box.tsx new file mode 100644 index 000000000..c0c1d2a8d --- /dev/null +++ b/src/components/icons/cursor-box.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CursorBox = createIcon({ + displayName: "CursorBox", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CursorBox; diff --git a/src/components/icons/cursor-click-01.tsx b/src/components/icons/cursor-click-01.tsx new file mode 100644 index 000000000..f2029b414 --- /dev/null +++ b/src/components/icons/cursor-click-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CursorClick01 = createIcon({ + displayName: "CursorClick01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CursorClick01; diff --git a/src/components/icons/cursor-click-02.tsx b/src/components/icons/cursor-click-02.tsx new file mode 100644 index 000000000..3909d9996 --- /dev/null +++ b/src/components/icons/cursor-click-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const CursorClick02 = createIcon({ + displayName: "CursorClick02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default CursorClick02; diff --git a/src/components/icons/data.tsx b/src/components/icons/data.tsx new file mode 100644 index 000000000..075f91979 --- /dev/null +++ b/src/components/icons/data.tsx @@ -0,0 +1,43 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Data = createIcon({ + displayName: "Data", + viewBox: "0 0 24 24", + path: [ + , + , + , + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Data; diff --git a/src/components/icons/database-01.tsx b/src/components/icons/database-01.tsx new file mode 100644 index 000000000..320e703db --- /dev/null +++ b/src/components/icons/database-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Database01 = createIcon({ + displayName: "Database01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Database01; diff --git a/src/components/icons/database-02.tsx b/src/components/icons/database-02.tsx new file mode 100644 index 000000000..b8a3051f9 --- /dev/null +++ b/src/components/icons/database-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Database02 = createIcon({ + displayName: "Database02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Database02; diff --git a/src/components/icons/database-03.tsx b/src/components/icons/database-03.tsx new file mode 100644 index 000000000..54771c74d --- /dev/null +++ b/src/components/icons/database-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Database03 = createIcon({ + displayName: "Database03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Database03; diff --git a/src/components/icons/dataflow-01.tsx b/src/components/icons/dataflow-01.tsx new file mode 100644 index 000000000..d15273603 --- /dev/null +++ b/src/components/icons/dataflow-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Dataflow01 = createIcon({ + displayName: "Dataflow01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Dataflow01; diff --git a/src/components/icons/dataflow-02.tsx b/src/components/icons/dataflow-02.tsx new file mode 100644 index 000000000..9bd494765 --- /dev/null +++ b/src/components/icons/dataflow-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Dataflow02 = createIcon({ + displayName: "Dataflow02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Dataflow02; diff --git a/src/components/icons/dataflow-03.tsx b/src/components/icons/dataflow-03.tsx new file mode 100644 index 000000000..8c9731eaa --- /dev/null +++ b/src/components/icons/dataflow-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Dataflow03 = createIcon({ + displayName: "Dataflow03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Dataflow03; diff --git a/src/components/icons/dataflow-04.tsx b/src/components/icons/dataflow-04.tsx new file mode 100644 index 000000000..2652cb74b --- /dev/null +++ b/src/components/icons/dataflow-04.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Dataflow04 = createIcon({ + displayName: "Dataflow04", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Dataflow04; diff --git a/src/components/icons/delete.tsx b/src/components/icons/delete.tsx new file mode 100644 index 000000000..a5cf84da7 --- /dev/null +++ b/src/components/icons/delete.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Delete = createIcon({ + displayName: "Delete", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Delete; diff --git a/src/components/icons/diamond-01.tsx b/src/components/icons/diamond-01.tsx new file mode 100644 index 000000000..1a4d52dc2 --- /dev/null +++ b/src/components/icons/diamond-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Diamond01 = createIcon({ + displayName: "Diamond01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Diamond01; diff --git a/src/components/icons/diamond-02.tsx b/src/components/icons/diamond-02.tsx new file mode 100644 index 000000000..184c502c6 --- /dev/null +++ b/src/components/icons/diamond-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Diamond02 = createIcon({ + displayName: "Diamond02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Diamond02; diff --git a/src/components/icons/dice-1.tsx b/src/components/icons/dice-1.tsx new file mode 100644 index 000000000..bc28b16c0 --- /dev/null +++ b/src/components/icons/dice-1.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Dice1 = createIcon({ + displayName: "Dice1", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Dice1; diff --git a/src/components/icons/dice-2.tsx b/src/components/icons/dice-2.tsx new file mode 100644 index 000000000..3a72118f0 --- /dev/null +++ b/src/components/icons/dice-2.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Dice2 = createIcon({ + displayName: "Dice2", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Dice2; diff --git a/src/components/icons/dice-3.tsx b/src/components/icons/dice-3.tsx new file mode 100644 index 000000000..81d2df7a0 --- /dev/null +++ b/src/components/icons/dice-3.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Dice3 = createIcon({ + displayName: "Dice3", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Dice3; diff --git a/src/components/icons/dice-4.tsx b/src/components/icons/dice-4.tsx new file mode 100644 index 000000000..3280d6da2 --- /dev/null +++ b/src/components/icons/dice-4.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Dice4 = createIcon({ + displayName: "Dice4", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Dice4; diff --git a/src/components/icons/dice-5.tsx b/src/components/icons/dice-5.tsx new file mode 100644 index 000000000..1d906fb63 --- /dev/null +++ b/src/components/icons/dice-5.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Dice5 = createIcon({ + displayName: "Dice5", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Dice5; diff --git a/src/components/icons/dice-6.tsx b/src/components/icons/dice-6.tsx new file mode 100644 index 000000000..743f47143 --- /dev/null +++ b/src/components/icons/dice-6.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Dice6 = createIcon({ + displayName: "Dice6", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Dice6; diff --git a/src/components/icons/disc-01.tsx b/src/components/icons/disc-01.tsx new file mode 100644 index 000000000..0c759355a --- /dev/null +++ b/src/components/icons/disc-01.tsx @@ -0,0 +1,27 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Disc01 = createIcon({ + displayName: "Disc01", + viewBox: "0 0 24 24", + path: [ + , + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Disc01; diff --git a/src/components/icons/disc-02.tsx b/src/components/icons/disc-02.tsx new file mode 100644 index 000000000..58e1f7c25 --- /dev/null +++ b/src/components/icons/disc-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Disc02 = createIcon({ + displayName: "Disc02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Disc02; diff --git a/src/components/icons/distribute-spacing-horizontal.tsx b/src/components/icons/distribute-spacing-horizontal.tsx new file mode 100644 index 000000000..4b2b54b8e --- /dev/null +++ b/src/components/icons/distribute-spacing-horizontal.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const DistributeSpacingHorizontal = createIcon({ + displayName: "DistributeSpacingHorizontal", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default DistributeSpacingHorizontal; diff --git a/src/components/icons/distribute-spacing-vertical.tsx b/src/components/icons/distribute-spacing-vertical.tsx new file mode 100644 index 000000000..d4dc83171 --- /dev/null +++ b/src/components/icons/distribute-spacing-vertical.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const DistributeSpacingVertical = createIcon({ + displayName: "DistributeSpacingVertical", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default DistributeSpacingVertical; diff --git a/src/components/icons/divide-01.tsx b/src/components/icons/divide-01.tsx new file mode 100644 index 000000000..c9d02b4ba --- /dev/null +++ b/src/components/icons/divide-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Divide01 = createIcon({ + displayName: "Divide01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Divide01; diff --git a/src/components/icons/divide-02.tsx b/src/components/icons/divide-02.tsx new file mode 100644 index 000000000..a4fe1f575 --- /dev/null +++ b/src/components/icons/divide-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Divide02 = createIcon({ + displayName: "Divide02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Divide02; diff --git a/src/components/icons/divide-03.tsx b/src/components/icons/divide-03.tsx new file mode 100644 index 000000000..e713f65a4 --- /dev/null +++ b/src/components/icons/divide-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Divide03 = createIcon({ + displayName: "Divide03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Divide03; diff --git a/src/components/icons/divider.tsx b/src/components/icons/divider.tsx new file mode 100644 index 000000000..fcd2a77d6 --- /dev/null +++ b/src/components/icons/divider.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Divider = createIcon({ + displayName: "Divider", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Divider; diff --git a/src/components/icons/dotpoints-01.tsx b/src/components/icons/dotpoints-01.tsx new file mode 100644 index 000000000..fd7a98c87 --- /dev/null +++ b/src/components/icons/dotpoints-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Dotpoints01 = createIcon({ + displayName: "Dotpoints01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Dotpoints01; diff --git a/src/components/icons/dotpoints-02.tsx b/src/components/icons/dotpoints-02.tsx new file mode 100644 index 000000000..558d79914 --- /dev/null +++ b/src/components/icons/dotpoints-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Dotpoints02 = createIcon({ + displayName: "Dotpoints02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Dotpoints02; diff --git a/src/components/icons/dots-grid.tsx b/src/components/icons/dots-grid.tsx new file mode 100644 index 000000000..78caf6c26 --- /dev/null +++ b/src/components/icons/dots-grid.tsx @@ -0,0 +1,83 @@ +import { createIcon } from "@chakra-ui/icons"; + +const DotsGrid = createIcon({ + displayName: "DotsGrid", + viewBox: "0 0 24 24", + path: [ + , + , + , + , + , + , + , + , + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default DotsGrid; diff --git a/src/components/icons/dots-horizontal.tsx b/src/components/icons/dots-horizontal.tsx new file mode 100644 index 000000000..69d4694d5 --- /dev/null +++ b/src/components/icons/dots-horizontal.tsx @@ -0,0 +1,35 @@ +import { createIcon } from "@chakra-ui/icons"; + +const DotsHorizontal = createIcon({ + displayName: "DotsHorizontal", + viewBox: "0 0 24 24", + path: [ + , + , + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default DotsHorizontal; diff --git a/src/components/icons/dots-vertical.tsx b/src/components/icons/dots-vertical.tsx new file mode 100644 index 000000000..cb240906e --- /dev/null +++ b/src/components/icons/dots-vertical.tsx @@ -0,0 +1,35 @@ +import { createIcon } from "@chakra-ui/icons"; + +const DotsVertical = createIcon({ + displayName: "DotsVertical", + viewBox: "0 0 24 24", + path: [ + , + , + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default DotsVertical; diff --git a/src/components/icons/download-01.tsx b/src/components/icons/download-01.tsx new file mode 100644 index 000000000..4cb9372d4 --- /dev/null +++ b/src/components/icons/download-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Download01 = createIcon({ + displayName: "Download01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Download01; diff --git a/src/components/icons/download-02.tsx b/src/components/icons/download-02.tsx new file mode 100644 index 000000000..5fcfb479e --- /dev/null +++ b/src/components/icons/download-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Download02 = createIcon({ + displayName: "Download02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Download02; diff --git a/src/components/icons/download-03.tsx b/src/components/icons/download-03.tsx new file mode 100644 index 000000000..66db94ac2 --- /dev/null +++ b/src/components/icons/download-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Download03 = createIcon({ + displayName: "Download03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Download03; diff --git a/src/components/icons/download-04.tsx b/src/components/icons/download-04.tsx new file mode 100644 index 000000000..6442443d2 --- /dev/null +++ b/src/components/icons/download-04.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Download04 = createIcon({ + displayName: "Download04", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Download04; diff --git a/src/components/icons/download-cloud-01.tsx b/src/components/icons/download-cloud-01.tsx new file mode 100644 index 000000000..bfca999dc --- /dev/null +++ b/src/components/icons/download-cloud-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const DownloadCloud01 = createIcon({ + displayName: "DownloadCloud01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default DownloadCloud01; diff --git a/src/components/icons/download-cloud-02.tsx b/src/components/icons/download-cloud-02.tsx new file mode 100644 index 000000000..a1f3fb40f --- /dev/null +++ b/src/components/icons/download-cloud-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const DownloadCloud02 = createIcon({ + displayName: "DownloadCloud02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default DownloadCloud02; diff --git a/src/components/icons/drop.tsx b/src/components/icons/drop.tsx new file mode 100644 index 000000000..6b520961a --- /dev/null +++ b/src/components/icons/drop.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Drop = createIcon({ + displayName: "Drop", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Drop; diff --git a/src/components/icons/droplets-01.tsx b/src/components/icons/droplets-01.tsx new file mode 100644 index 000000000..8b88d49d6 --- /dev/null +++ b/src/components/icons/droplets-01.tsx @@ -0,0 +1,27 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Droplets01 = createIcon({ + displayName: "Droplets01", + viewBox: "0 0 24 24", + path: [ + , + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Droplets01; diff --git a/src/components/icons/droplets-02.tsx b/src/components/icons/droplets-02.tsx new file mode 100644 index 000000000..687128ca8 --- /dev/null +++ b/src/components/icons/droplets-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Droplets02 = createIcon({ + displayName: "Droplets02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Droplets02; diff --git a/src/components/icons/droplets-03.tsx b/src/components/icons/droplets-03.tsx new file mode 100644 index 000000000..94b18531f --- /dev/null +++ b/src/components/icons/droplets-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Droplets03 = createIcon({ + displayName: "Droplets03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Droplets03; diff --git a/src/components/icons/dropper.tsx b/src/components/icons/dropper.tsx new file mode 100644 index 000000000..bb1764b27 --- /dev/null +++ b/src/components/icons/dropper.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Dropper = createIcon({ + displayName: "Dropper", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Dropper; diff --git a/src/components/icons/edit-01.tsx b/src/components/icons/edit-01.tsx new file mode 100644 index 000000000..f0efaf4f9 --- /dev/null +++ b/src/components/icons/edit-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Edit01 = createIcon({ + displayName: "Edit01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Edit01; diff --git a/src/components/icons/edit-02.tsx b/src/components/icons/edit-02.tsx new file mode 100644 index 000000000..b2da70bb3 --- /dev/null +++ b/src/components/icons/edit-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Edit02 = createIcon({ + displayName: "Edit02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Edit02; diff --git a/src/components/icons/edit-03.tsx b/src/components/icons/edit-03.tsx new file mode 100644 index 000000000..548fd9e5c --- /dev/null +++ b/src/components/icons/edit-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Edit03 = createIcon({ + displayName: "Edit03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Edit03; diff --git a/src/components/icons/edit-04.tsx b/src/components/icons/edit-04.tsx new file mode 100644 index 000000000..02b69b664 --- /dev/null +++ b/src/components/icons/edit-04.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Edit04 = createIcon({ + displayName: "Edit04", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Edit04; diff --git a/src/components/icons/edit-05.tsx b/src/components/icons/edit-05.tsx new file mode 100644 index 000000000..a38151e56 --- /dev/null +++ b/src/components/icons/edit-05.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Edit05 = createIcon({ + displayName: "Edit05", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Edit05; diff --git a/src/components/icons/equal-not.tsx b/src/components/icons/equal-not.tsx new file mode 100644 index 000000000..373820840 --- /dev/null +++ b/src/components/icons/equal-not.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const EqualNot = createIcon({ + displayName: "EqualNot", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default EqualNot; diff --git a/src/components/icons/equal.tsx b/src/components/icons/equal.tsx new file mode 100644 index 000000000..bdfa4e6a8 --- /dev/null +++ b/src/components/icons/equal.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Equal = createIcon({ + displayName: "Equal", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Equal; diff --git a/src/components/icons/eraser.tsx b/src/components/icons/eraser.tsx new file mode 100644 index 000000000..02ace3420 --- /dev/null +++ b/src/components/icons/eraser.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Eraser = createIcon({ + displayName: "Eraser", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Eraser; diff --git a/src/components/icons/expand-01.tsx b/src/components/icons/expand-01.tsx new file mode 100644 index 000000000..d154cbafc --- /dev/null +++ b/src/components/icons/expand-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Expand01 = createIcon({ + displayName: "Expand01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Expand01; diff --git a/src/components/icons/expand-02.tsx b/src/components/icons/expand-02.tsx new file mode 100644 index 000000000..081993a72 --- /dev/null +++ b/src/components/icons/expand-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Expand02 = createIcon({ + displayName: "Expand02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Expand02; diff --git a/src/components/icons/expand-03.tsx b/src/components/icons/expand-03.tsx new file mode 100644 index 000000000..8495b454b --- /dev/null +++ b/src/components/icons/expand-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Expand03 = createIcon({ + displayName: "Expand03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Expand03; diff --git a/src/components/icons/expand-04.tsx b/src/components/icons/expand-04.tsx new file mode 100644 index 000000000..0a04d863b --- /dev/null +++ b/src/components/icons/expand-04.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Expand04 = createIcon({ + displayName: "Expand04", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Expand04; diff --git a/src/components/icons/expand-05.tsx b/src/components/icons/expand-05.tsx new file mode 100644 index 000000000..806efde3d --- /dev/null +++ b/src/components/icons/expand-05.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Expand05 = createIcon({ + displayName: "Expand05", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Expand05; diff --git a/src/components/icons/expand-06.tsx b/src/components/icons/expand-06.tsx new file mode 100644 index 000000000..0dbae108f --- /dev/null +++ b/src/components/icons/expand-06.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Expand06 = createIcon({ + displayName: "Expand06", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Expand06; diff --git a/src/components/icons/eye-off.tsx b/src/components/icons/eye-off.tsx new file mode 100644 index 000000000..74eb91c92 --- /dev/null +++ b/src/components/icons/eye-off.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const EyeOff = createIcon({ + displayName: "EyeOff", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default EyeOff; diff --git a/src/components/icons/eye.tsx b/src/components/icons/eye.tsx new file mode 100644 index 000000000..220ce9df5 --- /dev/null +++ b/src/components/icons/eye.tsx @@ -0,0 +1,27 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Eye = createIcon({ + displayName: "Eye", + viewBox: "0 0 24 24", + path: [ + , + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Eye; diff --git a/src/components/icons/face-content.tsx b/src/components/icons/face-content.tsx new file mode 100644 index 000000000..0025f3e6e --- /dev/null +++ b/src/components/icons/face-content.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const FaceContent = createIcon({ + displayName: "FaceContent", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default FaceContent; diff --git a/src/components/icons/face-frown.tsx b/src/components/icons/face-frown.tsx new file mode 100644 index 000000000..7b2222f89 --- /dev/null +++ b/src/components/icons/face-frown.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const FaceFrown = createIcon({ + displayName: "FaceFrown", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default FaceFrown; diff --git a/src/components/icons/face-happy.tsx b/src/components/icons/face-happy.tsx new file mode 100644 index 000000000..3d65ddb76 --- /dev/null +++ b/src/components/icons/face-happy.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const FaceHappy = createIcon({ + displayName: "FaceHappy", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default FaceHappy; diff --git a/src/components/icons/face-id-square.tsx b/src/components/icons/face-id-square.tsx new file mode 100644 index 000000000..a660b74c7 --- /dev/null +++ b/src/components/icons/face-id-square.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const FaceIdSquare = createIcon({ + displayName: "FaceIdSquare", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default FaceIdSquare; diff --git a/src/components/icons/face-id.tsx b/src/components/icons/face-id.tsx new file mode 100644 index 000000000..051098967 --- /dev/null +++ b/src/components/icons/face-id.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const FaceId = createIcon({ + displayName: "FaceId", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default FaceId; diff --git a/src/components/icons/face-neutral.tsx b/src/components/icons/face-neutral.tsx new file mode 100644 index 000000000..c133e8c24 --- /dev/null +++ b/src/components/icons/face-neutral.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const FaceNeutral = createIcon({ + displayName: "FaceNeutral", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default FaceNeutral; diff --git a/src/components/icons/face-sad.tsx b/src/components/icons/face-sad.tsx new file mode 100644 index 000000000..33793b545 --- /dev/null +++ b/src/components/icons/face-sad.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const FaceSad = createIcon({ + displayName: "FaceSad", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default FaceSad; diff --git a/src/components/icons/face-smile.tsx b/src/components/icons/face-smile.tsx new file mode 100644 index 000000000..d99e49983 --- /dev/null +++ b/src/components/icons/face-smile.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const FaceSmile = createIcon({ + displayName: "FaceSmile", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default FaceSmile; diff --git a/src/components/icons/face-wink.tsx b/src/components/icons/face-wink.tsx new file mode 100644 index 000000000..51c11a3ad --- /dev/null +++ b/src/components/icons/face-wink.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const FaceWink = createIcon({ + displayName: "FaceWink", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default FaceWink; diff --git a/src/components/icons/fast-backward.tsx b/src/components/icons/fast-backward.tsx new file mode 100644 index 000000000..579147fb1 --- /dev/null +++ b/src/components/icons/fast-backward.tsx @@ -0,0 +1,27 @@ +import { createIcon } from "@chakra-ui/icons"; + +const FastBackward = createIcon({ + displayName: "FastBackward", + viewBox: "0 0 24 24", + path: [ + , + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default FastBackward; diff --git a/src/components/icons/fast-forward.tsx b/src/components/icons/fast-forward.tsx new file mode 100644 index 000000000..8766fd1e5 --- /dev/null +++ b/src/components/icons/fast-forward.tsx @@ -0,0 +1,27 @@ +import { createIcon } from "@chakra-ui/icons"; + +const FastForward = createIcon({ + displayName: "FastForward", + viewBox: "0 0 24 24", + path: [ + , + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default FastForward; diff --git a/src/components/icons/feather.tsx b/src/components/icons/feather.tsx new file mode 100644 index 000000000..5677446af --- /dev/null +++ b/src/components/icons/feather.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Feather = createIcon({ + displayName: "Feather", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Feather; diff --git a/src/components/icons/figma.tsx b/src/components/icons/figma.tsx new file mode 100644 index 000000000..048f303c5 --- /dev/null +++ b/src/components/icons/figma.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Figma = createIcon({ + displayName: "Figma", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Figma; diff --git a/src/components/icons/file-01.tsx b/src/components/icons/file-01.tsx new file mode 100644 index 000000000..bb0b6aade --- /dev/null +++ b/src/components/icons/file-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const File01 = createIcon({ + displayName: "File01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default File01; diff --git a/src/components/icons/file-02.tsx b/src/components/icons/file-02.tsx new file mode 100644 index 000000000..01010b1ff --- /dev/null +++ b/src/components/icons/file-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const File02 = createIcon({ + displayName: "File02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default File02; diff --git a/src/components/icons/file-03.tsx b/src/components/icons/file-03.tsx new file mode 100644 index 000000000..5d1b0e3db --- /dev/null +++ b/src/components/icons/file-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const File03 = createIcon({ + displayName: "File03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default File03; diff --git a/src/components/icons/file-04.tsx b/src/components/icons/file-04.tsx new file mode 100644 index 000000000..aa13e2948 --- /dev/null +++ b/src/components/icons/file-04.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const File04 = createIcon({ + displayName: "File04", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default File04; diff --git a/src/components/icons/file-05.tsx b/src/components/icons/file-05.tsx new file mode 100644 index 000000000..fdf58a13d --- /dev/null +++ b/src/components/icons/file-05.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const File05 = createIcon({ + displayName: "File05", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default File05; diff --git a/src/components/icons/file-06.tsx b/src/components/icons/file-06.tsx new file mode 100644 index 000000000..23bfe514a --- /dev/null +++ b/src/components/icons/file-06.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const File06 = createIcon({ + displayName: "File06", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default File06; diff --git a/src/components/icons/file-07.tsx b/src/components/icons/file-07.tsx new file mode 100644 index 000000000..ddd9613ca --- /dev/null +++ b/src/components/icons/file-07.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const File07 = createIcon({ + displayName: "File07", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default File07; diff --git a/src/components/icons/file-attachment-01.tsx b/src/components/icons/file-attachment-01.tsx new file mode 100644 index 000000000..a4cb85f97 --- /dev/null +++ b/src/components/icons/file-attachment-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const FileAttachment01 = createIcon({ + displayName: "FileAttachment01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default FileAttachment01; diff --git a/src/components/icons/file-attachment-02.tsx b/src/components/icons/file-attachment-02.tsx new file mode 100644 index 000000000..7a08398b6 --- /dev/null +++ b/src/components/icons/file-attachment-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const FileAttachment02 = createIcon({ + displayName: "FileAttachment02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default FileAttachment02; diff --git a/src/components/icons/file-attachment-03.tsx b/src/components/icons/file-attachment-03.tsx new file mode 100644 index 000000000..2871a308b --- /dev/null +++ b/src/components/icons/file-attachment-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const FileAttachment03 = createIcon({ + displayName: "FileAttachment03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default FileAttachment03; diff --git a/src/components/icons/file-attachment-04.tsx b/src/components/icons/file-attachment-04.tsx new file mode 100644 index 000000000..1436f1dc5 --- /dev/null +++ b/src/components/icons/file-attachment-04.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const FileAttachment04 = createIcon({ + displayName: "FileAttachment04", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default FileAttachment04; diff --git a/src/components/icons/file-attachment-05.tsx b/src/components/icons/file-attachment-05.tsx new file mode 100644 index 000000000..4e1c2479f --- /dev/null +++ b/src/components/icons/file-attachment-05.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const FileAttachment05 = createIcon({ + displayName: "FileAttachment05", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default FileAttachment05; diff --git a/src/components/icons/file-check-01.tsx b/src/components/icons/file-check-01.tsx new file mode 100644 index 000000000..45a9f31c8 --- /dev/null +++ b/src/components/icons/file-check-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const FileCheck01 = createIcon({ + displayName: "FileCheck01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default FileCheck01; diff --git a/src/components/icons/file-check-02.tsx b/src/components/icons/file-check-02.tsx new file mode 100644 index 000000000..bcf06ac42 --- /dev/null +++ b/src/components/icons/file-check-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const FileCheck02 = createIcon({ + displayName: "FileCheck02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default FileCheck02; diff --git a/src/components/icons/file-check-03.tsx b/src/components/icons/file-check-03.tsx new file mode 100644 index 000000000..2fac9ad4b --- /dev/null +++ b/src/components/icons/file-check-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const FileCheck03 = createIcon({ + displayName: "FileCheck03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default FileCheck03; diff --git a/src/components/icons/file-code-01.tsx b/src/components/icons/file-code-01.tsx new file mode 100644 index 000000000..93957ed99 --- /dev/null +++ b/src/components/icons/file-code-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const FileCode01 = createIcon({ + displayName: "FileCode01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default FileCode01; diff --git a/src/components/icons/file-code-02.tsx b/src/components/icons/file-code-02.tsx new file mode 100644 index 000000000..6c9eb67f9 --- /dev/null +++ b/src/components/icons/file-code-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const FileCode02 = createIcon({ + displayName: "FileCode02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default FileCode02; diff --git a/src/components/icons/file-download-01.tsx b/src/components/icons/file-download-01.tsx new file mode 100644 index 000000000..33946a4eb --- /dev/null +++ b/src/components/icons/file-download-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const FileDownload01 = createIcon({ + displayName: "FileDownload01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default FileDownload01; diff --git a/src/components/icons/file-download-02.tsx b/src/components/icons/file-download-02.tsx new file mode 100644 index 000000000..33be18f01 --- /dev/null +++ b/src/components/icons/file-download-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const FileDownload02 = createIcon({ + displayName: "FileDownload02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default FileDownload02; diff --git a/src/components/icons/file-download-03.tsx b/src/components/icons/file-download-03.tsx new file mode 100644 index 000000000..70edd7091 --- /dev/null +++ b/src/components/icons/file-download-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const FileDownload03 = createIcon({ + displayName: "FileDownload03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default FileDownload03; diff --git a/src/components/icons/file-heart-01.tsx b/src/components/icons/file-heart-01.tsx new file mode 100644 index 000000000..1a3773289 --- /dev/null +++ b/src/components/icons/file-heart-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const FileHeart01 = createIcon({ + displayName: "FileHeart01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default FileHeart01; diff --git a/src/components/icons/file-heart-02.tsx b/src/components/icons/file-heart-02.tsx new file mode 100644 index 000000000..f46b94cdf --- /dev/null +++ b/src/components/icons/file-heart-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const FileHeart02 = createIcon({ + displayName: "FileHeart02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default FileHeart02; diff --git a/src/components/icons/file-heart-03.tsx b/src/components/icons/file-heart-03.tsx new file mode 100644 index 000000000..350dde7e3 --- /dev/null +++ b/src/components/icons/file-heart-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const FileHeart03 = createIcon({ + displayName: "FileHeart03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default FileHeart03; diff --git a/src/components/icons/file-lock-01.tsx b/src/components/icons/file-lock-01.tsx new file mode 100644 index 000000000..c980cc19a --- /dev/null +++ b/src/components/icons/file-lock-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const FileLock01 = createIcon({ + displayName: "FileLock01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default FileLock01; diff --git a/src/components/icons/file-lock-02.tsx b/src/components/icons/file-lock-02.tsx new file mode 100644 index 000000000..557973321 --- /dev/null +++ b/src/components/icons/file-lock-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const FileLock02 = createIcon({ + displayName: "FileLock02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default FileLock02; diff --git a/src/components/icons/file-lock-03.tsx b/src/components/icons/file-lock-03.tsx new file mode 100644 index 000000000..021b3280a --- /dev/null +++ b/src/components/icons/file-lock-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const FileLock03 = createIcon({ + displayName: "FileLock03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default FileLock03; diff --git a/src/components/icons/file-minus-01.tsx b/src/components/icons/file-minus-01.tsx new file mode 100644 index 000000000..5b9e0e217 --- /dev/null +++ b/src/components/icons/file-minus-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const FileMinus01 = createIcon({ + displayName: "FileMinus01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default FileMinus01; diff --git a/src/components/icons/file-minus-02.tsx b/src/components/icons/file-minus-02.tsx new file mode 100644 index 000000000..523217b3e --- /dev/null +++ b/src/components/icons/file-minus-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const FileMinus02 = createIcon({ + displayName: "FileMinus02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default FileMinus02; diff --git a/src/components/icons/file-minus-03.tsx b/src/components/icons/file-minus-03.tsx new file mode 100644 index 000000000..097b629dc --- /dev/null +++ b/src/components/icons/file-minus-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const FileMinus03 = createIcon({ + displayName: "FileMinus03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default FileMinus03; diff --git a/src/components/icons/file-plus-01.tsx b/src/components/icons/file-plus-01.tsx new file mode 100644 index 000000000..28e540858 --- /dev/null +++ b/src/components/icons/file-plus-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const FilePlus01 = createIcon({ + displayName: "FilePlus01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default FilePlus01; diff --git a/src/components/icons/file-plus-02.tsx b/src/components/icons/file-plus-02.tsx new file mode 100644 index 000000000..a64f9ae6e --- /dev/null +++ b/src/components/icons/file-plus-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const FilePlus02 = createIcon({ + displayName: "FilePlus02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default FilePlus02; diff --git a/src/components/icons/file-plus-03.tsx b/src/components/icons/file-plus-03.tsx new file mode 100644 index 000000000..b53b2f355 --- /dev/null +++ b/src/components/icons/file-plus-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const FilePlus03 = createIcon({ + displayName: "FilePlus03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default FilePlus03; diff --git a/src/components/icons/file-question-01.tsx b/src/components/icons/file-question-01.tsx new file mode 100644 index 000000000..d58a967c9 --- /dev/null +++ b/src/components/icons/file-question-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const FileQuestion01 = createIcon({ + displayName: "FileQuestion01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default FileQuestion01; diff --git a/src/components/icons/file-question-02.tsx b/src/components/icons/file-question-02.tsx new file mode 100644 index 000000000..3c2a3d737 --- /dev/null +++ b/src/components/icons/file-question-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const FileQuestion02 = createIcon({ + displayName: "FileQuestion02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default FileQuestion02; diff --git a/src/components/icons/file-question-03.tsx b/src/components/icons/file-question-03.tsx new file mode 100644 index 000000000..084c6518d --- /dev/null +++ b/src/components/icons/file-question-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const FileQuestion03 = createIcon({ + displayName: "FileQuestion03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default FileQuestion03; diff --git a/src/components/icons/file-search-01.tsx b/src/components/icons/file-search-01.tsx new file mode 100644 index 000000000..93df0f8bc --- /dev/null +++ b/src/components/icons/file-search-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const FileSearch01 = createIcon({ + displayName: "FileSearch01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default FileSearch01; diff --git a/src/components/icons/file-search-02.tsx b/src/components/icons/file-search-02.tsx new file mode 100644 index 000000000..7045f9cd4 --- /dev/null +++ b/src/components/icons/file-search-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const FileSearch02 = createIcon({ + displayName: "FileSearch02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default FileSearch02; diff --git a/src/components/icons/file-search-03.tsx b/src/components/icons/file-search-03.tsx new file mode 100644 index 000000000..f7d9a9a94 --- /dev/null +++ b/src/components/icons/file-search-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const FileSearch03 = createIcon({ + displayName: "FileSearch03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default FileSearch03; diff --git a/src/components/icons/file-shield-01.tsx b/src/components/icons/file-shield-01.tsx new file mode 100644 index 000000000..146c36555 --- /dev/null +++ b/src/components/icons/file-shield-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const FileShield01 = createIcon({ + displayName: "FileShield01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default FileShield01; diff --git a/src/components/icons/file-shield-02.tsx b/src/components/icons/file-shield-02.tsx new file mode 100644 index 000000000..3ffd27caa --- /dev/null +++ b/src/components/icons/file-shield-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const FileShield02 = createIcon({ + displayName: "FileShield02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default FileShield02; diff --git a/src/components/icons/file-shield-03.tsx b/src/components/icons/file-shield-03.tsx new file mode 100644 index 000000000..f9b26c5ed --- /dev/null +++ b/src/components/icons/file-shield-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const FileShield03 = createIcon({ + displayName: "FileShield03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default FileShield03; diff --git a/src/components/icons/file-x-01.tsx b/src/components/icons/file-x-01.tsx new file mode 100644 index 000000000..2e0368a24 --- /dev/null +++ b/src/components/icons/file-x-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const FileX01 = createIcon({ + displayName: "FileX01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default FileX01; diff --git a/src/components/icons/file-x-02.tsx b/src/components/icons/file-x-02.tsx new file mode 100644 index 000000000..79f9d711b --- /dev/null +++ b/src/components/icons/file-x-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const FileX02 = createIcon({ + displayName: "FileX02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default FileX02; diff --git a/src/components/icons/file-x-03.tsx b/src/components/icons/file-x-03.tsx new file mode 100644 index 000000000..c1948aa87 --- /dev/null +++ b/src/components/icons/file-x-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const FileX03 = createIcon({ + displayName: "FileX03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default FileX03; diff --git a/src/components/icons/film-01.tsx b/src/components/icons/film-01.tsx new file mode 100644 index 000000000..a0044ed36 --- /dev/null +++ b/src/components/icons/film-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Film01 = createIcon({ + displayName: "Film01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Film01; diff --git a/src/components/icons/film-02.tsx b/src/components/icons/film-02.tsx new file mode 100644 index 000000000..33f027c74 --- /dev/null +++ b/src/components/icons/film-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Film02 = createIcon({ + displayName: "Film02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Film02; diff --git a/src/components/icons/film-03.tsx b/src/components/icons/film-03.tsx new file mode 100644 index 000000000..9d4d5cc61 --- /dev/null +++ b/src/components/icons/film-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Film03 = createIcon({ + displayName: "Film03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Film03; diff --git a/src/components/icons/filter-funnel-01.tsx b/src/components/icons/filter-funnel-01.tsx new file mode 100644 index 000000000..afae87b84 --- /dev/null +++ b/src/components/icons/filter-funnel-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const FilterFunnel01 = createIcon({ + displayName: "FilterFunnel01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default FilterFunnel01; diff --git a/src/components/icons/filter-funnel-02.tsx b/src/components/icons/filter-funnel-02.tsx new file mode 100644 index 000000000..df8f02a1b --- /dev/null +++ b/src/components/icons/filter-funnel-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const FilterFunnel02 = createIcon({ + displayName: "FilterFunnel02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default FilterFunnel02; diff --git a/src/components/icons/filter-lines.tsx b/src/components/icons/filter-lines.tsx new file mode 100644 index 000000000..707c4e6d6 --- /dev/null +++ b/src/components/icons/filter-lines.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const FilterLines = createIcon({ + displayName: "FilterLines", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default FilterLines; diff --git a/src/components/icons/fingerprint-01.tsx b/src/components/icons/fingerprint-01.tsx new file mode 100644 index 000000000..6383c1a76 --- /dev/null +++ b/src/components/icons/fingerprint-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Fingerprint01 = createIcon({ + displayName: "Fingerprint01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Fingerprint01; diff --git a/src/components/icons/fingerprint-02.tsx b/src/components/icons/fingerprint-02.tsx new file mode 100644 index 000000000..fc3b53522 --- /dev/null +++ b/src/components/icons/fingerprint-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Fingerprint02 = createIcon({ + displayName: "Fingerprint02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Fingerprint02; diff --git a/src/components/icons/fingerprint-03.tsx b/src/components/icons/fingerprint-03.tsx new file mode 100644 index 000000000..6568ec451 --- /dev/null +++ b/src/components/icons/fingerprint-03.tsx @@ -0,0 +1,75 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Fingerprint03 = createIcon({ + displayName: "Fingerprint03", + viewBox: "0 0 24 24", + path: [ + , + , + , + , + , + , + , + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Fingerprint03; diff --git a/src/components/icons/fingerprint-04.tsx b/src/components/icons/fingerprint-04.tsx new file mode 100644 index 000000000..ab5c70559 --- /dev/null +++ b/src/components/icons/fingerprint-04.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Fingerprint04 = createIcon({ + displayName: "Fingerprint04", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Fingerprint04; diff --git a/src/components/icons/flag-01.tsx b/src/components/icons/flag-01.tsx new file mode 100644 index 000000000..7637d0bac --- /dev/null +++ b/src/components/icons/flag-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Flag01 = createIcon({ + displayName: "Flag01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Flag01; diff --git a/src/components/icons/flag-02.tsx b/src/components/icons/flag-02.tsx new file mode 100644 index 000000000..f9fdba167 --- /dev/null +++ b/src/components/icons/flag-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Flag02 = createIcon({ + displayName: "Flag02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Flag02; diff --git a/src/components/icons/flag-03.tsx b/src/components/icons/flag-03.tsx new file mode 100644 index 000000000..242615688 --- /dev/null +++ b/src/components/icons/flag-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Flag03 = createIcon({ + displayName: "Flag03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Flag03; diff --git a/src/components/icons/flag-04.tsx b/src/components/icons/flag-04.tsx new file mode 100644 index 000000000..94a534468 --- /dev/null +++ b/src/components/icons/flag-04.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Flag04 = createIcon({ + displayName: "Flag04", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Flag04; diff --git a/src/components/icons/flag-05.tsx b/src/components/icons/flag-05.tsx new file mode 100644 index 000000000..7f43a07b0 --- /dev/null +++ b/src/components/icons/flag-05.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Flag05 = createIcon({ + displayName: "Flag05", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Flag05; diff --git a/src/components/icons/flag-06.tsx b/src/components/icons/flag-06.tsx new file mode 100644 index 000000000..13afaf2b4 --- /dev/null +++ b/src/components/icons/flag-06.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Flag06 = createIcon({ + displayName: "Flag06", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Flag06; diff --git a/src/components/icons/flash-off.tsx b/src/components/icons/flash-off.tsx new file mode 100644 index 000000000..d2c2fca75 --- /dev/null +++ b/src/components/icons/flash-off.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const FlashOff = createIcon({ + displayName: "FlashOff", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default FlashOff; diff --git a/src/components/icons/flash.tsx b/src/components/icons/flash.tsx new file mode 100644 index 000000000..0c75ba545 --- /dev/null +++ b/src/components/icons/flash.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Flash = createIcon({ + displayName: "Flash", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Flash; diff --git a/src/components/icons/flex-align-bottom.tsx b/src/components/icons/flex-align-bottom.tsx new file mode 100644 index 000000000..235fd347a --- /dev/null +++ b/src/components/icons/flex-align-bottom.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const FlexAlignBottom = createIcon({ + displayName: "FlexAlignBottom", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default FlexAlignBottom; diff --git a/src/components/icons/flex-align-left.tsx b/src/components/icons/flex-align-left.tsx new file mode 100644 index 000000000..dbd94408f --- /dev/null +++ b/src/components/icons/flex-align-left.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const FlexAlignLeft = createIcon({ + displayName: "FlexAlignLeft", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default FlexAlignLeft; diff --git a/src/components/icons/flex-align-right.tsx b/src/components/icons/flex-align-right.tsx new file mode 100644 index 000000000..008b516cf --- /dev/null +++ b/src/components/icons/flex-align-right.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const FlexAlignRight = createIcon({ + displayName: "FlexAlignRight", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default FlexAlignRight; diff --git a/src/components/icons/flex-align-top.tsx b/src/components/icons/flex-align-top.tsx new file mode 100644 index 000000000..9b145d385 --- /dev/null +++ b/src/components/icons/flex-align-top.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const FlexAlignTop = createIcon({ + displayName: "FlexAlignTop", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default FlexAlignTop; diff --git a/src/components/icons/flip-backward.tsx b/src/components/icons/flip-backward.tsx new file mode 100644 index 000000000..6a6ad43bb --- /dev/null +++ b/src/components/icons/flip-backward.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const FlipBackward = createIcon({ + displayName: "FlipBackward", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default FlipBackward; diff --git a/src/components/icons/flip-forward.tsx b/src/components/icons/flip-forward.tsx new file mode 100644 index 000000000..b0bf81880 --- /dev/null +++ b/src/components/icons/flip-forward.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const FlipForward = createIcon({ + displayName: "FlipForward", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default FlipForward; diff --git a/src/components/icons/folder-check.tsx b/src/components/icons/folder-check.tsx new file mode 100644 index 000000000..7382899b1 --- /dev/null +++ b/src/components/icons/folder-check.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const FolderCheck = createIcon({ + displayName: "FolderCheck", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default FolderCheck; diff --git a/src/components/icons/folder-closed.tsx b/src/components/icons/folder-closed.tsx new file mode 100644 index 000000000..ce3af7ccf --- /dev/null +++ b/src/components/icons/folder-closed.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const FolderClosed = createIcon({ + displayName: "FolderClosed", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default FolderClosed; diff --git a/src/components/icons/folder-code.tsx b/src/components/icons/folder-code.tsx new file mode 100644 index 000000000..e902635d7 --- /dev/null +++ b/src/components/icons/folder-code.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const FolderCode = createIcon({ + displayName: "FolderCode", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default FolderCode; diff --git a/src/components/icons/folder-download.tsx b/src/components/icons/folder-download.tsx new file mode 100644 index 000000000..642851a28 --- /dev/null +++ b/src/components/icons/folder-download.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const FolderDownload = createIcon({ + displayName: "FolderDownload", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default FolderDownload; diff --git a/src/components/icons/folder-lock.tsx b/src/components/icons/folder-lock.tsx new file mode 100644 index 000000000..ce68a7715 --- /dev/null +++ b/src/components/icons/folder-lock.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const FolderLock = createIcon({ + displayName: "FolderLock", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default FolderLock; diff --git a/src/components/icons/folder-minus.tsx b/src/components/icons/folder-minus.tsx new file mode 100644 index 000000000..e49ffad97 --- /dev/null +++ b/src/components/icons/folder-minus.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const FolderMinus = createIcon({ + displayName: "FolderMinus", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default FolderMinus; diff --git a/src/components/icons/folder-plus.tsx b/src/components/icons/folder-plus.tsx new file mode 100644 index 000000000..60717cd34 --- /dev/null +++ b/src/components/icons/folder-plus.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const FolderPlus = createIcon({ + displayName: "FolderPlus", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default FolderPlus; diff --git a/src/components/icons/folder-question.tsx b/src/components/icons/folder-question.tsx new file mode 100644 index 000000000..c6553c3ce --- /dev/null +++ b/src/components/icons/folder-question.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const FolderQuestion = createIcon({ + displayName: "FolderQuestion", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default FolderQuestion; diff --git a/src/components/icons/folder-search.tsx b/src/components/icons/folder-search.tsx new file mode 100644 index 000000000..ff9c62258 --- /dev/null +++ b/src/components/icons/folder-search.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const FolderSearch = createIcon({ + displayName: "FolderSearch", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default FolderSearch; diff --git a/src/components/icons/folder-shield.tsx b/src/components/icons/folder-shield.tsx new file mode 100644 index 000000000..b953b1b9b --- /dev/null +++ b/src/components/icons/folder-shield.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const FolderShield = createIcon({ + displayName: "FolderShield", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default FolderShield; diff --git a/src/components/icons/folder-x.tsx b/src/components/icons/folder-x.tsx new file mode 100644 index 000000000..5a987835e --- /dev/null +++ b/src/components/icons/folder-x.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const FolderX = createIcon({ + displayName: "FolderX", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default FolderX; diff --git a/src/components/icons/folder.tsx b/src/components/icons/folder.tsx new file mode 100644 index 000000000..5965818a3 --- /dev/null +++ b/src/components/icons/folder.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Folder = createIcon({ + displayName: "Folder", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Folder; diff --git a/src/components/icons/framer.tsx b/src/components/icons/framer.tsx new file mode 100644 index 000000000..b67e47383 --- /dev/null +++ b/src/components/icons/framer.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Framer = createIcon({ + displayName: "Framer", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Framer; diff --git a/src/components/icons/gaming-pad-01.tsx b/src/components/icons/gaming-pad-01.tsx new file mode 100644 index 000000000..30d44346c --- /dev/null +++ b/src/components/icons/gaming-pad-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const GamingPad01 = createIcon({ + displayName: "GamingPad01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default GamingPad01; diff --git a/src/components/icons/gaming-pad-02.tsx b/src/components/icons/gaming-pad-02.tsx new file mode 100644 index 000000000..1ba36f8d7 --- /dev/null +++ b/src/components/icons/gaming-pad-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const GamingPad02 = createIcon({ + displayName: "GamingPad02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default GamingPad02; diff --git a/src/components/icons/gift-01.tsx b/src/components/icons/gift-01.tsx new file mode 100644 index 000000000..793712aab --- /dev/null +++ b/src/components/icons/gift-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Gift01 = createIcon({ + displayName: "Gift01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Gift01; diff --git a/src/components/icons/gift-02.tsx b/src/components/icons/gift-02.tsx new file mode 100644 index 000000000..f505c550b --- /dev/null +++ b/src/components/icons/gift-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Gift02 = createIcon({ + displayName: "Gift02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Gift02; diff --git a/src/components/icons/git-branch-01.tsx b/src/components/icons/git-branch-01.tsx new file mode 100644 index 000000000..e9ebcde9d --- /dev/null +++ b/src/components/icons/git-branch-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const GitBranch01 = createIcon({ + displayName: "GitBranch01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default GitBranch01; diff --git a/src/components/icons/git-branch-02.tsx b/src/components/icons/git-branch-02.tsx new file mode 100644 index 000000000..d1c9c28bc --- /dev/null +++ b/src/components/icons/git-branch-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const GitBranch02 = createIcon({ + displayName: "GitBranch02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default GitBranch02; diff --git a/src/components/icons/git-commit.tsx b/src/components/icons/git-commit.tsx new file mode 100644 index 000000000..46adf9e99 --- /dev/null +++ b/src/components/icons/git-commit.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const GitCommit = createIcon({ + displayName: "GitCommit", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default GitCommit; diff --git a/src/components/icons/git-merge.tsx b/src/components/icons/git-merge.tsx new file mode 100644 index 000000000..d9211db5b --- /dev/null +++ b/src/components/icons/git-merge.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const GitMerge = createIcon({ + displayName: "GitMerge", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default GitMerge; diff --git a/src/components/icons/git-pull-request.tsx b/src/components/icons/git-pull-request.tsx new file mode 100644 index 000000000..84dfda18d --- /dev/null +++ b/src/components/icons/git-pull-request.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const GitPullRequest = createIcon({ + displayName: "GitPullRequest", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default GitPullRequest; diff --git a/src/components/icons/glasses-01.tsx b/src/components/icons/glasses-01.tsx new file mode 100644 index 000000000..ddd676631 --- /dev/null +++ b/src/components/icons/glasses-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Glasses01 = createIcon({ + displayName: "Glasses01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Glasses01; diff --git a/src/components/icons/glasses-02.tsx b/src/components/icons/glasses-02.tsx new file mode 100644 index 000000000..5412583b4 --- /dev/null +++ b/src/components/icons/glasses-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Glasses02 = createIcon({ + displayName: "Glasses02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Glasses02; diff --git a/src/components/icons/globe-01.tsx b/src/components/icons/globe-01.tsx new file mode 100644 index 000000000..a543aa214 --- /dev/null +++ b/src/components/icons/globe-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Globe01 = createIcon({ + displayName: "Globe01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Globe01; diff --git a/src/components/icons/globe-02.tsx b/src/components/icons/globe-02.tsx new file mode 100644 index 000000000..8a96452a7 --- /dev/null +++ b/src/components/icons/globe-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Globe02 = createIcon({ + displayName: "Globe02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Globe02; diff --git a/src/components/icons/globe-03.tsx b/src/components/icons/globe-03.tsx new file mode 100644 index 000000000..a305bfbdd --- /dev/null +++ b/src/components/icons/globe-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Globe03 = createIcon({ + displayName: "Globe03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Globe03; diff --git a/src/components/icons/globe-04.tsx b/src/components/icons/globe-04.tsx new file mode 100644 index 000000000..20350e126 --- /dev/null +++ b/src/components/icons/globe-04.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Globe04 = createIcon({ + displayName: "Globe04", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Globe04; diff --git a/src/components/icons/globe-05.tsx b/src/components/icons/globe-05.tsx new file mode 100644 index 000000000..bc2c80093 --- /dev/null +++ b/src/components/icons/globe-05.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Globe05 = createIcon({ + displayName: "Globe05", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Globe05; diff --git a/src/components/icons/globe-06.tsx b/src/components/icons/globe-06.tsx new file mode 100644 index 000000000..e338499b0 --- /dev/null +++ b/src/components/icons/globe-06.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Globe06 = createIcon({ + displayName: "Globe06", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Globe06; diff --git a/src/components/icons/globe-slated-01.tsx b/src/components/icons/globe-slated-01.tsx new file mode 100644 index 000000000..fabc5727f --- /dev/null +++ b/src/components/icons/globe-slated-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const GlobeSlated01 = createIcon({ + displayName: "GlobeSlated01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default GlobeSlated01; diff --git a/src/components/icons/globe-slated-02.tsx b/src/components/icons/globe-slated-02.tsx new file mode 100644 index 000000000..68e700faf --- /dev/null +++ b/src/components/icons/globe-slated-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const GlobeSlated02 = createIcon({ + displayName: "GlobeSlated02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default GlobeSlated02; diff --git a/src/components/icons/google-chrome.tsx b/src/components/icons/google-chrome.tsx new file mode 100644 index 000000000..65b870afa --- /dev/null +++ b/src/components/icons/google-chrome.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const GoogleChrome = createIcon({ + displayName: "GoogleChrome", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default GoogleChrome; diff --git a/src/components/icons/graduation-hat-01.tsx b/src/components/icons/graduation-hat-01.tsx new file mode 100644 index 000000000..f8da9ceca --- /dev/null +++ b/src/components/icons/graduation-hat-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const GraduationHat01 = createIcon({ + displayName: "GraduationHat01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default GraduationHat01; diff --git a/src/components/icons/graduation-hat-02.tsx b/src/components/icons/graduation-hat-02.tsx new file mode 100644 index 000000000..736565d46 --- /dev/null +++ b/src/components/icons/graduation-hat-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const GraduationHat02 = createIcon({ + displayName: "GraduationHat02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default GraduationHat02; diff --git a/src/components/icons/grid-01.tsx b/src/components/icons/grid-01.tsx new file mode 100644 index 000000000..310424a31 --- /dev/null +++ b/src/components/icons/grid-01.tsx @@ -0,0 +1,43 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Grid01 = createIcon({ + displayName: "Grid01", + viewBox: "0 0 24 24", + path: [ + , + , + , + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Grid01; diff --git a/src/components/icons/grid-02.tsx b/src/components/icons/grid-02.tsx new file mode 100644 index 000000000..55032c586 --- /dev/null +++ b/src/components/icons/grid-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Grid02 = createIcon({ + displayName: "Grid02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Grid02; diff --git a/src/components/icons/grid-03.tsx b/src/components/icons/grid-03.tsx new file mode 100644 index 000000000..d48a284a9 --- /dev/null +++ b/src/components/icons/grid-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Grid03 = createIcon({ + displayName: "Grid03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Grid03; diff --git a/src/components/icons/grid-dots-blank.tsx b/src/components/icons/grid-dots-blank.tsx new file mode 100644 index 000000000..5ce587d35 --- /dev/null +++ b/src/components/icons/grid-dots-blank.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const GridDotsBlank = createIcon({ + displayName: "GridDotsBlank", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default GridDotsBlank; diff --git a/src/components/icons/grid-dots-bottom.tsx b/src/components/icons/grid-dots-bottom.tsx new file mode 100644 index 000000000..5d037482a --- /dev/null +++ b/src/components/icons/grid-dots-bottom.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const GridDotsBottom = createIcon({ + displayName: "GridDotsBottom", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default GridDotsBottom; diff --git a/src/components/icons/grid-dots-horizontal-center.tsx b/src/components/icons/grid-dots-horizontal-center.tsx new file mode 100644 index 000000000..c3d13c65c --- /dev/null +++ b/src/components/icons/grid-dots-horizontal-center.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const GridDotsHorizontalCenter = createIcon({ + displayName: "GridDotsHorizontalCenter", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default GridDotsHorizontalCenter; diff --git a/src/components/icons/grid-dots-left.tsx b/src/components/icons/grid-dots-left.tsx new file mode 100644 index 000000000..ee1900e6d --- /dev/null +++ b/src/components/icons/grid-dots-left.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const GridDotsLeft = createIcon({ + displayName: "GridDotsLeft", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default GridDotsLeft; diff --git a/src/components/icons/grid-dots-outer.tsx b/src/components/icons/grid-dots-outer.tsx new file mode 100644 index 000000000..1fbf7eefe --- /dev/null +++ b/src/components/icons/grid-dots-outer.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const GridDotsOuter = createIcon({ + displayName: "GridDotsOuter", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default GridDotsOuter; diff --git a/src/components/icons/grid-dots-right.tsx b/src/components/icons/grid-dots-right.tsx new file mode 100644 index 000000000..451f7f32e --- /dev/null +++ b/src/components/icons/grid-dots-right.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const GridDotsRight = createIcon({ + displayName: "GridDotsRight", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default GridDotsRight; diff --git a/src/components/icons/grid-dots-top.tsx b/src/components/icons/grid-dots-top.tsx new file mode 100644 index 000000000..be7bcf0c8 --- /dev/null +++ b/src/components/icons/grid-dots-top.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const GridDotsTop = createIcon({ + displayName: "GridDotsTop", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default GridDotsTop; diff --git a/src/components/icons/grid-dots-vertical-center.tsx b/src/components/icons/grid-dots-vertical-center.tsx new file mode 100644 index 000000000..97efbbd36 --- /dev/null +++ b/src/components/icons/grid-dots-vertical-center.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const GridDotsVerticalCenter = createIcon({ + displayName: "GridDotsVerticalCenter", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default GridDotsVerticalCenter; diff --git a/src/components/icons/hand.tsx b/src/components/icons/hand.tsx new file mode 100644 index 000000000..962f027eb --- /dev/null +++ b/src/components/icons/hand.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Hand = createIcon({ + displayName: "Hand", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Hand; diff --git a/src/components/icons/hard-drive.tsx b/src/components/icons/hard-drive.tsx new file mode 100644 index 000000000..91158bea2 --- /dev/null +++ b/src/components/icons/hard-drive.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const HardDrive = createIcon({ + displayName: "HardDrive", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default HardDrive; diff --git a/src/components/icons/hash-01.tsx b/src/components/icons/hash-01.tsx new file mode 100644 index 000000000..21b645519 --- /dev/null +++ b/src/components/icons/hash-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Hash01 = createIcon({ + displayName: "Hash01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Hash01; diff --git a/src/components/icons/hash-02.tsx b/src/components/icons/hash-02.tsx new file mode 100644 index 000000000..16f2076b3 --- /dev/null +++ b/src/components/icons/hash-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Hash02 = createIcon({ + displayName: "Hash02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Hash02; diff --git a/src/components/icons/heading-01.tsx b/src/components/icons/heading-01.tsx new file mode 100644 index 000000000..9c40e72ca --- /dev/null +++ b/src/components/icons/heading-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Heading01 = createIcon({ + displayName: "Heading01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Heading01; diff --git a/src/components/icons/heading-02.tsx b/src/components/icons/heading-02.tsx new file mode 100644 index 000000000..1bfb812fc --- /dev/null +++ b/src/components/icons/heading-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Heading02 = createIcon({ + displayName: "Heading02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Heading02; diff --git a/src/components/icons/heading-square.tsx b/src/components/icons/heading-square.tsx new file mode 100644 index 000000000..e3061d45f --- /dev/null +++ b/src/components/icons/heading-square.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const HeadingSquare = createIcon({ + displayName: "HeadingSquare", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default HeadingSquare; diff --git a/src/components/icons/headphones-01.tsx b/src/components/icons/headphones-01.tsx new file mode 100644 index 000000000..abc7700d0 --- /dev/null +++ b/src/components/icons/headphones-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Headphones01 = createIcon({ + displayName: "Headphones01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Headphones01; diff --git a/src/components/icons/headphones-02.tsx b/src/components/icons/headphones-02.tsx new file mode 100644 index 000000000..023bd9bea --- /dev/null +++ b/src/components/icons/headphones-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Headphones02 = createIcon({ + displayName: "Headphones02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Headphones02; diff --git a/src/components/icons/heart-circle.tsx b/src/components/icons/heart-circle.tsx new file mode 100644 index 000000000..606fa3bcf --- /dev/null +++ b/src/components/icons/heart-circle.tsx @@ -0,0 +1,29 @@ +import { createIcon } from "@chakra-ui/icons"; + +const HeartCircle = createIcon({ + displayName: "HeartCircle", + viewBox: "0 0 24 24", + path: [ + , + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default HeartCircle; diff --git a/src/components/icons/heart-hand.tsx b/src/components/icons/heart-hand.tsx new file mode 100644 index 000000000..38b04b31a --- /dev/null +++ b/src/components/icons/heart-hand.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const HeartHand = createIcon({ + displayName: "HeartHand", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default HeartHand; diff --git a/src/components/icons/heart-hexagon.tsx b/src/components/icons/heart-hexagon.tsx new file mode 100644 index 000000000..7df75396b --- /dev/null +++ b/src/components/icons/heart-hexagon.tsx @@ -0,0 +1,29 @@ +import { createIcon } from "@chakra-ui/icons"; + +const HeartHexagon = createIcon({ + displayName: "HeartHexagon", + viewBox: "0 0 24 24", + path: [ + , + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default HeartHexagon; diff --git a/src/components/icons/heart-octagon.tsx b/src/components/icons/heart-octagon.tsx new file mode 100644 index 000000000..3c952f670 --- /dev/null +++ b/src/components/icons/heart-octagon.tsx @@ -0,0 +1,29 @@ +import { createIcon } from "@chakra-ui/icons"; + +const HeartOctagon = createIcon({ + displayName: "HeartOctagon", + viewBox: "0 0 24 24", + path: [ + , + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default HeartOctagon; diff --git a/src/components/icons/heart-rounded.tsx b/src/components/icons/heart-rounded.tsx new file mode 100644 index 000000000..6a78d52f4 --- /dev/null +++ b/src/components/icons/heart-rounded.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const HeartRounded = createIcon({ + displayName: "HeartRounded", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default HeartRounded; diff --git a/src/components/icons/heart-square.tsx b/src/components/icons/heart-square.tsx new file mode 100644 index 000000000..e83e09f15 --- /dev/null +++ b/src/components/icons/heart-square.tsx @@ -0,0 +1,29 @@ +import { createIcon } from "@chakra-ui/icons"; + +const HeartSquare = createIcon({ + displayName: "HeartSquare", + viewBox: "0 0 24 24", + path: [ + , + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default HeartSquare; diff --git a/src/components/icons/heart.tsx b/src/components/icons/heart.tsx new file mode 100644 index 000000000..c952fc224 --- /dev/null +++ b/src/components/icons/heart.tsx @@ -0,0 +1,21 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Heart = createIcon({ + displayName: "Heart", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Heart; diff --git a/src/components/icons/hearts.tsx b/src/components/icons/hearts.tsx new file mode 100644 index 000000000..6384b91cd --- /dev/null +++ b/src/components/icons/hearts.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Hearts = createIcon({ + displayName: "Hearts", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Hearts; diff --git a/src/components/icons/help-circle.tsx b/src/components/icons/help-circle.tsx new file mode 100644 index 000000000..36e6c1308 --- /dev/null +++ b/src/components/icons/help-circle.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const HelpCircle = createIcon({ + displayName: "HelpCircle", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default HelpCircle; diff --git a/src/components/icons/help-hexagon.tsx b/src/components/icons/help-hexagon.tsx new file mode 100644 index 000000000..0944da401 --- /dev/null +++ b/src/components/icons/help-hexagon.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const HelpHexagon = createIcon({ + displayName: "HelpHexagon", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default HelpHexagon; diff --git a/src/components/icons/help-octagon.tsx b/src/components/icons/help-octagon.tsx new file mode 100644 index 000000000..423d93c67 --- /dev/null +++ b/src/components/icons/help-octagon.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const HelpOctagon = createIcon({ + displayName: "HelpOctagon", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default HelpOctagon; diff --git a/src/components/icons/help-square.tsx b/src/components/icons/help-square.tsx new file mode 100644 index 000000000..dc40ef1f0 --- /dev/null +++ b/src/components/icons/help-square.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const HelpSquare = createIcon({ + displayName: "HelpSquare", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default HelpSquare; diff --git a/src/components/icons/hexagon-01.tsx b/src/components/icons/hexagon-01.tsx new file mode 100644 index 000000000..6f0691aa4 --- /dev/null +++ b/src/components/icons/hexagon-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Hexagon01 = createIcon({ + displayName: "Hexagon01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Hexagon01; diff --git a/src/components/icons/hexagon-02.tsx b/src/components/icons/hexagon-02.tsx new file mode 100644 index 000000000..0c7391b94 --- /dev/null +++ b/src/components/icons/hexagon-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Hexagon02 = createIcon({ + displayName: "Hexagon02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Hexagon02; diff --git a/src/components/icons/home-01.tsx b/src/components/icons/home-01.tsx new file mode 100644 index 000000000..a8027feee --- /dev/null +++ b/src/components/icons/home-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Home01 = createIcon({ + displayName: "Home01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Home01; diff --git a/src/components/icons/home-02.tsx b/src/components/icons/home-02.tsx new file mode 100644 index 000000000..2abc6c3ca --- /dev/null +++ b/src/components/icons/home-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Home02 = createIcon({ + displayName: "Home02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Home02; diff --git a/src/components/icons/home-03.tsx b/src/components/icons/home-03.tsx new file mode 100644 index 000000000..f1d36b63e --- /dev/null +++ b/src/components/icons/home-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Home03 = createIcon({ + displayName: "Home03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Home03; diff --git a/src/components/icons/home-04.tsx b/src/components/icons/home-04.tsx new file mode 100644 index 000000000..77a0ebcd5 --- /dev/null +++ b/src/components/icons/home-04.tsx @@ -0,0 +1,27 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Home04 = createIcon({ + displayName: "Home04", + viewBox: "0 0 24 24", + path: [ + , + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Home04; diff --git a/src/components/icons/home-05.tsx b/src/components/icons/home-05.tsx new file mode 100644 index 000000000..94a114273 --- /dev/null +++ b/src/components/icons/home-05.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Home05 = createIcon({ + displayName: "Home05", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Home05; diff --git a/src/components/icons/home-line.tsx b/src/components/icons/home-line.tsx new file mode 100644 index 000000000..47da31847 --- /dev/null +++ b/src/components/icons/home-line.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const HomeLine = createIcon({ + displayName: "HomeLine", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default HomeLine; diff --git a/src/components/icons/home-smile.tsx b/src/components/icons/home-smile.tsx new file mode 100644 index 000000000..e3edd8cf8 --- /dev/null +++ b/src/components/icons/home-smile.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const HomeSmile = createIcon({ + displayName: "HomeSmile", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default HomeSmile; diff --git a/src/components/icons/horizontal-bar-chart-01.tsx b/src/components/icons/horizontal-bar-chart-01.tsx new file mode 100644 index 000000000..582132efb --- /dev/null +++ b/src/components/icons/horizontal-bar-chart-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const HorizontalBarChart01 = createIcon({ + displayName: "HorizontalBarChart01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default HorizontalBarChart01; diff --git a/src/components/icons/horizontal-bar-chart-02.tsx b/src/components/icons/horizontal-bar-chart-02.tsx new file mode 100644 index 000000000..0a2f701fb --- /dev/null +++ b/src/components/icons/horizontal-bar-chart-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const HorizontalBarChart02 = createIcon({ + displayName: "HorizontalBarChart02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default HorizontalBarChart02; diff --git a/src/components/icons/horizontal-bar-chart-03.tsx b/src/components/icons/horizontal-bar-chart-03.tsx new file mode 100644 index 000000000..c044ac1bb --- /dev/null +++ b/src/components/icons/horizontal-bar-chart-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const HorizontalBarChart03 = createIcon({ + displayName: "HorizontalBarChart03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default HorizontalBarChart03; diff --git a/src/components/icons/hourglass-01.tsx b/src/components/icons/hourglass-01.tsx new file mode 100644 index 000000000..c932790ea --- /dev/null +++ b/src/components/icons/hourglass-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Hourglass01 = createIcon({ + displayName: "Hourglass01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Hourglass01; diff --git a/src/components/icons/hourglass-02.tsx b/src/components/icons/hourglass-02.tsx new file mode 100644 index 000000000..b33aba4c5 --- /dev/null +++ b/src/components/icons/hourglass-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Hourglass02 = createIcon({ + displayName: "Hourglass02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Hourglass02; diff --git a/src/components/icons/hourglass-03.tsx b/src/components/icons/hourglass-03.tsx new file mode 100644 index 000000000..860cd9eb5 --- /dev/null +++ b/src/components/icons/hourglass-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Hourglass03 = createIcon({ + displayName: "Hourglass03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Hourglass03; diff --git a/src/components/icons/hurricane-01.tsx b/src/components/icons/hurricane-01.tsx new file mode 100644 index 000000000..00f00c88b --- /dev/null +++ b/src/components/icons/hurricane-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Hurricane01 = createIcon({ + displayName: "Hurricane01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Hurricane01; diff --git a/src/components/icons/hurricane-02.tsx b/src/components/icons/hurricane-02.tsx new file mode 100644 index 000000000..aec739a8b --- /dev/null +++ b/src/components/icons/hurricane-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Hurricane02 = createIcon({ + displayName: "Hurricane02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Hurricane02; diff --git a/src/components/icons/hurricane-03.tsx b/src/components/icons/hurricane-03.tsx new file mode 100644 index 000000000..8ee20972a --- /dev/null +++ b/src/components/icons/hurricane-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Hurricane03 = createIcon({ + displayName: "Hurricane03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Hurricane03; diff --git a/src/components/icons/image-01.tsx b/src/components/icons/image-01.tsx new file mode 100644 index 000000000..14d6c1519 --- /dev/null +++ b/src/components/icons/image-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Image01 = createIcon({ + displayName: "Image01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Image01; diff --git a/src/components/icons/image-02.tsx b/src/components/icons/image-02.tsx new file mode 100644 index 000000000..43429369d --- /dev/null +++ b/src/components/icons/image-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Image02 = createIcon({ + displayName: "Image02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Image02; diff --git a/src/components/icons/image-03.tsx b/src/components/icons/image-03.tsx new file mode 100644 index 000000000..806e54856 --- /dev/null +++ b/src/components/icons/image-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Image03 = createIcon({ + displayName: "Image03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Image03; diff --git a/src/components/icons/image-04.tsx b/src/components/icons/image-04.tsx new file mode 100644 index 000000000..d6c78d83a --- /dev/null +++ b/src/components/icons/image-04.tsx @@ -0,0 +1,27 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Image04 = createIcon({ + displayName: "Image04", + viewBox: "0 0 24 24", + path: [ + , + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Image04; diff --git a/src/components/icons/image-05.tsx b/src/components/icons/image-05.tsx new file mode 100644 index 000000000..0f593a453 --- /dev/null +++ b/src/components/icons/image-05.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Image05 = createIcon({ + displayName: "Image05", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Image05; diff --git a/src/components/icons/image-check.tsx b/src/components/icons/image-check.tsx new file mode 100644 index 000000000..61ab6b6a8 --- /dev/null +++ b/src/components/icons/image-check.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ImageCheck = createIcon({ + displayName: "ImageCheck", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ImageCheck; diff --git a/src/components/icons/image-down.tsx b/src/components/icons/image-down.tsx new file mode 100644 index 000000000..1a7a9d45c --- /dev/null +++ b/src/components/icons/image-down.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ImageDown = createIcon({ + displayName: "ImageDown", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ImageDown; diff --git a/src/components/icons/image-indent-left.tsx b/src/components/icons/image-indent-left.tsx new file mode 100644 index 000000000..bc320d3c9 --- /dev/null +++ b/src/components/icons/image-indent-left.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ImageIndentLeft = createIcon({ + displayName: "ImageIndentLeft", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ImageIndentLeft; diff --git a/src/components/icons/image-indent-right.tsx b/src/components/icons/image-indent-right.tsx new file mode 100644 index 000000000..2285d8d83 --- /dev/null +++ b/src/components/icons/image-indent-right.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ImageIndentRight = createIcon({ + displayName: "ImageIndentRight", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ImageIndentRight; diff --git a/src/components/icons/image-left.tsx b/src/components/icons/image-left.tsx new file mode 100644 index 000000000..1eb21c401 --- /dev/null +++ b/src/components/icons/image-left.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ImageLeft = createIcon({ + displayName: "ImageLeft", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ImageLeft; diff --git a/src/components/icons/image-plus.tsx b/src/components/icons/image-plus.tsx new file mode 100644 index 000000000..0cb7db9d0 --- /dev/null +++ b/src/components/icons/image-plus.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ImagePlus = createIcon({ + displayName: "ImagePlus", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ImagePlus; diff --git a/src/components/icons/image-right.tsx b/src/components/icons/image-right.tsx new file mode 100644 index 000000000..aad8c0797 --- /dev/null +++ b/src/components/icons/image-right.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ImageRight = createIcon({ + displayName: "ImageRight", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ImageRight; diff --git a/src/components/icons/image-up.tsx b/src/components/icons/image-up.tsx new file mode 100644 index 000000000..17b0480e2 --- /dev/null +++ b/src/components/icons/image-up.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ImageUp = createIcon({ + displayName: "ImageUp", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ImageUp; diff --git a/src/components/icons/image-user-check.tsx b/src/components/icons/image-user-check.tsx new file mode 100644 index 000000000..8279701ef --- /dev/null +++ b/src/components/icons/image-user-check.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ImageUserCheck = createIcon({ + displayName: "ImageUserCheck", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ImageUserCheck; diff --git a/src/components/icons/image-user-down.tsx b/src/components/icons/image-user-down.tsx new file mode 100644 index 000000000..6589fa218 --- /dev/null +++ b/src/components/icons/image-user-down.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ImageUserDown = createIcon({ + displayName: "ImageUserDown", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ImageUserDown; diff --git a/src/components/icons/image-user-left.tsx b/src/components/icons/image-user-left.tsx new file mode 100644 index 000000000..b1d64a8f4 --- /dev/null +++ b/src/components/icons/image-user-left.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ImageUserLeft = createIcon({ + displayName: "ImageUserLeft", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ImageUserLeft; diff --git a/src/components/icons/image-user-plus.tsx b/src/components/icons/image-user-plus.tsx new file mode 100644 index 000000000..c266ab7d6 --- /dev/null +++ b/src/components/icons/image-user-plus.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ImageUserPlus = createIcon({ + displayName: "ImageUserPlus", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ImageUserPlus; diff --git a/src/components/icons/image-user-right.tsx b/src/components/icons/image-user-right.tsx new file mode 100644 index 000000000..6f3ee2560 --- /dev/null +++ b/src/components/icons/image-user-right.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ImageUserRight = createIcon({ + displayName: "ImageUserRight", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ImageUserRight; diff --git a/src/components/icons/image-user-up.tsx b/src/components/icons/image-user-up.tsx new file mode 100644 index 000000000..cf325eecb --- /dev/null +++ b/src/components/icons/image-user-up.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ImageUserUp = createIcon({ + displayName: "ImageUserUp", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ImageUserUp; diff --git a/src/components/icons/image-user-x.tsx b/src/components/icons/image-user-x.tsx new file mode 100644 index 000000000..630bc0fda --- /dev/null +++ b/src/components/icons/image-user-x.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ImageUserX = createIcon({ + displayName: "ImageUserX", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ImageUserX; diff --git a/src/components/icons/image-user.tsx b/src/components/icons/image-user.tsx new file mode 100644 index 000000000..a6b9f38ed --- /dev/null +++ b/src/components/icons/image-user.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ImageUser = createIcon({ + displayName: "ImageUser", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ImageUser; diff --git a/src/components/icons/image-x.tsx b/src/components/icons/image-x.tsx new file mode 100644 index 000000000..be4bd19b4 --- /dev/null +++ b/src/components/icons/image-x.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ImageX = createIcon({ + displayName: "ImageX", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ImageX; diff --git a/src/components/icons/inbox-01.tsx b/src/components/icons/inbox-01.tsx new file mode 100644 index 000000000..4f45c4efb --- /dev/null +++ b/src/components/icons/inbox-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Inbox01 = createIcon({ + displayName: "Inbox01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Inbox01; diff --git a/src/components/icons/inbox-02.tsx b/src/components/icons/inbox-02.tsx new file mode 100644 index 000000000..43a5115f9 --- /dev/null +++ b/src/components/icons/inbox-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Inbox02 = createIcon({ + displayName: "Inbox02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Inbox02; diff --git a/src/components/icons/infinity.tsx b/src/components/icons/infinity.tsx new file mode 100644 index 000000000..31c36418a --- /dev/null +++ b/src/components/icons/infinity.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Infinity = createIcon({ + displayName: "Infinity", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Infinity; diff --git a/src/components/icons/info-circle.tsx b/src/components/icons/info-circle.tsx new file mode 100644 index 000000000..424c8c5c7 --- /dev/null +++ b/src/components/icons/info-circle.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const InfoCircle = createIcon({ + displayName: "InfoCircle", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default InfoCircle; diff --git a/src/components/icons/info-hexagon.tsx b/src/components/icons/info-hexagon.tsx new file mode 100644 index 000000000..be7a24f31 --- /dev/null +++ b/src/components/icons/info-hexagon.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const InfoHexagon = createIcon({ + displayName: "InfoHexagon", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default InfoHexagon; diff --git a/src/components/icons/info-octagon.tsx b/src/components/icons/info-octagon.tsx new file mode 100644 index 000000000..3d1dd4dd8 --- /dev/null +++ b/src/components/icons/info-octagon.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const InfoOctagon = createIcon({ + displayName: "InfoOctagon", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default InfoOctagon; diff --git a/src/components/icons/info-square.tsx b/src/components/icons/info-square.tsx new file mode 100644 index 000000000..323149488 --- /dev/null +++ b/src/components/icons/info-square.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const InfoSquare = createIcon({ + displayName: "InfoSquare", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default InfoSquare; diff --git a/src/components/icons/intersect-circle.tsx b/src/components/icons/intersect-circle.tsx new file mode 100644 index 000000000..2e377e4a2 --- /dev/null +++ b/src/components/icons/intersect-circle.tsx @@ -0,0 +1,27 @@ +import { createIcon } from "@chakra-ui/icons"; + +const IntersectCircle = createIcon({ + displayName: "IntersectCircle", + viewBox: "0 0 24 24", + path: [ + , + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default IntersectCircle; diff --git a/src/components/icons/intersect-square.tsx b/src/components/icons/intersect-square.tsx new file mode 100644 index 000000000..772c3fa49 --- /dev/null +++ b/src/components/icons/intersect-square.tsx @@ -0,0 +1,27 @@ +import { createIcon } from "@chakra-ui/icons"; + +const IntersectSquare = createIcon({ + displayName: "IntersectSquare", + viewBox: "0 0 24 24", + path: [ + , + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default IntersectSquare; diff --git a/src/components/icons/italic-01.tsx b/src/components/icons/italic-01.tsx new file mode 100644 index 000000000..13dc03eac --- /dev/null +++ b/src/components/icons/italic-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Italic01 = createIcon({ + displayName: "Italic01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Italic01; diff --git a/src/components/icons/italic-02.tsx b/src/components/icons/italic-02.tsx new file mode 100644 index 000000000..cb3794e4e --- /dev/null +++ b/src/components/icons/italic-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Italic02 = createIcon({ + displayName: "Italic02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Italic02; diff --git a/src/components/icons/italic-square.tsx b/src/components/icons/italic-square.tsx new file mode 100644 index 000000000..34e27fef1 --- /dev/null +++ b/src/components/icons/italic-square.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ItalicSquare = createIcon({ + displayName: "ItalicSquare", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ItalicSquare; diff --git a/src/components/icons/key-01.tsx b/src/components/icons/key-01.tsx new file mode 100644 index 000000000..9f078a52b --- /dev/null +++ b/src/components/icons/key-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Key01 = createIcon({ + displayName: "Key01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Key01; diff --git a/src/components/icons/key-02.tsx b/src/components/icons/key-02.tsx new file mode 100644 index 000000000..dd14d4ae1 --- /dev/null +++ b/src/components/icons/key-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Key02 = createIcon({ + displayName: "Key02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Key02; diff --git a/src/components/icons/keyboard-01.tsx b/src/components/icons/keyboard-01.tsx new file mode 100644 index 000000000..0b42cb2a9 --- /dev/null +++ b/src/components/icons/keyboard-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Keyboard01 = createIcon({ + displayName: "Keyboard01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Keyboard01; diff --git a/src/components/icons/keyboard-02.tsx b/src/components/icons/keyboard-02.tsx new file mode 100644 index 000000000..265d16094 --- /dev/null +++ b/src/components/icons/keyboard-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Keyboard02 = createIcon({ + displayName: "Keyboard02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Keyboard02; diff --git a/src/components/icons/laptop-01.tsx b/src/components/icons/laptop-01.tsx new file mode 100644 index 000000000..e753b401f --- /dev/null +++ b/src/components/icons/laptop-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Laptop01 = createIcon({ + displayName: "Laptop01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Laptop01; diff --git a/src/components/icons/laptop-02.tsx b/src/components/icons/laptop-02.tsx new file mode 100644 index 000000000..0e567eef7 --- /dev/null +++ b/src/components/icons/laptop-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Laptop02 = createIcon({ + displayName: "Laptop02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Laptop02; diff --git a/src/components/icons/layer-single.tsx b/src/components/icons/layer-single.tsx new file mode 100644 index 000000000..c3aeb311a --- /dev/null +++ b/src/components/icons/layer-single.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const LayerSingle = createIcon({ + displayName: "LayerSingle", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default LayerSingle; diff --git a/src/components/icons/layers-three-01.tsx b/src/components/icons/layers-three-01.tsx new file mode 100644 index 000000000..c137826ca --- /dev/null +++ b/src/components/icons/layers-three-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const LayersThree01 = createIcon({ + displayName: "LayersThree01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default LayersThree01; diff --git a/src/components/icons/layers-three-02.tsx b/src/components/icons/layers-three-02.tsx new file mode 100644 index 000000000..2a71ee4a2 --- /dev/null +++ b/src/components/icons/layers-three-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const LayersThree02 = createIcon({ + displayName: "LayersThree02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default LayersThree02; diff --git a/src/components/icons/layers-two-01.tsx b/src/components/icons/layers-two-01.tsx new file mode 100644 index 000000000..67a075cf0 --- /dev/null +++ b/src/components/icons/layers-two-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const LayersTwo01 = createIcon({ + displayName: "LayersTwo01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default LayersTwo01; diff --git a/src/components/icons/layers-two-02.tsx b/src/components/icons/layers-two-02.tsx new file mode 100644 index 000000000..3d145fca2 --- /dev/null +++ b/src/components/icons/layers-two-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const LayersTwo02 = createIcon({ + displayName: "LayersTwo02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default LayersTwo02; diff --git a/src/components/icons/layout-alt-01.tsx b/src/components/icons/layout-alt-01.tsx new file mode 100644 index 000000000..a7f0e46fc --- /dev/null +++ b/src/components/icons/layout-alt-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const LayoutAlt01 = createIcon({ + displayName: "LayoutAlt01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default LayoutAlt01; diff --git a/src/components/icons/layout-alt-02.tsx b/src/components/icons/layout-alt-02.tsx new file mode 100644 index 000000000..a46816e49 --- /dev/null +++ b/src/components/icons/layout-alt-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const LayoutAlt02 = createIcon({ + displayName: "LayoutAlt02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default LayoutAlt02; diff --git a/src/components/icons/layout-alt-03.tsx b/src/components/icons/layout-alt-03.tsx new file mode 100644 index 000000000..4f58ac502 --- /dev/null +++ b/src/components/icons/layout-alt-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const LayoutAlt03 = createIcon({ + displayName: "LayoutAlt03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default LayoutAlt03; diff --git a/src/components/icons/layout-alt-04.tsx b/src/components/icons/layout-alt-04.tsx new file mode 100644 index 000000000..f5e5f5d5f --- /dev/null +++ b/src/components/icons/layout-alt-04.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const LayoutAlt04 = createIcon({ + displayName: "LayoutAlt04", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default LayoutAlt04; diff --git a/src/components/icons/layout-bottom.tsx b/src/components/icons/layout-bottom.tsx new file mode 100644 index 000000000..fc6fa18c4 --- /dev/null +++ b/src/components/icons/layout-bottom.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const LayoutBottom = createIcon({ + displayName: "LayoutBottom", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default LayoutBottom; diff --git a/src/components/icons/layout-grid-01.tsx b/src/components/icons/layout-grid-01.tsx new file mode 100644 index 000000000..69f910c31 --- /dev/null +++ b/src/components/icons/layout-grid-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const LayoutGrid01 = createIcon({ + displayName: "LayoutGrid01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default LayoutGrid01; diff --git a/src/components/icons/layout-grid-02.tsx b/src/components/icons/layout-grid-02.tsx new file mode 100644 index 000000000..7df197658 --- /dev/null +++ b/src/components/icons/layout-grid-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const LayoutGrid02 = createIcon({ + displayName: "LayoutGrid02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default LayoutGrid02; diff --git a/src/components/icons/layout-left.tsx b/src/components/icons/layout-left.tsx new file mode 100644 index 000000000..15205dca9 --- /dev/null +++ b/src/components/icons/layout-left.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const LayoutLeft = createIcon({ + displayName: "LayoutLeft", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default LayoutLeft; diff --git a/src/components/icons/layout-right.tsx b/src/components/icons/layout-right.tsx new file mode 100644 index 000000000..83c3f9c94 --- /dev/null +++ b/src/components/icons/layout-right.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const LayoutRight = createIcon({ + displayName: "LayoutRight", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default LayoutRight; diff --git a/src/components/icons/layout-top.tsx b/src/components/icons/layout-top.tsx new file mode 100644 index 000000000..c42895035 --- /dev/null +++ b/src/components/icons/layout-top.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const LayoutTop = createIcon({ + displayName: "LayoutTop", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default LayoutTop; diff --git a/src/components/icons/left-indent-01.tsx b/src/components/icons/left-indent-01.tsx new file mode 100644 index 000000000..49b535e98 --- /dev/null +++ b/src/components/icons/left-indent-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const LeftIndent01 = createIcon({ + displayName: "LeftIndent01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default LeftIndent01; diff --git a/src/components/icons/left-indent-02.tsx b/src/components/icons/left-indent-02.tsx new file mode 100644 index 000000000..cfd876306 --- /dev/null +++ b/src/components/icons/left-indent-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const LeftIndent02 = createIcon({ + displayName: "LeftIndent02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default LeftIndent02; diff --git a/src/components/icons/letter-spacing-01.tsx b/src/components/icons/letter-spacing-01.tsx new file mode 100644 index 000000000..2d7a9c2b0 --- /dev/null +++ b/src/components/icons/letter-spacing-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const LetterSpacing01 = createIcon({ + displayName: "LetterSpacing01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default LetterSpacing01; diff --git a/src/components/icons/letter-spacing-02.tsx b/src/components/icons/letter-spacing-02.tsx new file mode 100644 index 000000000..6fbd53500 --- /dev/null +++ b/src/components/icons/letter-spacing-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const LetterSpacing02 = createIcon({ + displayName: "LetterSpacing02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default LetterSpacing02; diff --git a/src/components/icons/life-buoy-01.tsx b/src/components/icons/life-buoy-01.tsx new file mode 100644 index 000000000..5538189e1 --- /dev/null +++ b/src/components/icons/life-buoy-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const LifeBuoy01 = createIcon({ + displayName: "LifeBuoy01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default LifeBuoy01; diff --git a/src/components/icons/life-buoy-02.tsx b/src/components/icons/life-buoy-02.tsx new file mode 100644 index 000000000..50667677f --- /dev/null +++ b/src/components/icons/life-buoy-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const LifeBuoy02 = createIcon({ + displayName: "LifeBuoy02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default LifeBuoy02; diff --git a/src/components/icons/lightbulb-01.tsx b/src/components/icons/lightbulb-01.tsx new file mode 100644 index 000000000..86c629ea2 --- /dev/null +++ b/src/components/icons/lightbulb-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Lightbulb01 = createIcon({ + displayName: "Lightbulb01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Lightbulb01; diff --git a/src/components/icons/lightbulb-02.tsx b/src/components/icons/lightbulb-02.tsx new file mode 100644 index 000000000..41b87751c --- /dev/null +++ b/src/components/icons/lightbulb-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Lightbulb02 = createIcon({ + displayName: "Lightbulb02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Lightbulb02; diff --git a/src/components/icons/lightbulb-03.tsx b/src/components/icons/lightbulb-03.tsx new file mode 100644 index 000000000..4f52aca76 --- /dev/null +++ b/src/components/icons/lightbulb-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Lightbulb03 = createIcon({ + displayName: "Lightbulb03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Lightbulb03; diff --git a/src/components/icons/lightbulb-04.tsx b/src/components/icons/lightbulb-04.tsx new file mode 100644 index 000000000..8b0cacc76 --- /dev/null +++ b/src/components/icons/lightbulb-04.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Lightbulb04 = createIcon({ + displayName: "Lightbulb04", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Lightbulb04; diff --git a/src/components/icons/lightbulb-05.tsx b/src/components/icons/lightbulb-05.tsx new file mode 100644 index 000000000..3dfc0ca9c --- /dev/null +++ b/src/components/icons/lightbulb-05.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Lightbulb05 = createIcon({ + displayName: "Lightbulb05", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Lightbulb05; diff --git a/src/components/icons/lightning-01.tsx b/src/components/icons/lightning-01.tsx new file mode 100644 index 000000000..442ead2a0 --- /dev/null +++ b/src/components/icons/lightning-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Lightning01 = createIcon({ + displayName: "Lightning01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Lightning01; diff --git a/src/components/icons/lightning-02.tsx b/src/components/icons/lightning-02.tsx new file mode 100644 index 000000000..38e60ab22 --- /dev/null +++ b/src/components/icons/lightning-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Lightning02 = createIcon({ + displayName: "Lightning02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Lightning02; diff --git a/src/components/icons/line-chart-down-01.tsx b/src/components/icons/line-chart-down-01.tsx new file mode 100644 index 000000000..6045570ca --- /dev/null +++ b/src/components/icons/line-chart-down-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const LineChartDown01 = createIcon({ + displayName: "LineChartDown01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default LineChartDown01; diff --git a/src/components/icons/line-chart-down-02.tsx b/src/components/icons/line-chart-down-02.tsx new file mode 100644 index 000000000..625bdd2e2 --- /dev/null +++ b/src/components/icons/line-chart-down-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const LineChartDown02 = createIcon({ + displayName: "LineChartDown02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default LineChartDown02; diff --git a/src/components/icons/line-chart-down-03.tsx b/src/components/icons/line-chart-down-03.tsx new file mode 100644 index 000000000..870e8b103 --- /dev/null +++ b/src/components/icons/line-chart-down-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const LineChartDown03 = createIcon({ + displayName: "LineChartDown03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default LineChartDown03; diff --git a/src/components/icons/line-chart-down-04.tsx b/src/components/icons/line-chart-down-04.tsx new file mode 100644 index 000000000..5128fea18 --- /dev/null +++ b/src/components/icons/line-chart-down-04.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const LineChartDown04 = createIcon({ + displayName: "LineChartDown04", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default LineChartDown04; diff --git a/src/components/icons/line-chart-down-05.tsx b/src/components/icons/line-chart-down-05.tsx new file mode 100644 index 000000000..c91531850 --- /dev/null +++ b/src/components/icons/line-chart-down-05.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const LineChartDown05 = createIcon({ + displayName: "LineChartDown05", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default LineChartDown05; diff --git a/src/components/icons/line-chart-up-01.tsx b/src/components/icons/line-chart-up-01.tsx new file mode 100644 index 000000000..f2fd84b22 --- /dev/null +++ b/src/components/icons/line-chart-up-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const LineChartUp01 = createIcon({ + displayName: "LineChartUp01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default LineChartUp01; diff --git a/src/components/icons/line-chart-up-02.tsx b/src/components/icons/line-chart-up-02.tsx new file mode 100644 index 000000000..69d6e78b8 --- /dev/null +++ b/src/components/icons/line-chart-up-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const LineChartUp02 = createIcon({ + displayName: "LineChartUp02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default LineChartUp02; diff --git a/src/components/icons/line-chart-up-03.tsx b/src/components/icons/line-chart-up-03.tsx new file mode 100644 index 000000000..422e298d1 --- /dev/null +++ b/src/components/icons/line-chart-up-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const LineChartUp03 = createIcon({ + displayName: "LineChartUp03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default LineChartUp03; diff --git a/src/components/icons/line-chart-up-04.tsx b/src/components/icons/line-chart-up-04.tsx new file mode 100644 index 000000000..97e9f05e0 --- /dev/null +++ b/src/components/icons/line-chart-up-04.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const LineChartUp04 = createIcon({ + displayName: "LineChartUp04", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default LineChartUp04; diff --git a/src/components/icons/line-chart-up-05.tsx b/src/components/icons/line-chart-up-05.tsx new file mode 100644 index 000000000..fe014dcf4 --- /dev/null +++ b/src/components/icons/line-chart-up-05.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const LineChartUp05 = createIcon({ + displayName: "LineChartUp05", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default LineChartUp05; diff --git a/src/components/icons/line-height.tsx b/src/components/icons/line-height.tsx new file mode 100644 index 000000000..122541e6d --- /dev/null +++ b/src/components/icons/line-height.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const LineHeight = createIcon({ + displayName: "LineHeight", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default LineHeight; diff --git a/src/components/icons/link-01.tsx b/src/components/icons/link-01.tsx new file mode 100644 index 000000000..8ea9f499e --- /dev/null +++ b/src/components/icons/link-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Link01 = createIcon({ + displayName: "Link01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Link01; diff --git a/src/components/icons/link-02.tsx b/src/components/icons/link-02.tsx new file mode 100644 index 000000000..f3915ec6a --- /dev/null +++ b/src/components/icons/link-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Link02 = createIcon({ + displayName: "Link02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Link02; diff --git a/src/components/icons/link-03.tsx b/src/components/icons/link-03.tsx new file mode 100644 index 000000000..55ddb2e33 --- /dev/null +++ b/src/components/icons/link-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Link03 = createIcon({ + displayName: "Link03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Link03; diff --git a/src/components/icons/link-04.tsx b/src/components/icons/link-04.tsx new file mode 100644 index 000000000..c9f6ea52e --- /dev/null +++ b/src/components/icons/link-04.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Link04 = createIcon({ + displayName: "Link04", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Link04; diff --git a/src/components/icons/link-05.tsx b/src/components/icons/link-05.tsx new file mode 100644 index 000000000..e9f38758c --- /dev/null +++ b/src/components/icons/link-05.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Link05 = createIcon({ + displayName: "Link05", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Link05; diff --git a/src/components/icons/link-broken-01.tsx b/src/components/icons/link-broken-01.tsx new file mode 100644 index 000000000..cc15420a7 --- /dev/null +++ b/src/components/icons/link-broken-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const LinkBroken01 = createIcon({ + displayName: "LinkBroken01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default LinkBroken01; diff --git a/src/components/icons/link-broken-02.tsx b/src/components/icons/link-broken-02.tsx new file mode 100644 index 000000000..3a3dcd807 --- /dev/null +++ b/src/components/icons/link-broken-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const LinkBroken02 = createIcon({ + displayName: "LinkBroken02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default LinkBroken02; diff --git a/src/components/icons/link-external-01.tsx b/src/components/icons/link-external-01.tsx new file mode 100644 index 000000000..f2d5ed1fb --- /dev/null +++ b/src/components/icons/link-external-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const LinkExternal01 = createIcon({ + displayName: "LinkExternal01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default LinkExternal01; diff --git a/src/components/icons/link-external-02.tsx b/src/components/icons/link-external-02.tsx new file mode 100644 index 000000000..5389ca1a0 --- /dev/null +++ b/src/components/icons/link-external-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const LinkExternal02 = createIcon({ + displayName: "LinkExternal02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default LinkExternal02; diff --git a/src/components/icons/list.tsx b/src/components/icons/list.tsx new file mode 100644 index 000000000..e64910ba2 --- /dev/null +++ b/src/components/icons/list.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const List = createIcon({ + displayName: "List", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default List; diff --git a/src/components/icons/loading-01.tsx b/src/components/icons/loading-01.tsx new file mode 100644 index 000000000..8bbf1ac4e --- /dev/null +++ b/src/components/icons/loading-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Loading01 = createIcon({ + displayName: "Loading01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Loading01; diff --git a/src/components/icons/loading-02.tsx b/src/components/icons/loading-02.tsx new file mode 100644 index 000000000..0b8016f38 --- /dev/null +++ b/src/components/icons/loading-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Loading02 = createIcon({ + displayName: "Loading02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Loading02; diff --git a/src/components/icons/loading-03.tsx b/src/components/icons/loading-03.tsx new file mode 100644 index 000000000..f597e501b --- /dev/null +++ b/src/components/icons/loading-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Loading03 = createIcon({ + displayName: "Loading03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Loading03; diff --git a/src/components/icons/lock-01.tsx b/src/components/icons/lock-01.tsx new file mode 100644 index 000000000..eff4f72e3 --- /dev/null +++ b/src/components/icons/lock-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Lock01 = createIcon({ + displayName: "Lock01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Lock01; diff --git a/src/components/icons/lock-02.tsx b/src/components/icons/lock-02.tsx new file mode 100644 index 000000000..9da5fc630 --- /dev/null +++ b/src/components/icons/lock-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Lock02 = createIcon({ + displayName: "Lock02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Lock02; diff --git a/src/components/icons/lock-03.tsx b/src/components/icons/lock-03.tsx new file mode 100644 index 000000000..2d6900725 --- /dev/null +++ b/src/components/icons/lock-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Lock03 = createIcon({ + displayName: "Lock03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Lock03; diff --git a/src/components/icons/lock-04.tsx b/src/components/icons/lock-04.tsx new file mode 100644 index 000000000..fa9365176 --- /dev/null +++ b/src/components/icons/lock-04.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Lock04 = createIcon({ + displayName: "Lock04", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Lock04; diff --git a/src/components/icons/lock-keyhole-circle.tsx b/src/components/icons/lock-keyhole-circle.tsx new file mode 100644 index 000000000..7470091e9 --- /dev/null +++ b/src/components/icons/lock-keyhole-circle.tsx @@ -0,0 +1,27 @@ +import { createIcon } from "@chakra-ui/icons"; + +const LockKeyholeCircle = createIcon({ + displayName: "LockKeyholeCircle", + viewBox: "0 0 24 24", + path: [ + , + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default LockKeyholeCircle; diff --git a/src/components/icons/lock-keyhole-square.tsx b/src/components/icons/lock-keyhole-square.tsx new file mode 100644 index 000000000..964aad66a --- /dev/null +++ b/src/components/icons/lock-keyhole-square.tsx @@ -0,0 +1,27 @@ +import { createIcon } from "@chakra-ui/icons"; + +const LockKeyholeSquare = createIcon({ + displayName: "LockKeyholeSquare", + viewBox: "0 0 24 24", + path: [ + , + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default LockKeyholeSquare; diff --git a/src/components/icons/lock-unlocked-01.tsx b/src/components/icons/lock-unlocked-01.tsx new file mode 100644 index 000000000..893efacc5 --- /dev/null +++ b/src/components/icons/lock-unlocked-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const LockUnlocked01 = createIcon({ + displayName: "LockUnlocked01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default LockUnlocked01; diff --git a/src/components/icons/lock-unlocked-02.tsx b/src/components/icons/lock-unlocked-02.tsx new file mode 100644 index 000000000..27ead12a8 --- /dev/null +++ b/src/components/icons/lock-unlocked-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const LockUnlocked02 = createIcon({ + displayName: "LockUnlocked02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default LockUnlocked02; diff --git a/src/components/icons/lock-unlocked-03.tsx b/src/components/icons/lock-unlocked-03.tsx new file mode 100644 index 000000000..6dab53112 --- /dev/null +++ b/src/components/icons/lock-unlocked-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const LockUnlocked03 = createIcon({ + displayName: "LockUnlocked03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default LockUnlocked03; diff --git a/src/components/icons/lock-unlocked-04.tsx b/src/components/icons/lock-unlocked-04.tsx new file mode 100644 index 000000000..ee8c6c3f5 --- /dev/null +++ b/src/components/icons/lock-unlocked-04.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const LockUnlocked04 = createIcon({ + displayName: "LockUnlocked04", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default LockUnlocked04; diff --git a/src/components/icons/log-in-01.tsx b/src/components/icons/log-in-01.tsx new file mode 100644 index 000000000..d4fbef21d --- /dev/null +++ b/src/components/icons/log-in-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const LogIn01 = createIcon({ + displayName: "LogIn01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default LogIn01; diff --git a/src/components/icons/log-in-02.tsx b/src/components/icons/log-in-02.tsx new file mode 100644 index 000000000..de9033ded --- /dev/null +++ b/src/components/icons/log-in-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const LogIn02 = createIcon({ + displayName: "LogIn02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default LogIn02; diff --git a/src/components/icons/log-in-03.tsx b/src/components/icons/log-in-03.tsx new file mode 100644 index 000000000..88168182e --- /dev/null +++ b/src/components/icons/log-in-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const LogIn03 = createIcon({ + displayName: "LogIn03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default LogIn03; diff --git a/src/components/icons/log-in-04.tsx b/src/components/icons/log-in-04.tsx new file mode 100644 index 000000000..481e9350d --- /dev/null +++ b/src/components/icons/log-in-04.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const LogIn04 = createIcon({ + displayName: "LogIn04", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default LogIn04; diff --git a/src/components/icons/log-out-01.tsx b/src/components/icons/log-out-01.tsx new file mode 100644 index 000000000..c59d0dad3 --- /dev/null +++ b/src/components/icons/log-out-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const LogOut01 = createIcon({ + displayName: "LogOut01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default LogOut01; diff --git a/src/components/icons/log-out-02.tsx b/src/components/icons/log-out-02.tsx new file mode 100644 index 000000000..c0fc0295a --- /dev/null +++ b/src/components/icons/log-out-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const LogOut02 = createIcon({ + displayName: "LogOut02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default LogOut02; diff --git a/src/components/icons/log-out-03.tsx b/src/components/icons/log-out-03.tsx new file mode 100644 index 000000000..66d264aa0 --- /dev/null +++ b/src/components/icons/log-out-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const LogOut03 = createIcon({ + displayName: "LogOut03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default LogOut03; diff --git a/src/components/icons/log-out-04.tsx b/src/components/icons/log-out-04.tsx new file mode 100644 index 000000000..cb4087c6d --- /dev/null +++ b/src/components/icons/log-out-04.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const LogOut04 = createIcon({ + displayName: "LogOut04", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default LogOut04; diff --git a/src/components/icons/luggage-01.tsx b/src/components/icons/luggage-01.tsx new file mode 100644 index 000000000..16e383c9b --- /dev/null +++ b/src/components/icons/luggage-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Luggage01 = createIcon({ + displayName: "Luggage01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Luggage01; diff --git a/src/components/icons/luggage-02.tsx b/src/components/icons/luggage-02.tsx new file mode 100644 index 000000000..8e1c5c3a8 --- /dev/null +++ b/src/components/icons/luggage-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Luggage02 = createIcon({ + displayName: "Luggage02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Luggage02; diff --git a/src/components/icons/luggage-03.tsx b/src/components/icons/luggage-03.tsx new file mode 100644 index 000000000..0a1bd0859 --- /dev/null +++ b/src/components/icons/luggage-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Luggage03 = createIcon({ + displayName: "Luggage03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Luggage03; diff --git a/src/components/icons/magic-wand-01.tsx b/src/components/icons/magic-wand-01.tsx new file mode 100644 index 000000000..325165674 --- /dev/null +++ b/src/components/icons/magic-wand-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const MagicWand01 = createIcon({ + displayName: "MagicWand01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default MagicWand01; diff --git a/src/components/icons/magic-wand-02.tsx b/src/components/icons/magic-wand-02.tsx new file mode 100644 index 000000000..f3901630d --- /dev/null +++ b/src/components/icons/magic-wand-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const MagicWand02 = createIcon({ + displayName: "MagicWand02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default MagicWand02; diff --git a/src/components/icons/mail-01.tsx b/src/components/icons/mail-01.tsx new file mode 100644 index 000000000..aa4db0964 --- /dev/null +++ b/src/components/icons/mail-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Mail01 = createIcon({ + displayName: "Mail01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Mail01; diff --git a/src/components/icons/mail-02.tsx b/src/components/icons/mail-02.tsx new file mode 100644 index 000000000..68f6b038e --- /dev/null +++ b/src/components/icons/mail-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Mail02 = createIcon({ + displayName: "Mail02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Mail02; diff --git a/src/components/icons/mail-03.tsx b/src/components/icons/mail-03.tsx new file mode 100644 index 000000000..52d7ea555 --- /dev/null +++ b/src/components/icons/mail-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Mail03 = createIcon({ + displayName: "Mail03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Mail03; diff --git a/src/components/icons/mail-04.tsx b/src/components/icons/mail-04.tsx new file mode 100644 index 000000000..c88d48a11 --- /dev/null +++ b/src/components/icons/mail-04.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Mail04 = createIcon({ + displayName: "Mail04", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Mail04; diff --git a/src/components/icons/mail-05.tsx b/src/components/icons/mail-05.tsx new file mode 100644 index 000000000..966622081 --- /dev/null +++ b/src/components/icons/mail-05.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Mail05 = createIcon({ + displayName: "Mail05", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Mail05; diff --git a/src/components/icons/map-01.tsx b/src/components/icons/map-01.tsx new file mode 100644 index 000000000..2523054e0 --- /dev/null +++ b/src/components/icons/map-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Map01 = createIcon({ + displayName: "Map01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Map01; diff --git a/src/components/icons/map-02.tsx b/src/components/icons/map-02.tsx new file mode 100644 index 000000000..ff95c1147 --- /dev/null +++ b/src/components/icons/map-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Map02 = createIcon({ + displayName: "Map02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Map02; diff --git a/src/components/icons/mark.tsx b/src/components/icons/mark.tsx new file mode 100644 index 000000000..6bd9bc6f2 --- /dev/null +++ b/src/components/icons/mark.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Mark = createIcon({ + displayName: "Mark", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Mark; diff --git a/src/components/icons/marker-pin-01.tsx b/src/components/icons/marker-pin-01.tsx new file mode 100644 index 000000000..ee668aa06 --- /dev/null +++ b/src/components/icons/marker-pin-01.tsx @@ -0,0 +1,27 @@ +import { createIcon } from "@chakra-ui/icons"; + +const MarkerPin01 = createIcon({ + displayName: "MarkerPin01", + viewBox: "0 0 24 24", + path: [ + , + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default MarkerPin01; diff --git a/src/components/icons/marker-pin-02.tsx b/src/components/icons/marker-pin-02.tsx new file mode 100644 index 000000000..efab6132d --- /dev/null +++ b/src/components/icons/marker-pin-02.tsx @@ -0,0 +1,27 @@ +import { createIcon } from "@chakra-ui/icons"; + +const MarkerPin02 = createIcon({ + displayName: "MarkerPin02", + viewBox: "0 0 24 24", + path: [ + , + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default MarkerPin02; diff --git a/src/components/icons/marker-pin-03.tsx b/src/components/icons/marker-pin-03.tsx new file mode 100644 index 000000000..631c75aff --- /dev/null +++ b/src/components/icons/marker-pin-03.tsx @@ -0,0 +1,27 @@ +import { createIcon } from "@chakra-ui/icons"; + +const MarkerPin03 = createIcon({ + displayName: "MarkerPin03", + viewBox: "0 0 24 24", + path: [ + , + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default MarkerPin03; diff --git a/src/components/icons/marker-pin-04.tsx b/src/components/icons/marker-pin-04.tsx new file mode 100644 index 000000000..65cda8b25 --- /dev/null +++ b/src/components/icons/marker-pin-04.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const MarkerPin04 = createIcon({ + displayName: "MarkerPin04", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default MarkerPin04; diff --git a/src/components/icons/marker-pin-05.tsx b/src/components/icons/marker-pin-05.tsx new file mode 100644 index 000000000..997cb4c21 --- /dev/null +++ b/src/components/icons/marker-pin-05.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const MarkerPin05 = createIcon({ + displayName: "MarkerPin05", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default MarkerPin05; diff --git a/src/components/icons/marker-pin-06.tsx b/src/components/icons/marker-pin-06.tsx new file mode 100644 index 000000000..f22d6a3b8 --- /dev/null +++ b/src/components/icons/marker-pin-06.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const MarkerPin06 = createIcon({ + displayName: "MarkerPin06", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default MarkerPin06; diff --git a/src/components/icons/maximize-01.tsx b/src/components/icons/maximize-01.tsx new file mode 100644 index 000000000..07af33de0 --- /dev/null +++ b/src/components/icons/maximize-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Maximize01 = createIcon({ + displayName: "Maximize01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Maximize01; diff --git a/src/components/icons/maximize-02.tsx b/src/components/icons/maximize-02.tsx new file mode 100644 index 000000000..dad4dcbfc --- /dev/null +++ b/src/components/icons/maximize-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Maximize02 = createIcon({ + displayName: "Maximize02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Maximize02; diff --git a/src/components/icons/medical-circle.tsx b/src/components/icons/medical-circle.tsx new file mode 100644 index 000000000..ed4d6cc50 --- /dev/null +++ b/src/components/icons/medical-circle.tsx @@ -0,0 +1,27 @@ +import { createIcon } from "@chakra-ui/icons"; + +const MedicalCircle = createIcon({ + displayName: "MedicalCircle", + viewBox: "0 0 24 24", + path: [ + , + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default MedicalCircle; diff --git a/src/components/icons/medical-cross.tsx b/src/components/icons/medical-cross.tsx new file mode 100644 index 000000000..87d8702af --- /dev/null +++ b/src/components/icons/medical-cross.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const MedicalCross = createIcon({ + displayName: "MedicalCross", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default MedicalCross; diff --git a/src/components/icons/medical-square.tsx b/src/components/icons/medical-square.tsx new file mode 100644 index 000000000..c1398bd28 --- /dev/null +++ b/src/components/icons/medical-square.tsx @@ -0,0 +1,27 @@ +import { createIcon } from "@chakra-ui/icons"; + +const MedicalSquare = createIcon({ + displayName: "MedicalSquare", + viewBox: "0 0 24 24", + path: [ + , + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default MedicalSquare; diff --git a/src/components/icons/menu-01.tsx b/src/components/icons/menu-01.tsx new file mode 100644 index 000000000..ec9aac9e5 --- /dev/null +++ b/src/components/icons/menu-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Menu01 = createIcon({ + displayName: "Menu01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Menu01; diff --git a/src/components/icons/menu-02.tsx b/src/components/icons/menu-02.tsx new file mode 100644 index 000000000..47a85028a --- /dev/null +++ b/src/components/icons/menu-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Menu02 = createIcon({ + displayName: "Menu02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Menu02; diff --git a/src/components/icons/menu-03.tsx b/src/components/icons/menu-03.tsx new file mode 100644 index 000000000..e4830dca3 --- /dev/null +++ b/src/components/icons/menu-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Menu03 = createIcon({ + displayName: "Menu03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Menu03; diff --git a/src/components/icons/menu-04.tsx b/src/components/icons/menu-04.tsx new file mode 100644 index 000000000..24dcfb621 --- /dev/null +++ b/src/components/icons/menu-04.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Menu04 = createIcon({ + displayName: "Menu04", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Menu04; diff --git a/src/components/icons/menu-05.tsx b/src/components/icons/menu-05.tsx new file mode 100644 index 000000000..440444db3 --- /dev/null +++ b/src/components/icons/menu-05.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Menu05 = createIcon({ + displayName: "Menu05", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Menu05; diff --git a/src/components/icons/message-alert-circle.tsx b/src/components/icons/message-alert-circle.tsx new file mode 100644 index 000000000..abfe566a4 --- /dev/null +++ b/src/components/icons/message-alert-circle.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const MessageAlertCircle = createIcon({ + displayName: "MessageAlertCircle", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default MessageAlertCircle; diff --git a/src/components/icons/message-alert-square.tsx b/src/components/icons/message-alert-square.tsx new file mode 100644 index 000000000..d2a22377d --- /dev/null +++ b/src/components/icons/message-alert-square.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const MessageAlertSquare = createIcon({ + displayName: "MessageAlertSquare", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default MessageAlertSquare; diff --git a/src/components/icons/message-chat-circle.tsx b/src/components/icons/message-chat-circle.tsx new file mode 100644 index 000000000..de003e9ef --- /dev/null +++ b/src/components/icons/message-chat-circle.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const MessageChatCircle = createIcon({ + displayName: "MessageChatCircle", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default MessageChatCircle; diff --git a/src/components/icons/message-chat-square.tsx b/src/components/icons/message-chat-square.tsx new file mode 100644 index 000000000..899227680 --- /dev/null +++ b/src/components/icons/message-chat-square.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const MessageChatSquare = createIcon({ + displayName: "MessageChatSquare", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default MessageChatSquare; diff --git a/src/components/icons/message-check-circle.tsx b/src/components/icons/message-check-circle.tsx new file mode 100644 index 000000000..c9e1b1b99 --- /dev/null +++ b/src/components/icons/message-check-circle.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const MessageCheckCircle = createIcon({ + displayName: "MessageCheckCircle", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default MessageCheckCircle; diff --git a/src/components/icons/message-check-square.tsx b/src/components/icons/message-check-square.tsx new file mode 100644 index 000000000..39732a0c0 --- /dev/null +++ b/src/components/icons/message-check-square.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const MessageCheckSquare = createIcon({ + displayName: "MessageCheckSquare", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default MessageCheckSquare; diff --git a/src/components/icons/message-circle-01.tsx b/src/components/icons/message-circle-01.tsx new file mode 100644 index 000000000..cbe6b03c5 --- /dev/null +++ b/src/components/icons/message-circle-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const MessageCircle01 = createIcon({ + displayName: "MessageCircle01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default MessageCircle01; diff --git a/src/components/icons/message-circle-02.tsx b/src/components/icons/message-circle-02.tsx new file mode 100644 index 000000000..9fe4a160c --- /dev/null +++ b/src/components/icons/message-circle-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const MessageCircle02 = createIcon({ + displayName: "MessageCircle02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default MessageCircle02; diff --git a/src/components/icons/message-dots-circle.tsx b/src/components/icons/message-dots-circle.tsx new file mode 100644 index 000000000..d733a1d63 --- /dev/null +++ b/src/components/icons/message-dots-circle.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const MessageDotsCircle = createIcon({ + displayName: "MessageDotsCircle", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default MessageDotsCircle; diff --git a/src/components/icons/message-dots-square.tsx b/src/components/icons/message-dots-square.tsx new file mode 100644 index 000000000..92b19bd8c --- /dev/null +++ b/src/components/icons/message-dots-square.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const MessageDotsSquare = createIcon({ + displayName: "MessageDotsSquare", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default MessageDotsSquare; diff --git a/src/components/icons/message-heart-circle.tsx b/src/components/icons/message-heart-circle.tsx new file mode 100644 index 000000000..3ac762341 --- /dev/null +++ b/src/components/icons/message-heart-circle.tsx @@ -0,0 +1,29 @@ +import { createIcon } from "@chakra-ui/icons"; + +const MessageHeartCircle = createIcon({ + displayName: "MessageHeartCircle", + viewBox: "0 0 24 24", + path: [ + , + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default MessageHeartCircle; diff --git a/src/components/icons/message-heart-square.tsx b/src/components/icons/message-heart-square.tsx new file mode 100644 index 000000000..5bfbbe3ec --- /dev/null +++ b/src/components/icons/message-heart-square.tsx @@ -0,0 +1,29 @@ +import { createIcon } from "@chakra-ui/icons"; + +const MessageHeartSquare = createIcon({ + displayName: "MessageHeartSquare", + viewBox: "0 0 24 24", + path: [ + , + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default MessageHeartSquare; diff --git a/src/components/icons/message-notification-circle.tsx b/src/components/icons/message-notification-circle.tsx new file mode 100644 index 000000000..a03301638 --- /dev/null +++ b/src/components/icons/message-notification-circle.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const MessageNotificationCircle = createIcon({ + displayName: "MessageNotificationCircle", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default MessageNotificationCircle; diff --git a/src/components/icons/message-notification-square.tsx b/src/components/icons/message-notification-square.tsx new file mode 100644 index 000000000..136b98346 --- /dev/null +++ b/src/components/icons/message-notification-square.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const MessageNotificationSquare = createIcon({ + displayName: "MessageNotificationSquare", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default MessageNotificationSquare; diff --git a/src/components/icons/message-plus-circle.tsx b/src/components/icons/message-plus-circle.tsx new file mode 100644 index 000000000..726f6c11d --- /dev/null +++ b/src/components/icons/message-plus-circle.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const MessagePlusCircle = createIcon({ + displayName: "MessagePlusCircle", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default MessagePlusCircle; diff --git a/src/components/icons/message-plus-square.tsx b/src/components/icons/message-plus-square.tsx new file mode 100644 index 000000000..afbd8208b --- /dev/null +++ b/src/components/icons/message-plus-square.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const MessagePlusSquare = createIcon({ + displayName: "MessagePlusSquare", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default MessagePlusSquare; diff --git a/src/components/icons/message-question-circle.tsx b/src/components/icons/message-question-circle.tsx new file mode 100644 index 000000000..0936ce882 --- /dev/null +++ b/src/components/icons/message-question-circle.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const MessageQuestionCircle = createIcon({ + displayName: "MessageQuestionCircle", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default MessageQuestionCircle; diff --git a/src/components/icons/message-question-square.tsx b/src/components/icons/message-question-square.tsx new file mode 100644 index 000000000..e0ec13b77 --- /dev/null +++ b/src/components/icons/message-question-square.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const MessageQuestionSquare = createIcon({ + displayName: "MessageQuestionSquare", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default MessageQuestionSquare; diff --git a/src/components/icons/message-smile-circle.tsx b/src/components/icons/message-smile-circle.tsx new file mode 100644 index 000000000..a0b067a6b --- /dev/null +++ b/src/components/icons/message-smile-circle.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const MessageSmileCircle = createIcon({ + displayName: "MessageSmileCircle", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default MessageSmileCircle; diff --git a/src/components/icons/message-smile-square.tsx b/src/components/icons/message-smile-square.tsx new file mode 100644 index 000000000..e35b9aa67 --- /dev/null +++ b/src/components/icons/message-smile-square.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const MessageSmileSquare = createIcon({ + displayName: "MessageSmileSquare", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default MessageSmileSquare; diff --git a/src/components/icons/message-square-01.tsx b/src/components/icons/message-square-01.tsx new file mode 100644 index 000000000..f98bc5b9c --- /dev/null +++ b/src/components/icons/message-square-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const MessageSquare01 = createIcon({ + displayName: "MessageSquare01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default MessageSquare01; diff --git a/src/components/icons/message-square-02.tsx b/src/components/icons/message-square-02.tsx new file mode 100644 index 000000000..6c65b11e2 --- /dev/null +++ b/src/components/icons/message-square-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const MessageSquare02 = createIcon({ + displayName: "MessageSquare02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default MessageSquare02; diff --git a/src/components/icons/message-text-circle-01.tsx b/src/components/icons/message-text-circle-01.tsx new file mode 100644 index 000000000..f559c6d11 --- /dev/null +++ b/src/components/icons/message-text-circle-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const MessageTextCircle01 = createIcon({ + displayName: "MessageTextCircle01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default MessageTextCircle01; diff --git a/src/components/icons/message-text-circle-02.tsx b/src/components/icons/message-text-circle-02.tsx new file mode 100644 index 000000000..9d80da31a --- /dev/null +++ b/src/components/icons/message-text-circle-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const MessageTextCircle02 = createIcon({ + displayName: "MessageTextCircle02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default MessageTextCircle02; diff --git a/src/components/icons/message-text-square-01.tsx b/src/components/icons/message-text-square-01.tsx new file mode 100644 index 000000000..f21da4117 --- /dev/null +++ b/src/components/icons/message-text-square-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const MessageTextSquare01 = createIcon({ + displayName: "MessageTextSquare01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default MessageTextSquare01; diff --git a/src/components/icons/message-text-square-02.tsx b/src/components/icons/message-text-square-02.tsx new file mode 100644 index 000000000..62f256b91 --- /dev/null +++ b/src/components/icons/message-text-square-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const MessageTextSquare02 = createIcon({ + displayName: "MessageTextSquare02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default MessageTextSquare02; diff --git a/src/components/icons/message-x-circle.tsx b/src/components/icons/message-x-circle.tsx new file mode 100644 index 000000000..1b554fec0 --- /dev/null +++ b/src/components/icons/message-x-circle.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const MessageXCircle = createIcon({ + displayName: "MessageXCircle", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default MessageXCircle; diff --git a/src/components/icons/message-x-square.tsx b/src/components/icons/message-x-square.tsx new file mode 100644 index 000000000..4eb76fbb5 --- /dev/null +++ b/src/components/icons/message-x-square.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const MessageXSquare = createIcon({ + displayName: "MessageXSquare", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default MessageXSquare; diff --git a/src/components/icons/microphone-01.tsx b/src/components/icons/microphone-01.tsx new file mode 100644 index 000000000..3bb09a7bd --- /dev/null +++ b/src/components/icons/microphone-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Microphone01 = createIcon({ + displayName: "Microphone01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Microphone01; diff --git a/src/components/icons/microphone-02.tsx b/src/components/icons/microphone-02.tsx new file mode 100644 index 000000000..f2846abd9 --- /dev/null +++ b/src/components/icons/microphone-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Microphone02 = createIcon({ + displayName: "Microphone02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Microphone02; diff --git a/src/components/icons/microphone-off-01.tsx b/src/components/icons/microphone-off-01.tsx new file mode 100644 index 000000000..c78ce49d2 --- /dev/null +++ b/src/components/icons/microphone-off-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const MicrophoneOff01 = createIcon({ + displayName: "MicrophoneOff01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default MicrophoneOff01; diff --git a/src/components/icons/microphone-off-02.tsx b/src/components/icons/microphone-off-02.tsx new file mode 100644 index 000000000..b04f31aa0 --- /dev/null +++ b/src/components/icons/microphone-off-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const MicrophoneOff02 = createIcon({ + displayName: "MicrophoneOff02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default MicrophoneOff02; diff --git a/src/components/icons/microscope.tsx b/src/components/icons/microscope.tsx new file mode 100644 index 000000000..0780036ab --- /dev/null +++ b/src/components/icons/microscope.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Microscope = createIcon({ + displayName: "Microscope", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Microscope; diff --git a/src/components/icons/minimize-01.tsx b/src/components/icons/minimize-01.tsx new file mode 100644 index 000000000..6d0fcc40b --- /dev/null +++ b/src/components/icons/minimize-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Minimize01 = createIcon({ + displayName: "Minimize01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Minimize01; diff --git a/src/components/icons/minimize-02.tsx b/src/components/icons/minimize-02.tsx new file mode 100644 index 000000000..31e73bc76 --- /dev/null +++ b/src/components/icons/minimize-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Minimize02 = createIcon({ + displayName: "Minimize02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Minimize02; diff --git a/src/components/icons/minus-circle.tsx b/src/components/icons/minus-circle.tsx new file mode 100644 index 000000000..52599d048 --- /dev/null +++ b/src/components/icons/minus-circle.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const MinusCircle = createIcon({ + displayName: "MinusCircle", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default MinusCircle; diff --git a/src/components/icons/minus-square.tsx b/src/components/icons/minus-square.tsx new file mode 100644 index 000000000..b167bdbe3 --- /dev/null +++ b/src/components/icons/minus-square.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const MinusSquare = createIcon({ + displayName: "MinusSquare", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default MinusSquare; diff --git a/src/components/icons/minus.tsx b/src/components/icons/minus.tsx new file mode 100644 index 000000000..1d9902f2b --- /dev/null +++ b/src/components/icons/minus.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Minus = createIcon({ + displayName: "Minus", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Minus; diff --git a/src/components/icons/modem-01.tsx b/src/components/icons/modem-01.tsx new file mode 100644 index 000000000..20d3aebe0 --- /dev/null +++ b/src/components/icons/modem-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Modem01 = createIcon({ + displayName: "Modem01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Modem01; diff --git a/src/components/icons/modem-02.tsx b/src/components/icons/modem-02.tsx new file mode 100644 index 000000000..2164eafa9 --- /dev/null +++ b/src/components/icons/modem-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Modem02 = createIcon({ + displayName: "Modem02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Modem02; diff --git a/src/components/icons/monitor-01.tsx b/src/components/icons/monitor-01.tsx new file mode 100644 index 000000000..8fbf6c572 --- /dev/null +++ b/src/components/icons/monitor-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Monitor01 = createIcon({ + displayName: "Monitor01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Monitor01; diff --git a/src/components/icons/monitor-02.tsx b/src/components/icons/monitor-02.tsx new file mode 100644 index 000000000..096b92601 --- /dev/null +++ b/src/components/icons/monitor-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Monitor02 = createIcon({ + displayName: "Monitor02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Monitor02; diff --git a/src/components/icons/monitor-03.tsx b/src/components/icons/monitor-03.tsx new file mode 100644 index 000000000..8bace9a69 --- /dev/null +++ b/src/components/icons/monitor-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Monitor03 = createIcon({ + displayName: "Monitor03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Monitor03; diff --git a/src/components/icons/monitor-04.tsx b/src/components/icons/monitor-04.tsx new file mode 100644 index 000000000..389d0154f --- /dev/null +++ b/src/components/icons/monitor-04.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Monitor04 = createIcon({ + displayName: "Monitor04", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Monitor04; diff --git a/src/components/icons/monitor-05.tsx b/src/components/icons/monitor-05.tsx new file mode 100644 index 000000000..4c7102e28 --- /dev/null +++ b/src/components/icons/monitor-05.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Monitor05 = createIcon({ + displayName: "Monitor05", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Monitor05; diff --git a/src/components/icons/moon-01.tsx b/src/components/icons/moon-01.tsx new file mode 100644 index 000000000..7ed01ea9f --- /dev/null +++ b/src/components/icons/moon-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Moon01 = createIcon({ + displayName: "Moon01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Moon01; diff --git a/src/components/icons/moon-02.tsx b/src/components/icons/moon-02.tsx new file mode 100644 index 000000000..89289d8ff --- /dev/null +++ b/src/components/icons/moon-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Moon02 = createIcon({ + displayName: "Moon02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Moon02; diff --git a/src/components/icons/moon-eclipse.tsx b/src/components/icons/moon-eclipse.tsx new file mode 100644 index 000000000..a9eb0cbf8 --- /dev/null +++ b/src/components/icons/moon-eclipse.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const MoonEclipse = createIcon({ + displayName: "MoonEclipse", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default MoonEclipse; diff --git a/src/components/icons/moon-star.tsx b/src/components/icons/moon-star.tsx new file mode 100644 index 000000000..976c39c3c --- /dev/null +++ b/src/components/icons/moon-star.tsx @@ -0,0 +1,27 @@ +import { createIcon } from "@chakra-ui/icons"; + +const MoonStar = createIcon({ + displayName: "MoonStar", + viewBox: "0 0 24 24", + path: [ + , + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default MoonStar; diff --git a/src/components/icons/mouse.tsx b/src/components/icons/mouse.tsx new file mode 100644 index 000000000..433986e02 --- /dev/null +++ b/src/components/icons/mouse.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Mouse = createIcon({ + displayName: "Mouse", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Mouse; diff --git a/src/components/icons/move.tsx b/src/components/icons/move.tsx new file mode 100644 index 000000000..4fc6c7bed --- /dev/null +++ b/src/components/icons/move.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Move = createIcon({ + displayName: "Move", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Move; diff --git a/src/components/icons/music-note-01.tsx b/src/components/icons/music-note-01.tsx new file mode 100644 index 000000000..575560aea --- /dev/null +++ b/src/components/icons/music-note-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const MusicNote01 = createIcon({ + displayName: "MusicNote01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default MusicNote01; diff --git a/src/components/icons/music-note-02.tsx b/src/components/icons/music-note-02.tsx new file mode 100644 index 000000000..d46152a32 --- /dev/null +++ b/src/components/icons/music-note-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const MusicNote02 = createIcon({ + displayName: "MusicNote02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default MusicNote02; diff --git a/src/components/icons/music-note-plus.tsx b/src/components/icons/music-note-plus.tsx new file mode 100644 index 000000000..59456bf14 --- /dev/null +++ b/src/components/icons/music-note-plus.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const MusicNotePlus = createIcon({ + displayName: "MusicNotePlus", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default MusicNotePlus; diff --git a/src/components/icons/navigation-pointer-01.tsx b/src/components/icons/navigation-pointer-01.tsx new file mode 100644 index 000000000..21cdce5f0 --- /dev/null +++ b/src/components/icons/navigation-pointer-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const NavigationPointer01 = createIcon({ + displayName: "NavigationPointer01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default NavigationPointer01; diff --git a/src/components/icons/navigation-pointer-02.tsx b/src/components/icons/navigation-pointer-02.tsx new file mode 100644 index 000000000..d6fa30517 --- /dev/null +++ b/src/components/icons/navigation-pointer-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const NavigationPointer02 = createIcon({ + displayName: "NavigationPointer02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default NavigationPointer02; diff --git a/src/components/icons/navigation-pointer-off-01.tsx b/src/components/icons/navigation-pointer-off-01.tsx new file mode 100644 index 000000000..5afe8f69a --- /dev/null +++ b/src/components/icons/navigation-pointer-off-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const NavigationPointerOff01 = createIcon({ + displayName: "NavigationPointerOff01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default NavigationPointerOff01; diff --git a/src/components/icons/navigation-pointer-off-02.tsx b/src/components/icons/navigation-pointer-off-02.tsx new file mode 100644 index 000000000..f99f82db4 --- /dev/null +++ b/src/components/icons/navigation-pointer-off-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const NavigationPointerOff02 = createIcon({ + displayName: "NavigationPointerOff02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default NavigationPointerOff02; diff --git a/src/components/icons/notification-box.tsx b/src/components/icons/notification-box.tsx new file mode 100644 index 000000000..431a39366 --- /dev/null +++ b/src/components/icons/notification-box.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const NotificationBox = createIcon({ + displayName: "NotificationBox", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default NotificationBox; diff --git a/src/components/icons/notification-message.tsx b/src/components/icons/notification-message.tsx new file mode 100644 index 000000000..589f18700 --- /dev/null +++ b/src/components/icons/notification-message.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const NotificationMessage = createIcon({ + displayName: "NotificationMessage", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default NotificationMessage; diff --git a/src/components/icons/notification-text.tsx b/src/components/icons/notification-text.tsx new file mode 100644 index 000000000..96e4a3f7e --- /dev/null +++ b/src/components/icons/notification-text.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const NotificationText = createIcon({ + displayName: "NotificationText", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default NotificationText; diff --git a/src/components/icons/octagon.tsx b/src/components/icons/octagon.tsx new file mode 100644 index 000000000..70f80ff85 --- /dev/null +++ b/src/components/icons/octagon.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Octagon = createIcon({ + displayName: "Octagon", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Octagon; diff --git a/src/components/icons/package-check.tsx b/src/components/icons/package-check.tsx new file mode 100644 index 000000000..02257cc9e --- /dev/null +++ b/src/components/icons/package-check.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const PackageCheck = createIcon({ + displayName: "PackageCheck", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default PackageCheck; diff --git a/src/components/icons/package-minus.tsx b/src/components/icons/package-minus.tsx new file mode 100644 index 000000000..836a8e934 --- /dev/null +++ b/src/components/icons/package-minus.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const PackageMinus = createIcon({ + displayName: "PackageMinus", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default PackageMinus; diff --git a/src/components/icons/package-plus.tsx b/src/components/icons/package-plus.tsx new file mode 100644 index 000000000..e2c79bff7 --- /dev/null +++ b/src/components/icons/package-plus.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const PackagePlus = createIcon({ + displayName: "PackagePlus", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default PackagePlus; diff --git a/src/components/icons/package-search.tsx b/src/components/icons/package-search.tsx new file mode 100644 index 000000000..5fa278626 --- /dev/null +++ b/src/components/icons/package-search.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const PackageSearch = createIcon({ + displayName: "PackageSearch", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default PackageSearch; diff --git a/src/components/icons/package-x.tsx b/src/components/icons/package-x.tsx new file mode 100644 index 000000000..1ac51db23 --- /dev/null +++ b/src/components/icons/package-x.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const PackageX = createIcon({ + displayName: "PackageX", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default PackageX; diff --git a/src/components/icons/package.tsx b/src/components/icons/package.tsx new file mode 100644 index 000000000..a6c2f28ae --- /dev/null +++ b/src/components/icons/package.tsx @@ -0,0 +1,27 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Package = createIcon({ + displayName: "Package", + viewBox: "0 0 24 24", + path: [ + , + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Package; diff --git a/src/components/icons/paint-pour.tsx b/src/components/icons/paint-pour.tsx new file mode 100644 index 000000000..a1b596597 --- /dev/null +++ b/src/components/icons/paint-pour.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const PaintPour = createIcon({ + displayName: "PaintPour", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default PaintPour; diff --git a/src/components/icons/paint.tsx b/src/components/icons/paint.tsx new file mode 100644 index 000000000..71077decc --- /dev/null +++ b/src/components/icons/paint.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Paint = createIcon({ + displayName: "Paint", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Paint; diff --git a/src/components/icons/palette.tsx b/src/components/icons/palette.tsx new file mode 100644 index 000000000..ca334585e --- /dev/null +++ b/src/components/icons/palette.tsx @@ -0,0 +1,43 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Palette = createIcon({ + displayName: "Palette", + viewBox: "0 0 24 24", + path: [ + , + , + , + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Palette; diff --git a/src/components/icons/paperclip.tsx b/src/components/icons/paperclip.tsx new file mode 100644 index 000000000..e34a9271b --- /dev/null +++ b/src/components/icons/paperclip.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Paperclip = createIcon({ + displayName: "Paperclip", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Paperclip; diff --git a/src/components/icons/paragraph-spacing.tsx b/src/components/icons/paragraph-spacing.tsx new file mode 100644 index 000000000..f1ba99f88 --- /dev/null +++ b/src/components/icons/paragraph-spacing.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ParagraphSpacing = createIcon({ + displayName: "ParagraphSpacing", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ParagraphSpacing; diff --git a/src/components/icons/paragraph-wrap.tsx b/src/components/icons/paragraph-wrap.tsx new file mode 100644 index 000000000..cfdba9f49 --- /dev/null +++ b/src/components/icons/paragraph-wrap.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ParagraphWrap = createIcon({ + displayName: "ParagraphWrap", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ParagraphWrap; diff --git a/src/components/icons/passcode-lock.tsx b/src/components/icons/passcode-lock.tsx new file mode 100644 index 000000000..a9db9353a --- /dev/null +++ b/src/components/icons/passcode-lock.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const PasscodeLock = createIcon({ + displayName: "PasscodeLock", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default PasscodeLock; diff --git a/src/components/icons/passcode.tsx b/src/components/icons/passcode.tsx new file mode 100644 index 000000000..7bbcf8f97 --- /dev/null +++ b/src/components/icons/passcode.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Passcode = createIcon({ + displayName: "Passcode", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Passcode; diff --git a/src/components/icons/passport.tsx b/src/components/icons/passport.tsx new file mode 100644 index 000000000..f4122af06 --- /dev/null +++ b/src/components/icons/passport.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Passport = createIcon({ + displayName: "Passport", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Passport; diff --git a/src/components/icons/pause-circle.tsx b/src/components/icons/pause-circle.tsx new file mode 100644 index 000000000..14d9a2f20 --- /dev/null +++ b/src/components/icons/pause-circle.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const PauseCircle = createIcon({ + displayName: "PauseCircle", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default PauseCircle; diff --git a/src/components/icons/pause-square.tsx b/src/components/icons/pause-square.tsx new file mode 100644 index 000000000..a6bd3ce63 --- /dev/null +++ b/src/components/icons/pause-square.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const PauseSquare = createIcon({ + displayName: "PauseSquare", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default PauseSquare; diff --git a/src/components/icons/pen-tool-01.tsx b/src/components/icons/pen-tool-01.tsx new file mode 100644 index 000000000..8718f2592 --- /dev/null +++ b/src/components/icons/pen-tool-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const PenTool01 = createIcon({ + displayName: "PenTool01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default PenTool01; diff --git a/src/components/icons/pen-tool-02.tsx b/src/components/icons/pen-tool-02.tsx new file mode 100644 index 000000000..176632d94 --- /dev/null +++ b/src/components/icons/pen-tool-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const PenTool02 = createIcon({ + displayName: "PenTool02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default PenTool02; diff --git a/src/components/icons/pen-tool-minus.tsx b/src/components/icons/pen-tool-minus.tsx new file mode 100644 index 000000000..9b06360b7 --- /dev/null +++ b/src/components/icons/pen-tool-minus.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const PenToolMinus = createIcon({ + displayName: "PenToolMinus", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default PenToolMinus; diff --git a/src/components/icons/pen-tool-plus.tsx b/src/components/icons/pen-tool-plus.tsx new file mode 100644 index 000000000..39526d7b2 --- /dev/null +++ b/src/components/icons/pen-tool-plus.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const PenToolPlus = createIcon({ + displayName: "PenToolPlus", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default PenToolPlus; diff --git a/src/components/icons/pencil-01.tsx b/src/components/icons/pencil-01.tsx new file mode 100644 index 000000000..b333c92ee --- /dev/null +++ b/src/components/icons/pencil-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Pencil01 = createIcon({ + displayName: "Pencil01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Pencil01; diff --git a/src/components/icons/pencil-02.tsx b/src/components/icons/pencil-02.tsx new file mode 100644 index 000000000..53033a005 --- /dev/null +++ b/src/components/icons/pencil-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Pencil02 = createIcon({ + displayName: "Pencil02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Pencil02; diff --git a/src/components/icons/pencil-line.tsx b/src/components/icons/pencil-line.tsx new file mode 100644 index 000000000..c24dc57c5 --- /dev/null +++ b/src/components/icons/pencil-line.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const PencilLine = createIcon({ + displayName: "PencilLine", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default PencilLine; diff --git a/src/components/icons/pentagon.tsx b/src/components/icons/pentagon.tsx new file mode 100644 index 000000000..c90296677 --- /dev/null +++ b/src/components/icons/pentagon.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Pentagon = createIcon({ + displayName: "Pentagon", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Pentagon; diff --git a/src/components/icons/percent-01.tsx b/src/components/icons/percent-01.tsx new file mode 100644 index 000000000..977fe7685 --- /dev/null +++ b/src/components/icons/percent-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Percent01 = createIcon({ + displayName: "Percent01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Percent01; diff --git a/src/components/icons/percent-02.tsx b/src/components/icons/percent-02.tsx new file mode 100644 index 000000000..7126616c1 --- /dev/null +++ b/src/components/icons/percent-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Percent02 = createIcon({ + displayName: "Percent02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Percent02; diff --git a/src/components/icons/percent-03.tsx b/src/components/icons/percent-03.tsx new file mode 100644 index 000000000..2bddfa2e0 --- /dev/null +++ b/src/components/icons/percent-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Percent03 = createIcon({ + displayName: "Percent03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Percent03; diff --git a/src/components/icons/perspective-01.tsx b/src/components/icons/perspective-01.tsx new file mode 100644 index 000000000..82cfb12b8 --- /dev/null +++ b/src/components/icons/perspective-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Perspective01 = createIcon({ + displayName: "Perspective01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Perspective01; diff --git a/src/components/icons/perspective-02.tsx b/src/components/icons/perspective-02.tsx new file mode 100644 index 000000000..380367d70 --- /dev/null +++ b/src/components/icons/perspective-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Perspective02 = createIcon({ + displayName: "Perspective02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Perspective02; diff --git a/src/components/icons/phone-01.tsx b/src/components/icons/phone-01.tsx new file mode 100644 index 000000000..dc316ac5f --- /dev/null +++ b/src/components/icons/phone-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Phone01 = createIcon({ + displayName: "Phone01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Phone01; diff --git a/src/components/icons/phone-02.tsx b/src/components/icons/phone-02.tsx new file mode 100644 index 000000000..fcf51c231 --- /dev/null +++ b/src/components/icons/phone-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Phone02 = createIcon({ + displayName: "Phone02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Phone02; diff --git a/src/components/icons/phone-call-01.tsx b/src/components/icons/phone-call-01.tsx new file mode 100644 index 000000000..0cf302e3f --- /dev/null +++ b/src/components/icons/phone-call-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const PhoneCall01 = createIcon({ + displayName: "PhoneCall01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default PhoneCall01; diff --git a/src/components/icons/phone-call-02.tsx b/src/components/icons/phone-call-02.tsx new file mode 100644 index 000000000..2b82f91de --- /dev/null +++ b/src/components/icons/phone-call-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const PhoneCall02 = createIcon({ + displayName: "PhoneCall02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default PhoneCall02; diff --git a/src/components/icons/phone-hang-up.tsx b/src/components/icons/phone-hang-up.tsx new file mode 100644 index 000000000..8594a6148 --- /dev/null +++ b/src/components/icons/phone-hang-up.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const PhoneHangUp = createIcon({ + displayName: "PhoneHangUp", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default PhoneHangUp; diff --git a/src/components/icons/phone-incoming-01.tsx b/src/components/icons/phone-incoming-01.tsx new file mode 100644 index 000000000..42e6d02a8 --- /dev/null +++ b/src/components/icons/phone-incoming-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const PhoneIncoming01 = createIcon({ + displayName: "PhoneIncoming01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default PhoneIncoming01; diff --git a/src/components/icons/phone-incoming-02.tsx b/src/components/icons/phone-incoming-02.tsx new file mode 100644 index 000000000..273672991 --- /dev/null +++ b/src/components/icons/phone-incoming-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const PhoneIncoming02 = createIcon({ + displayName: "PhoneIncoming02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default PhoneIncoming02; diff --git a/src/components/icons/phone-outgoing-01.tsx b/src/components/icons/phone-outgoing-01.tsx new file mode 100644 index 000000000..643f92713 --- /dev/null +++ b/src/components/icons/phone-outgoing-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const PhoneOutgoing01 = createIcon({ + displayName: "PhoneOutgoing01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default PhoneOutgoing01; diff --git a/src/components/icons/phone-outgoing-02.tsx b/src/components/icons/phone-outgoing-02.tsx new file mode 100644 index 000000000..d8c757767 --- /dev/null +++ b/src/components/icons/phone-outgoing-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const PhoneOutgoing02 = createIcon({ + displayName: "PhoneOutgoing02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default PhoneOutgoing02; diff --git a/src/components/icons/phone-pause.tsx b/src/components/icons/phone-pause.tsx new file mode 100644 index 000000000..cff9288ae --- /dev/null +++ b/src/components/icons/phone-pause.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const PhonePause = createIcon({ + displayName: "PhonePause", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default PhonePause; diff --git a/src/components/icons/phone-plus.tsx b/src/components/icons/phone-plus.tsx new file mode 100644 index 000000000..18dbaccec --- /dev/null +++ b/src/components/icons/phone-plus.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const PhonePlus = createIcon({ + displayName: "PhonePlus", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default PhonePlus; diff --git a/src/components/icons/phone-x.tsx b/src/components/icons/phone-x.tsx new file mode 100644 index 000000000..2be6b1b1a --- /dev/null +++ b/src/components/icons/phone-x.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const PhoneX = createIcon({ + displayName: "PhoneX", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default PhoneX; diff --git a/src/components/icons/phone.tsx b/src/components/icons/phone.tsx new file mode 100644 index 000000000..afc67d54d --- /dev/null +++ b/src/components/icons/phone.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Phone = createIcon({ + displayName: "Phone", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Phone; diff --git a/src/components/icons/pie-chart-01.tsx b/src/components/icons/pie-chart-01.tsx new file mode 100644 index 000000000..9a7ad9881 --- /dev/null +++ b/src/components/icons/pie-chart-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const PieChart01 = createIcon({ + displayName: "PieChart01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default PieChart01; diff --git a/src/components/icons/pie-chart-02.tsx b/src/components/icons/pie-chart-02.tsx new file mode 100644 index 000000000..0e11314f5 --- /dev/null +++ b/src/components/icons/pie-chart-02.tsx @@ -0,0 +1,27 @@ +import { createIcon } from "@chakra-ui/icons"; + +const PieChart02 = createIcon({ + displayName: "PieChart02", + viewBox: "0 0 24 24", + path: [ + , + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default PieChart02; diff --git a/src/components/icons/pie-chart-03.tsx b/src/components/icons/pie-chart-03.tsx new file mode 100644 index 000000000..9e2d090ae --- /dev/null +++ b/src/components/icons/pie-chart-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const PieChart03 = createIcon({ + displayName: "PieChart03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default PieChart03; diff --git a/src/components/icons/pie-chart-04.tsx b/src/components/icons/pie-chart-04.tsx new file mode 100644 index 000000000..8cdce987b --- /dev/null +++ b/src/components/icons/pie-chart-04.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const PieChart04 = createIcon({ + displayName: "PieChart04", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default PieChart04; diff --git a/src/components/icons/piggy-bank-01.tsx b/src/components/icons/piggy-bank-01.tsx new file mode 100644 index 000000000..4bcb0a0e7 --- /dev/null +++ b/src/components/icons/piggy-bank-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const PiggyBank01 = createIcon({ + displayName: "PiggyBank01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default PiggyBank01; diff --git a/src/components/icons/piggy-bank-02.tsx b/src/components/icons/piggy-bank-02.tsx new file mode 100644 index 000000000..9a0a047a3 --- /dev/null +++ b/src/components/icons/piggy-bank-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const PiggyBank02 = createIcon({ + displayName: "PiggyBank02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default PiggyBank02; diff --git a/src/components/icons/pilcrow-01.tsx b/src/components/icons/pilcrow-01.tsx new file mode 100644 index 000000000..7d9bd71fc --- /dev/null +++ b/src/components/icons/pilcrow-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Pilcrow01 = createIcon({ + displayName: "Pilcrow01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Pilcrow01; diff --git a/src/components/icons/pilcrow-02.tsx b/src/components/icons/pilcrow-02.tsx new file mode 100644 index 000000000..49259038e --- /dev/null +++ b/src/components/icons/pilcrow-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Pilcrow02 = createIcon({ + displayName: "Pilcrow02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Pilcrow02; diff --git a/src/components/icons/pilcrow-square.tsx b/src/components/icons/pilcrow-square.tsx new file mode 100644 index 000000000..b6e0d1574 --- /dev/null +++ b/src/components/icons/pilcrow-square.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const PilcrowSquare = createIcon({ + displayName: "PilcrowSquare", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default PilcrowSquare; diff --git a/src/components/icons/pin-01.tsx b/src/components/icons/pin-01.tsx new file mode 100644 index 000000000..8ce072272 --- /dev/null +++ b/src/components/icons/pin-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Pin01 = createIcon({ + displayName: "Pin01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Pin01; diff --git a/src/components/icons/pin-02.tsx b/src/components/icons/pin-02.tsx new file mode 100644 index 000000000..aba1f0765 --- /dev/null +++ b/src/components/icons/pin-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Pin02 = createIcon({ + displayName: "Pin02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Pin02; diff --git a/src/components/icons/placeholder.tsx b/src/components/icons/placeholder.tsx new file mode 100644 index 000000000..837208769 --- /dev/null +++ b/src/components/icons/placeholder.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Placeholder = createIcon({ + displayName: "Placeholder", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Placeholder; diff --git a/src/components/icons/plane.tsx b/src/components/icons/plane.tsx new file mode 100644 index 000000000..a2b1e3d66 --- /dev/null +++ b/src/components/icons/plane.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Plane = createIcon({ + displayName: "Plane", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Plane; diff --git a/src/components/icons/play-circle.tsx b/src/components/icons/play-circle.tsx new file mode 100644 index 000000000..808a8896f --- /dev/null +++ b/src/components/icons/play-circle.tsx @@ -0,0 +1,27 @@ +import { createIcon } from "@chakra-ui/icons"; + +const PlayCircle = createIcon({ + displayName: "PlayCircle", + viewBox: "0 0 24 24", + path: [ + , + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default PlayCircle; diff --git a/src/components/icons/play-square.tsx b/src/components/icons/play-square.tsx new file mode 100644 index 000000000..4f7cab1e4 --- /dev/null +++ b/src/components/icons/play-square.tsx @@ -0,0 +1,27 @@ +import { createIcon } from "@chakra-ui/icons"; + +const PlaySquare = createIcon({ + displayName: "PlaySquare", + viewBox: "0 0 24 24", + path: [ + , + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default PlaySquare; diff --git a/src/components/icons/play.tsx b/src/components/icons/play.tsx new file mode 100644 index 000000000..f4404895d --- /dev/null +++ b/src/components/icons/play.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Play = createIcon({ + displayName: "Play", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Play; diff --git a/src/components/icons/plus-circle.tsx b/src/components/icons/plus-circle.tsx new file mode 100644 index 000000000..e374792c7 --- /dev/null +++ b/src/components/icons/plus-circle.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const PlusCircle = createIcon({ + displayName: "PlusCircle", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default PlusCircle; diff --git a/src/components/icons/plus-square.tsx b/src/components/icons/plus-square.tsx new file mode 100644 index 000000000..1c3b10f2d --- /dev/null +++ b/src/components/icons/plus-square.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const PlusSquare = createIcon({ + displayName: "PlusSquare", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default PlusSquare; diff --git a/src/components/icons/plus.tsx b/src/components/icons/plus.tsx new file mode 100644 index 000000000..fbdeba8ad --- /dev/null +++ b/src/components/icons/plus.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Plus = createIcon({ + displayName: "Plus", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Plus; diff --git a/src/components/icons/podcast.tsx b/src/components/icons/podcast.tsx new file mode 100644 index 000000000..cc15cbab6 --- /dev/null +++ b/src/components/icons/podcast.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Podcast = createIcon({ + displayName: "Podcast", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Podcast; diff --git a/src/components/icons/power-01.tsx b/src/components/icons/power-01.tsx new file mode 100644 index 000000000..e043397b0 --- /dev/null +++ b/src/components/icons/power-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Power01 = createIcon({ + displayName: "Power01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Power01; diff --git a/src/components/icons/power-02.tsx b/src/components/icons/power-02.tsx new file mode 100644 index 000000000..fa15d6871 --- /dev/null +++ b/src/components/icons/power-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Power02 = createIcon({ + displayName: "Power02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Power02; diff --git a/src/components/icons/power-03.tsx b/src/components/icons/power-03.tsx new file mode 100644 index 000000000..09048e27f --- /dev/null +++ b/src/components/icons/power-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Power03 = createIcon({ + displayName: "Power03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Power03; diff --git a/src/components/icons/presentation-chart-01.tsx b/src/components/icons/presentation-chart-01.tsx new file mode 100644 index 000000000..1d9ddb528 --- /dev/null +++ b/src/components/icons/presentation-chart-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const PresentationChart01 = createIcon({ + displayName: "PresentationChart01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default PresentationChart01; diff --git a/src/components/icons/presentation-chart-02.tsx b/src/components/icons/presentation-chart-02.tsx new file mode 100644 index 000000000..c94edb434 --- /dev/null +++ b/src/components/icons/presentation-chart-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const PresentationChart02 = createIcon({ + displayName: "PresentationChart02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default PresentationChart02; diff --git a/src/components/icons/presentation-chart-03.tsx b/src/components/icons/presentation-chart-03.tsx new file mode 100644 index 000000000..db1b8dc34 --- /dev/null +++ b/src/components/icons/presentation-chart-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const PresentationChart03 = createIcon({ + displayName: "PresentationChart03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default PresentationChart03; diff --git a/src/components/icons/printer.tsx b/src/components/icons/printer.tsx new file mode 100644 index 000000000..7cc3f44f5 --- /dev/null +++ b/src/components/icons/printer.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Printer = createIcon({ + displayName: "Printer", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Printer; diff --git a/src/components/icons/puzzle-piece-01.tsx b/src/components/icons/puzzle-piece-01.tsx new file mode 100644 index 000000000..d97cdfd77 --- /dev/null +++ b/src/components/icons/puzzle-piece-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const PuzzlePiece01 = createIcon({ + displayName: "PuzzlePiece01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default PuzzlePiece01; diff --git a/src/components/icons/puzzle-piece-02.tsx b/src/components/icons/puzzle-piece-02.tsx new file mode 100644 index 000000000..5621807d3 --- /dev/null +++ b/src/components/icons/puzzle-piece-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const PuzzlePiece02 = createIcon({ + displayName: "PuzzlePiece02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default PuzzlePiece02; diff --git a/src/components/icons/qr-code-01.tsx b/src/components/icons/qr-code-01.tsx new file mode 100644 index 000000000..07cbd3724 --- /dev/null +++ b/src/components/icons/qr-code-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const QrCode01 = createIcon({ + displayName: "QrCode01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default QrCode01; diff --git a/src/components/icons/qr-code-02.tsx b/src/components/icons/qr-code-02.tsx new file mode 100644 index 000000000..79fcf36cd --- /dev/null +++ b/src/components/icons/qr-code-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const QrCode02 = createIcon({ + displayName: "QrCode02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default QrCode02; diff --git a/src/components/icons/receipt-check.tsx b/src/components/icons/receipt-check.tsx new file mode 100644 index 000000000..da1859f0c --- /dev/null +++ b/src/components/icons/receipt-check.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ReceiptCheck = createIcon({ + displayName: "ReceiptCheck", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ReceiptCheck; diff --git a/src/components/icons/receipt.tsx b/src/components/icons/receipt.tsx new file mode 100644 index 000000000..0f115d21a --- /dev/null +++ b/src/components/icons/receipt.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Receipt = createIcon({ + displayName: "Receipt", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Receipt; diff --git a/src/components/icons/recording-01.tsx b/src/components/icons/recording-01.tsx new file mode 100644 index 000000000..a12072c39 --- /dev/null +++ b/src/components/icons/recording-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Recording01 = createIcon({ + displayName: "Recording01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Recording01; diff --git a/src/components/icons/recording-02.tsx b/src/components/icons/recording-02.tsx new file mode 100644 index 000000000..3be5924e6 --- /dev/null +++ b/src/components/icons/recording-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Recording02 = createIcon({ + displayName: "Recording02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Recording02; diff --git a/src/components/icons/recording-03.tsx b/src/components/icons/recording-03.tsx new file mode 100644 index 000000000..974dad2c7 --- /dev/null +++ b/src/components/icons/recording-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Recording03 = createIcon({ + displayName: "Recording03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Recording03; diff --git a/src/components/icons/reflect-01.tsx b/src/components/icons/reflect-01.tsx new file mode 100644 index 000000000..bc8be0315 --- /dev/null +++ b/src/components/icons/reflect-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Reflect01 = createIcon({ + displayName: "Reflect01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Reflect01; diff --git a/src/components/icons/reflect-02.tsx b/src/components/icons/reflect-02.tsx new file mode 100644 index 000000000..a166a4f84 --- /dev/null +++ b/src/components/icons/reflect-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Reflect02 = createIcon({ + displayName: "Reflect02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Reflect02; diff --git a/src/components/icons/refresh-ccw-01.tsx b/src/components/icons/refresh-ccw-01.tsx new file mode 100644 index 000000000..0cf760de6 --- /dev/null +++ b/src/components/icons/refresh-ccw-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const RefreshCcw01 = createIcon({ + displayName: "RefreshCcw01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default RefreshCcw01; diff --git a/src/components/icons/refresh-ccw-02.tsx b/src/components/icons/refresh-ccw-02.tsx new file mode 100644 index 000000000..ff32ebe92 --- /dev/null +++ b/src/components/icons/refresh-ccw-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const RefreshCcw02 = createIcon({ + displayName: "RefreshCcw02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default RefreshCcw02; diff --git a/src/components/icons/refresh-ccw-03.tsx b/src/components/icons/refresh-ccw-03.tsx new file mode 100644 index 000000000..0df84742f --- /dev/null +++ b/src/components/icons/refresh-ccw-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const RefreshCcw03 = createIcon({ + displayName: "RefreshCcw03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default RefreshCcw03; diff --git a/src/components/icons/refresh-ccw-04.tsx b/src/components/icons/refresh-ccw-04.tsx new file mode 100644 index 000000000..14df5499a --- /dev/null +++ b/src/components/icons/refresh-ccw-04.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const RefreshCcw04 = createIcon({ + displayName: "RefreshCcw04", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default RefreshCcw04; diff --git a/src/components/icons/refresh-ccw-05.tsx b/src/components/icons/refresh-ccw-05.tsx new file mode 100644 index 000000000..d7a5ee101 --- /dev/null +++ b/src/components/icons/refresh-ccw-05.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const RefreshCcw05 = createIcon({ + displayName: "RefreshCcw05", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default RefreshCcw05; diff --git a/src/components/icons/refresh-cw-01.tsx b/src/components/icons/refresh-cw-01.tsx new file mode 100644 index 000000000..4ea317b11 --- /dev/null +++ b/src/components/icons/refresh-cw-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const RefreshCw01 = createIcon({ + displayName: "RefreshCw01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default RefreshCw01; diff --git a/src/components/icons/refresh-cw-02.tsx b/src/components/icons/refresh-cw-02.tsx new file mode 100644 index 000000000..236c45bd4 --- /dev/null +++ b/src/components/icons/refresh-cw-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const RefreshCw02 = createIcon({ + displayName: "RefreshCw02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default RefreshCw02; diff --git a/src/components/icons/refresh-cw-03.tsx b/src/components/icons/refresh-cw-03.tsx new file mode 100644 index 000000000..e7ce3ba8e --- /dev/null +++ b/src/components/icons/refresh-cw-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const RefreshCw03 = createIcon({ + displayName: "RefreshCw03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default RefreshCw03; diff --git a/src/components/icons/refresh-cw-04.tsx b/src/components/icons/refresh-cw-04.tsx new file mode 100644 index 000000000..0c13fb388 --- /dev/null +++ b/src/components/icons/refresh-cw-04.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const RefreshCw04 = createIcon({ + displayName: "RefreshCw04", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default RefreshCw04; diff --git a/src/components/icons/refresh-cw-05.tsx b/src/components/icons/refresh-cw-05.tsx new file mode 100644 index 000000000..5c9a236d7 --- /dev/null +++ b/src/components/icons/refresh-cw-05.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const RefreshCw05 = createIcon({ + displayName: "RefreshCw05", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default RefreshCw05; diff --git a/src/components/icons/repeat-01.tsx b/src/components/icons/repeat-01.tsx new file mode 100644 index 000000000..3f0540e27 --- /dev/null +++ b/src/components/icons/repeat-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Repeat01 = createIcon({ + displayName: "Repeat01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Repeat01; diff --git a/src/components/icons/repeat-02.tsx b/src/components/icons/repeat-02.tsx new file mode 100644 index 000000000..b018c836b --- /dev/null +++ b/src/components/icons/repeat-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Repeat02 = createIcon({ + displayName: "Repeat02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Repeat02; diff --git a/src/components/icons/repeat-03.tsx b/src/components/icons/repeat-03.tsx new file mode 100644 index 000000000..b60756188 --- /dev/null +++ b/src/components/icons/repeat-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Repeat03 = createIcon({ + displayName: "Repeat03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Repeat03; diff --git a/src/components/icons/repeat-04.tsx b/src/components/icons/repeat-04.tsx new file mode 100644 index 000000000..4962a9578 --- /dev/null +++ b/src/components/icons/repeat-04.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Repeat04 = createIcon({ + displayName: "Repeat04", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Repeat04; diff --git a/src/components/icons/reverse-left.tsx b/src/components/icons/reverse-left.tsx new file mode 100644 index 000000000..461c92f27 --- /dev/null +++ b/src/components/icons/reverse-left.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ReverseLeft = createIcon({ + displayName: "ReverseLeft", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ReverseLeft; diff --git a/src/components/icons/reverse-right.tsx b/src/components/icons/reverse-right.tsx new file mode 100644 index 000000000..fc49d3fc6 --- /dev/null +++ b/src/components/icons/reverse-right.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ReverseRight = createIcon({ + displayName: "ReverseRight", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ReverseRight; diff --git a/src/components/icons/right-indent-01.tsx b/src/components/icons/right-indent-01.tsx new file mode 100644 index 000000000..355172b24 --- /dev/null +++ b/src/components/icons/right-indent-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const RightIndent01 = createIcon({ + displayName: "RightIndent01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default RightIndent01; diff --git a/src/components/icons/right-indent-02.tsx b/src/components/icons/right-indent-02.tsx new file mode 100644 index 000000000..fb6d7ad55 --- /dev/null +++ b/src/components/icons/right-indent-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const RightIndent02 = createIcon({ + displayName: "RightIndent02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default RightIndent02; diff --git a/src/components/icons/rocket-01.tsx b/src/components/icons/rocket-01.tsx new file mode 100644 index 000000000..4dc7e8575 --- /dev/null +++ b/src/components/icons/rocket-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Rocket01 = createIcon({ + displayName: "Rocket01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Rocket01; diff --git a/src/components/icons/rocket-02.tsx b/src/components/icons/rocket-02.tsx new file mode 100644 index 000000000..91d45bbdc --- /dev/null +++ b/src/components/icons/rocket-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Rocket02 = createIcon({ + displayName: "Rocket02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Rocket02; diff --git a/src/components/icons/roller-brush.tsx b/src/components/icons/roller-brush.tsx new file mode 100644 index 000000000..59533da65 --- /dev/null +++ b/src/components/icons/roller-brush.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const RollerBrush = createIcon({ + displayName: "RollerBrush", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default RollerBrush; diff --git a/src/components/icons/route.tsx b/src/components/icons/route.tsx new file mode 100644 index 000000000..5ca5f1b69 --- /dev/null +++ b/src/components/icons/route.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Route = createIcon({ + displayName: "Route", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Route; diff --git a/src/components/icons/rows-01.tsx b/src/components/icons/rows-01.tsx new file mode 100644 index 000000000..0102e4bc0 --- /dev/null +++ b/src/components/icons/rows-01.tsx @@ -0,0 +1,27 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Rows01 = createIcon({ + displayName: "Rows01", + viewBox: "0 0 24 24", + path: [ + , + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Rows01; diff --git a/src/components/icons/rows-02.tsx b/src/components/icons/rows-02.tsx new file mode 100644 index 000000000..6d7bad6cb --- /dev/null +++ b/src/components/icons/rows-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Rows02 = createIcon({ + displayName: "Rows02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Rows02; diff --git a/src/components/icons/rows-03.tsx b/src/components/icons/rows-03.tsx new file mode 100644 index 000000000..5da12cf10 --- /dev/null +++ b/src/components/icons/rows-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Rows03 = createIcon({ + displayName: "Rows03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Rows03; diff --git a/src/components/icons/rss-01.tsx b/src/components/icons/rss-01.tsx new file mode 100644 index 000000000..b7911e3f6 --- /dev/null +++ b/src/components/icons/rss-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Rss01 = createIcon({ + displayName: "Rss01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Rss01; diff --git a/src/components/icons/rss-02.tsx b/src/components/icons/rss-02.tsx new file mode 100644 index 000000000..8914f0d45 --- /dev/null +++ b/src/components/icons/rss-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Rss02 = createIcon({ + displayName: "Rss02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Rss02; diff --git a/src/components/icons/ruler.tsx b/src/components/icons/ruler.tsx new file mode 100644 index 000000000..7c01493a5 --- /dev/null +++ b/src/components/icons/ruler.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Ruler = createIcon({ + displayName: "Ruler", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Ruler; diff --git a/src/components/icons/safe.tsx b/src/components/icons/safe.tsx new file mode 100644 index 000000000..9c9c4f133 --- /dev/null +++ b/src/components/icons/safe.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Safe = createIcon({ + displayName: "Safe", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Safe; diff --git a/src/components/icons/sale-01.tsx b/src/components/icons/sale-01.tsx new file mode 100644 index 000000000..828a517ae --- /dev/null +++ b/src/components/icons/sale-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Sale01 = createIcon({ + displayName: "Sale01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Sale01; diff --git a/src/components/icons/sale-02.tsx b/src/components/icons/sale-02.tsx new file mode 100644 index 000000000..2e34c1efb --- /dev/null +++ b/src/components/icons/sale-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Sale02 = createIcon({ + displayName: "Sale02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Sale02; diff --git a/src/components/icons/sale-03.tsx b/src/components/icons/sale-03.tsx new file mode 100644 index 000000000..b4f959689 --- /dev/null +++ b/src/components/icons/sale-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Sale03 = createIcon({ + displayName: "Sale03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Sale03; diff --git a/src/components/icons/sale-04.tsx b/src/components/icons/sale-04.tsx new file mode 100644 index 000000000..6c76b94cc --- /dev/null +++ b/src/components/icons/sale-04.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Sale04 = createIcon({ + displayName: "Sale04", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Sale04; diff --git a/src/components/icons/save-01.tsx b/src/components/icons/save-01.tsx new file mode 100644 index 000000000..9ed661d8e --- /dev/null +++ b/src/components/icons/save-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Save01 = createIcon({ + displayName: "Save01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Save01; diff --git a/src/components/icons/save-02.tsx b/src/components/icons/save-02.tsx new file mode 100644 index 000000000..e615dcf1b --- /dev/null +++ b/src/components/icons/save-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Save02 = createIcon({ + displayName: "Save02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Save02; diff --git a/src/components/icons/save-03.tsx b/src/components/icons/save-03.tsx new file mode 100644 index 000000000..1ba71eb46 --- /dev/null +++ b/src/components/icons/save-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Save03 = createIcon({ + displayName: "Save03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Save03; diff --git a/src/components/icons/scale-01.tsx b/src/components/icons/scale-01.tsx new file mode 100644 index 000000000..40612018e --- /dev/null +++ b/src/components/icons/scale-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Scale01 = createIcon({ + displayName: "Scale01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Scale01; diff --git a/src/components/icons/scale-02.tsx b/src/components/icons/scale-02.tsx new file mode 100644 index 000000000..10bddc2d7 --- /dev/null +++ b/src/components/icons/scale-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Scale02 = createIcon({ + displayName: "Scale02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Scale02; diff --git a/src/components/icons/scale-03.tsx b/src/components/icons/scale-03.tsx new file mode 100644 index 000000000..8e984aa1a --- /dev/null +++ b/src/components/icons/scale-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Scale03 = createIcon({ + displayName: "Scale03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Scale03; diff --git a/src/components/icons/scales-01.tsx b/src/components/icons/scales-01.tsx new file mode 100644 index 000000000..05168af3f --- /dev/null +++ b/src/components/icons/scales-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Scales01 = createIcon({ + displayName: "Scales01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Scales01; diff --git a/src/components/icons/scales-02.tsx b/src/components/icons/scales-02.tsx new file mode 100644 index 000000000..800c84811 --- /dev/null +++ b/src/components/icons/scales-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Scales02 = createIcon({ + displayName: "Scales02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Scales02; diff --git a/src/components/icons/scan.tsx b/src/components/icons/scan.tsx new file mode 100644 index 000000000..d04d73411 --- /dev/null +++ b/src/components/icons/scan.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Scan = createIcon({ + displayName: "Scan", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Scan; diff --git a/src/components/icons/scissors-01.tsx b/src/components/icons/scissors-01.tsx new file mode 100644 index 000000000..c09336ec5 --- /dev/null +++ b/src/components/icons/scissors-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Scissors01 = createIcon({ + displayName: "Scissors01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Scissors01; diff --git a/src/components/icons/scissors-02.tsx b/src/components/icons/scissors-02.tsx new file mode 100644 index 000000000..fa52ec86d --- /dev/null +++ b/src/components/icons/scissors-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Scissors02 = createIcon({ + displayName: "Scissors02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Scissors02; diff --git a/src/components/icons/scissors-cut-01.tsx b/src/components/icons/scissors-cut-01.tsx new file mode 100644 index 000000000..6f2ba9644 --- /dev/null +++ b/src/components/icons/scissors-cut-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ScissorsCut01 = createIcon({ + displayName: "ScissorsCut01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ScissorsCut01; diff --git a/src/components/icons/scissors-cut-02.tsx b/src/components/icons/scissors-cut-02.tsx new file mode 100644 index 000000000..c7b3dd8f7 --- /dev/null +++ b/src/components/icons/scissors-cut-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ScissorsCut02 = createIcon({ + displayName: "ScissorsCut02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ScissorsCut02; diff --git a/src/components/icons/search-lg.tsx b/src/components/icons/search-lg.tsx new file mode 100644 index 000000000..312674b0f --- /dev/null +++ b/src/components/icons/search-lg.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const SearchLg = createIcon({ + displayName: "SearchLg", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default SearchLg; diff --git a/src/components/icons/search-md.tsx b/src/components/icons/search-md.tsx new file mode 100644 index 000000000..8f87c1d60 --- /dev/null +++ b/src/components/icons/search-md.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const SearchMd = createIcon({ + displayName: "SearchMd", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default SearchMd; diff --git a/src/components/icons/search-refraction.tsx b/src/components/icons/search-refraction.tsx new file mode 100644 index 000000000..b400a6031 --- /dev/null +++ b/src/components/icons/search-refraction.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const SearchRefraction = createIcon({ + displayName: "SearchRefraction", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default SearchRefraction; diff --git a/src/components/icons/search-sm.tsx b/src/components/icons/search-sm.tsx new file mode 100644 index 000000000..4341c078e --- /dev/null +++ b/src/components/icons/search-sm.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const SearchSm = createIcon({ + displayName: "SearchSm", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default SearchSm; diff --git a/src/components/icons/send-01.tsx b/src/components/icons/send-01.tsx new file mode 100644 index 000000000..7863f70a7 --- /dev/null +++ b/src/components/icons/send-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Send01 = createIcon({ + displayName: "Send01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Send01; diff --git a/src/components/icons/send-02.tsx b/src/components/icons/send-02.tsx new file mode 100644 index 000000000..9aca84ecd --- /dev/null +++ b/src/components/icons/send-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Send02 = createIcon({ + displayName: "Send02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Send02; diff --git a/src/components/icons/send-03.tsx b/src/components/icons/send-03.tsx new file mode 100644 index 000000000..22a4cb7d6 --- /dev/null +++ b/src/components/icons/send-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Send03 = createIcon({ + displayName: "Send03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Send03; diff --git a/src/components/icons/server-01.tsx b/src/components/icons/server-01.tsx new file mode 100644 index 000000000..2c96a86b0 --- /dev/null +++ b/src/components/icons/server-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Server01 = createIcon({ + displayName: "Server01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Server01; diff --git a/src/components/icons/server-02.tsx b/src/components/icons/server-02.tsx new file mode 100644 index 000000000..3ac901dbe --- /dev/null +++ b/src/components/icons/server-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Server02 = createIcon({ + displayName: "Server02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Server02; diff --git a/src/components/icons/server-03.tsx b/src/components/icons/server-03.tsx new file mode 100644 index 000000000..0ece63b8d --- /dev/null +++ b/src/components/icons/server-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Server03 = createIcon({ + displayName: "Server03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Server03; diff --git a/src/components/icons/server-04.tsx b/src/components/icons/server-04.tsx new file mode 100644 index 000000000..3d019d263 --- /dev/null +++ b/src/components/icons/server-04.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Server04 = createIcon({ + displayName: "Server04", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Server04; diff --git a/src/components/icons/server-05.tsx b/src/components/icons/server-05.tsx new file mode 100644 index 000000000..d1b7b0dd5 --- /dev/null +++ b/src/components/icons/server-05.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Server05 = createIcon({ + displayName: "Server05", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Server05; diff --git a/src/components/icons/server-06.tsx b/src/components/icons/server-06.tsx new file mode 100644 index 000000000..251ff26c0 --- /dev/null +++ b/src/components/icons/server-06.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Server06 = createIcon({ + displayName: "Server06", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Server06; diff --git a/src/components/icons/settings-01.tsx b/src/components/icons/settings-01.tsx new file mode 100644 index 000000000..bb79710e8 --- /dev/null +++ b/src/components/icons/settings-01.tsx @@ -0,0 +1,27 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Settings01 = createIcon({ + displayName: "Settings01", + viewBox: "0 0 24 24", + path: [ + , + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Settings01; diff --git a/src/components/icons/settings-02.tsx b/src/components/icons/settings-02.tsx new file mode 100644 index 000000000..a44829396 --- /dev/null +++ b/src/components/icons/settings-02.tsx @@ -0,0 +1,27 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Settings02 = createIcon({ + displayName: "Settings02", + viewBox: "0 0 24 24", + path: [ + , + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Settings02; diff --git a/src/components/icons/settings-03.tsx b/src/components/icons/settings-03.tsx new file mode 100644 index 000000000..83263b808 --- /dev/null +++ b/src/components/icons/settings-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Settings03 = createIcon({ + displayName: "Settings03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Settings03; diff --git a/src/components/icons/settings-04.tsx b/src/components/icons/settings-04.tsx new file mode 100644 index 000000000..964eb1442 --- /dev/null +++ b/src/components/icons/settings-04.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Settings04 = createIcon({ + displayName: "Settings04", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Settings04; diff --git a/src/components/icons/share-01.tsx b/src/components/icons/share-01.tsx new file mode 100644 index 000000000..fb57f9280 --- /dev/null +++ b/src/components/icons/share-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Share01 = createIcon({ + displayName: "Share01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Share01; diff --git a/src/components/icons/share-02.tsx b/src/components/icons/share-02.tsx new file mode 100644 index 000000000..2c92019e1 --- /dev/null +++ b/src/components/icons/share-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Share02 = createIcon({ + displayName: "Share02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Share02; diff --git a/src/components/icons/share-03.tsx b/src/components/icons/share-03.tsx new file mode 100644 index 000000000..17633de7a --- /dev/null +++ b/src/components/icons/share-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Share03 = createIcon({ + displayName: "Share03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Share03; diff --git a/src/components/icons/share-04.tsx b/src/components/icons/share-04.tsx new file mode 100644 index 000000000..baf69404e --- /dev/null +++ b/src/components/icons/share-04.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Share04 = createIcon({ + displayName: "Share04", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Share04; diff --git a/src/components/icons/share-05.tsx b/src/components/icons/share-05.tsx new file mode 100644 index 000000000..5cfd9baa9 --- /dev/null +++ b/src/components/icons/share-05.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Share05 = createIcon({ + displayName: "Share05", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Share05; diff --git a/src/components/icons/share-06.tsx b/src/components/icons/share-06.tsx new file mode 100644 index 000000000..9da3b1e4a --- /dev/null +++ b/src/components/icons/share-06.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Share06 = createIcon({ + displayName: "Share06", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Share06; diff --git a/src/components/icons/share-07.tsx b/src/components/icons/share-07.tsx new file mode 100644 index 000000000..7960580cf --- /dev/null +++ b/src/components/icons/share-07.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Share07 = createIcon({ + displayName: "Share07", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Share07; diff --git a/src/components/icons/shield-01.tsx b/src/components/icons/shield-01.tsx new file mode 100644 index 000000000..33d37c1eb --- /dev/null +++ b/src/components/icons/shield-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Shield01 = createIcon({ + displayName: "Shield01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Shield01; diff --git a/src/components/icons/shield-02.tsx b/src/components/icons/shield-02.tsx new file mode 100644 index 000000000..0b0974679 --- /dev/null +++ b/src/components/icons/shield-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Shield02 = createIcon({ + displayName: "Shield02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Shield02; diff --git a/src/components/icons/shield-03.tsx b/src/components/icons/shield-03.tsx new file mode 100644 index 000000000..ff4a2368b --- /dev/null +++ b/src/components/icons/shield-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Shield03 = createIcon({ + displayName: "Shield03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Shield03; diff --git a/src/components/icons/shield-dollar.tsx b/src/components/icons/shield-dollar.tsx new file mode 100644 index 000000000..1f19590d8 --- /dev/null +++ b/src/components/icons/shield-dollar.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ShieldDollar = createIcon({ + displayName: "ShieldDollar", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ShieldDollar; diff --git a/src/components/icons/shield-off.tsx b/src/components/icons/shield-off.tsx new file mode 100644 index 000000000..67b6fdf07 --- /dev/null +++ b/src/components/icons/shield-off.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ShieldOff = createIcon({ + displayName: "ShieldOff", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ShieldOff; diff --git a/src/components/icons/shield-plus.tsx b/src/components/icons/shield-plus.tsx new file mode 100644 index 000000000..b83d02ef4 --- /dev/null +++ b/src/components/icons/shield-plus.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ShieldPlus = createIcon({ + displayName: "ShieldPlus", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ShieldPlus; diff --git a/src/components/icons/shield-tick.tsx b/src/components/icons/shield-tick.tsx new file mode 100644 index 000000000..3ac16c86d --- /dev/null +++ b/src/components/icons/shield-tick.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ShieldTick = createIcon({ + displayName: "ShieldTick", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ShieldTick; diff --git a/src/components/icons/shield-zap.tsx b/src/components/icons/shield-zap.tsx new file mode 100644 index 000000000..f53934dd4 --- /dev/null +++ b/src/components/icons/shield-zap.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ShieldZap = createIcon({ + displayName: "ShieldZap", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ShieldZap; diff --git a/src/components/icons/shopping-bag-01.tsx b/src/components/icons/shopping-bag-01.tsx new file mode 100644 index 000000000..4f6438da9 --- /dev/null +++ b/src/components/icons/shopping-bag-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ShoppingBag01 = createIcon({ + displayName: "ShoppingBag01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ShoppingBag01; diff --git a/src/components/icons/shopping-bag-02.tsx b/src/components/icons/shopping-bag-02.tsx new file mode 100644 index 000000000..eb4226404 --- /dev/null +++ b/src/components/icons/shopping-bag-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ShoppingBag02 = createIcon({ + displayName: "ShoppingBag02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ShoppingBag02; diff --git a/src/components/icons/shopping-bag-03.tsx b/src/components/icons/shopping-bag-03.tsx new file mode 100644 index 000000000..b683cfa47 --- /dev/null +++ b/src/components/icons/shopping-bag-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ShoppingBag03 = createIcon({ + displayName: "ShoppingBag03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ShoppingBag03; diff --git a/src/components/icons/shopping-cart-01.tsx b/src/components/icons/shopping-cart-01.tsx new file mode 100644 index 000000000..ed1d010ac --- /dev/null +++ b/src/components/icons/shopping-cart-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ShoppingCart01 = createIcon({ + displayName: "ShoppingCart01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ShoppingCart01; diff --git a/src/components/icons/shopping-cart-02.tsx b/src/components/icons/shopping-cart-02.tsx new file mode 100644 index 000000000..f3d3b07d7 --- /dev/null +++ b/src/components/icons/shopping-cart-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ShoppingCart02 = createIcon({ + displayName: "ShoppingCart02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ShoppingCart02; diff --git a/src/components/icons/shopping-cart-03.tsx b/src/components/icons/shopping-cart-03.tsx new file mode 100644 index 000000000..b647b831e --- /dev/null +++ b/src/components/icons/shopping-cart-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ShoppingCart03 = createIcon({ + displayName: "ShoppingCart03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ShoppingCart03; diff --git a/src/components/icons/shuffle-01.tsx b/src/components/icons/shuffle-01.tsx new file mode 100644 index 000000000..8cf93c33f --- /dev/null +++ b/src/components/icons/shuffle-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Shuffle01 = createIcon({ + displayName: "Shuffle01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Shuffle01; diff --git a/src/components/icons/shuffle-02.tsx b/src/components/icons/shuffle-02.tsx new file mode 100644 index 000000000..429a59bef --- /dev/null +++ b/src/components/icons/shuffle-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Shuffle02 = createIcon({ + displayName: "Shuffle02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Shuffle02; diff --git a/src/components/icons/signal-01.tsx b/src/components/icons/signal-01.tsx new file mode 100644 index 000000000..5db520a75 --- /dev/null +++ b/src/components/icons/signal-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Signal01 = createIcon({ + displayName: "Signal01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Signal01; diff --git a/src/components/icons/signal-02.tsx b/src/components/icons/signal-02.tsx new file mode 100644 index 000000000..668f22bf8 --- /dev/null +++ b/src/components/icons/signal-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Signal02 = createIcon({ + displayName: "Signal02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Signal02; diff --git a/src/components/icons/signal-03.tsx b/src/components/icons/signal-03.tsx new file mode 100644 index 000000000..6da98bab0 --- /dev/null +++ b/src/components/icons/signal-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Signal03 = createIcon({ + displayName: "Signal03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Signal03; diff --git a/src/components/icons/simcard.tsx b/src/components/icons/simcard.tsx new file mode 100644 index 000000000..ba95663f3 --- /dev/null +++ b/src/components/icons/simcard.tsx @@ -0,0 +1,27 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Simcard = createIcon({ + displayName: "Simcard", + viewBox: "0 0 24 24", + path: [ + , + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Simcard; diff --git a/src/components/icons/skew.tsx b/src/components/icons/skew.tsx new file mode 100644 index 000000000..b545ef1f8 --- /dev/null +++ b/src/components/icons/skew.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Skew = createIcon({ + displayName: "Skew", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Skew; diff --git a/src/components/icons/skip-back.tsx b/src/components/icons/skip-back.tsx new file mode 100644 index 000000000..65bc9d74d --- /dev/null +++ b/src/components/icons/skip-back.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const SkipBack = createIcon({ + displayName: "SkipBack", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default SkipBack; diff --git a/src/components/icons/skip-forward.tsx b/src/components/icons/skip-forward.tsx new file mode 100644 index 000000000..fc9cbfac2 --- /dev/null +++ b/src/components/icons/skip-forward.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const SkipForward = createIcon({ + displayName: "SkipForward", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default SkipForward; diff --git a/src/components/icons/slash-circle-01.tsx b/src/components/icons/slash-circle-01.tsx new file mode 100644 index 000000000..fefff30b1 --- /dev/null +++ b/src/components/icons/slash-circle-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const SlashCircle01 = createIcon({ + displayName: "SlashCircle01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default SlashCircle01; diff --git a/src/components/icons/slash-circle-02.tsx b/src/components/icons/slash-circle-02.tsx new file mode 100644 index 000000000..d7946ae22 --- /dev/null +++ b/src/components/icons/slash-circle-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const SlashCircle02 = createIcon({ + displayName: "SlashCircle02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default SlashCircle02; diff --git a/src/components/icons/slash-divider.tsx b/src/components/icons/slash-divider.tsx new file mode 100644 index 000000000..61866e2b1 --- /dev/null +++ b/src/components/icons/slash-divider.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const SlashDivider = createIcon({ + displayName: "SlashDivider", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default SlashDivider; diff --git a/src/components/icons/slash-octagon.tsx b/src/components/icons/slash-octagon.tsx new file mode 100644 index 000000000..0bdddd269 --- /dev/null +++ b/src/components/icons/slash-octagon.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const SlashOctagon = createIcon({ + displayName: "SlashOctagon", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default SlashOctagon; diff --git a/src/components/icons/sliders-01.tsx b/src/components/icons/sliders-01.tsx new file mode 100644 index 000000000..53606497b --- /dev/null +++ b/src/components/icons/sliders-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Sliders01 = createIcon({ + displayName: "Sliders01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Sliders01; diff --git a/src/components/icons/sliders-02.tsx b/src/components/icons/sliders-02.tsx new file mode 100644 index 000000000..74f3f4342 --- /dev/null +++ b/src/components/icons/sliders-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Sliders02 = createIcon({ + displayName: "Sliders02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Sliders02; diff --git a/src/components/icons/sliders-03.tsx b/src/components/icons/sliders-03.tsx new file mode 100644 index 000000000..572616763 --- /dev/null +++ b/src/components/icons/sliders-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Sliders03 = createIcon({ + displayName: "Sliders03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Sliders03; diff --git a/src/components/icons/sliders-04.tsx b/src/components/icons/sliders-04.tsx new file mode 100644 index 000000000..17abc806b --- /dev/null +++ b/src/components/icons/sliders-04.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Sliders04 = createIcon({ + displayName: "Sliders04", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Sliders04; diff --git a/src/components/icons/snowflake-01.tsx b/src/components/icons/snowflake-01.tsx new file mode 100644 index 000000000..5ed7083ea --- /dev/null +++ b/src/components/icons/snowflake-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Snowflake01 = createIcon({ + displayName: "Snowflake01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Snowflake01; diff --git a/src/components/icons/snowflake-02.tsx b/src/components/icons/snowflake-02.tsx new file mode 100644 index 000000000..0256dff26 --- /dev/null +++ b/src/components/icons/snowflake-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Snowflake02 = createIcon({ + displayName: "Snowflake02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Snowflake02; diff --git a/src/components/icons/spacing-height-01.tsx b/src/components/icons/spacing-height-01.tsx new file mode 100644 index 000000000..aaa3666ab --- /dev/null +++ b/src/components/icons/spacing-height-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const SpacingHeight01 = createIcon({ + displayName: "SpacingHeight01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default SpacingHeight01; diff --git a/src/components/icons/spacing-height-02.tsx b/src/components/icons/spacing-height-02.tsx new file mode 100644 index 000000000..74e5e6adf --- /dev/null +++ b/src/components/icons/spacing-height-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const SpacingHeight02 = createIcon({ + displayName: "SpacingHeight02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default SpacingHeight02; diff --git a/src/components/icons/spacing-width-01.tsx b/src/components/icons/spacing-width-01.tsx new file mode 100644 index 000000000..ee335da85 --- /dev/null +++ b/src/components/icons/spacing-width-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const SpacingWidth01 = createIcon({ + displayName: "SpacingWidth01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default SpacingWidth01; diff --git a/src/components/icons/spacing-width-02.tsx b/src/components/icons/spacing-width-02.tsx new file mode 100644 index 000000000..05d20f1ef --- /dev/null +++ b/src/components/icons/spacing-width-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const SpacingWidth02 = createIcon({ + displayName: "SpacingWidth02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default SpacingWidth02; diff --git a/src/components/icons/speaker-01.tsx b/src/components/icons/speaker-01.tsx new file mode 100644 index 000000000..5444756df --- /dev/null +++ b/src/components/icons/speaker-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Speaker01 = createIcon({ + displayName: "Speaker01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Speaker01; diff --git a/src/components/icons/speaker-02.tsx b/src/components/icons/speaker-02.tsx new file mode 100644 index 000000000..54cd65a06 --- /dev/null +++ b/src/components/icons/speaker-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Speaker02 = createIcon({ + displayName: "Speaker02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Speaker02; diff --git a/src/components/icons/speaker-03.tsx b/src/components/icons/speaker-03.tsx new file mode 100644 index 000000000..dd846d156 --- /dev/null +++ b/src/components/icons/speaker-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Speaker03 = createIcon({ + displayName: "Speaker03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Speaker03; diff --git a/src/components/icons/speedometer-01.tsx b/src/components/icons/speedometer-01.tsx new file mode 100644 index 000000000..67f784a38 --- /dev/null +++ b/src/components/icons/speedometer-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Speedometer01 = createIcon({ + displayName: "Speedometer01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Speedometer01; diff --git a/src/components/icons/speedometer-02.tsx b/src/components/icons/speedometer-02.tsx new file mode 100644 index 000000000..7a1d21443 --- /dev/null +++ b/src/components/icons/speedometer-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Speedometer02 = createIcon({ + displayName: "Speedometer02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Speedometer02; diff --git a/src/components/icons/speedometer-03.tsx b/src/components/icons/speedometer-03.tsx new file mode 100644 index 000000000..7ec7b9f16 --- /dev/null +++ b/src/components/icons/speedometer-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Speedometer03 = createIcon({ + displayName: "Speedometer03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Speedometer03; diff --git a/src/components/icons/speedometer-04.tsx b/src/components/icons/speedometer-04.tsx new file mode 100644 index 000000000..ff18e20b5 --- /dev/null +++ b/src/components/icons/speedometer-04.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Speedometer04 = createIcon({ + displayName: "Speedometer04", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Speedometer04; diff --git a/src/components/icons/square.tsx b/src/components/icons/square.tsx new file mode 100644 index 000000000..06b8896d0 --- /dev/null +++ b/src/components/icons/square.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Square = createIcon({ + displayName: "Square", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Square; diff --git a/src/components/icons/stand.tsx b/src/components/icons/stand.tsx new file mode 100644 index 000000000..8f61a907c --- /dev/null +++ b/src/components/icons/stand.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Stand = createIcon({ + displayName: "Stand", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Stand; diff --git a/src/components/icons/star-01.tsx b/src/components/icons/star-01.tsx new file mode 100644 index 000000000..facbcc416 --- /dev/null +++ b/src/components/icons/star-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Star01 = createIcon({ + displayName: "Star01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Star01; diff --git a/src/components/icons/star-02.tsx b/src/components/icons/star-02.tsx new file mode 100644 index 000000000..9b29e4f49 --- /dev/null +++ b/src/components/icons/star-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Star02 = createIcon({ + displayName: "Star02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Star02; diff --git a/src/components/icons/star-03.tsx b/src/components/icons/star-03.tsx new file mode 100644 index 000000000..90ca409fb --- /dev/null +++ b/src/components/icons/star-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Star03 = createIcon({ + displayName: "Star03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Star03; diff --git a/src/components/icons/star-04.tsx b/src/components/icons/star-04.tsx new file mode 100644 index 000000000..ea4420286 --- /dev/null +++ b/src/components/icons/star-04.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Star04 = createIcon({ + displayName: "Star04", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Star04; diff --git a/src/components/icons/star-05.tsx b/src/components/icons/star-05.tsx new file mode 100644 index 000000000..36979c467 --- /dev/null +++ b/src/components/icons/star-05.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Star05 = createIcon({ + displayName: "Star05", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Star05; diff --git a/src/components/icons/star-06.tsx b/src/components/icons/star-06.tsx new file mode 100644 index 000000000..e5e635041 --- /dev/null +++ b/src/components/icons/star-06.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Star06 = createIcon({ + displayName: "Star06", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Star06; diff --git a/src/components/icons/star-07.tsx b/src/components/icons/star-07.tsx new file mode 100644 index 000000000..e765b5180 --- /dev/null +++ b/src/components/icons/star-07.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Star07 = createIcon({ + displayName: "Star07", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Star07; diff --git a/src/components/icons/stars-01.tsx b/src/components/icons/stars-01.tsx new file mode 100644 index 000000000..890fad270 --- /dev/null +++ b/src/components/icons/stars-01.tsx @@ -0,0 +1,27 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Stars01 = createIcon({ + displayName: "Stars01", + viewBox: "0 0 24 24", + path: [ + , + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Stars01; diff --git a/src/components/icons/stars-02.tsx b/src/components/icons/stars-02.tsx new file mode 100644 index 000000000..b1540ee62 --- /dev/null +++ b/src/components/icons/stars-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Stars02 = createIcon({ + displayName: "Stars02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Stars02; diff --git a/src/components/icons/stars-03.tsx b/src/components/icons/stars-03.tsx new file mode 100644 index 000000000..adc9f2da8 --- /dev/null +++ b/src/components/icons/stars-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Stars03 = createIcon({ + displayName: "Stars03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Stars03; diff --git a/src/components/icons/sticker-circle.tsx b/src/components/icons/sticker-circle.tsx new file mode 100644 index 000000000..07a8b203a --- /dev/null +++ b/src/components/icons/sticker-circle.tsx @@ -0,0 +1,27 @@ +import { createIcon } from "@chakra-ui/icons"; + +const StickerCircle = createIcon({ + displayName: "StickerCircle", + viewBox: "0 0 24 24", + path: [ + , + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default StickerCircle; diff --git a/src/components/icons/sticker-square.tsx b/src/components/icons/sticker-square.tsx new file mode 100644 index 000000000..2998f1de9 --- /dev/null +++ b/src/components/icons/sticker-square.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const StickerSquare = createIcon({ + displayName: "StickerSquare", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default StickerSquare; diff --git a/src/components/icons/stop-circle.tsx b/src/components/icons/stop-circle.tsx new file mode 100644 index 000000000..bdff1be84 --- /dev/null +++ b/src/components/icons/stop-circle.tsx @@ -0,0 +1,27 @@ +import { createIcon } from "@chakra-ui/icons"; + +const StopCircle = createIcon({ + displayName: "StopCircle", + viewBox: "0 0 24 24", + path: [ + , + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default StopCircle; diff --git a/src/components/icons/stop-square.tsx b/src/components/icons/stop-square.tsx new file mode 100644 index 000000000..10719fdca --- /dev/null +++ b/src/components/icons/stop-square.tsx @@ -0,0 +1,27 @@ +import { createIcon } from "@chakra-ui/icons"; + +const StopSquare = createIcon({ + displayName: "StopSquare", + viewBox: "0 0 24 24", + path: [ + , + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default StopSquare; diff --git a/src/components/icons/stop.tsx b/src/components/icons/stop.tsx new file mode 100644 index 000000000..be9a7c486 --- /dev/null +++ b/src/components/icons/stop.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Stop = createIcon({ + displayName: "Stop", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Stop; diff --git a/src/components/icons/strikethrough-01.tsx b/src/components/icons/strikethrough-01.tsx new file mode 100644 index 000000000..c03da25d6 --- /dev/null +++ b/src/components/icons/strikethrough-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Strikethrough01 = createIcon({ + displayName: "Strikethrough01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Strikethrough01; diff --git a/src/components/icons/strikethrough-02.tsx b/src/components/icons/strikethrough-02.tsx new file mode 100644 index 000000000..6f97986b1 --- /dev/null +++ b/src/components/icons/strikethrough-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Strikethrough02 = createIcon({ + displayName: "Strikethrough02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Strikethrough02; diff --git a/src/components/icons/strikethrough-square.tsx b/src/components/icons/strikethrough-square.tsx new file mode 100644 index 000000000..ce1b80883 --- /dev/null +++ b/src/components/icons/strikethrough-square.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const StrikethroughSquare = createIcon({ + displayName: "StrikethroughSquare", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default StrikethroughSquare; diff --git a/src/components/icons/subscript.tsx b/src/components/icons/subscript.tsx new file mode 100644 index 000000000..1fc5ae573 --- /dev/null +++ b/src/components/icons/subscript.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Subscript = createIcon({ + displayName: "Subscript", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Subscript; diff --git a/src/components/icons/sun-setting-01.tsx b/src/components/icons/sun-setting-01.tsx new file mode 100644 index 000000000..3f3e93626 --- /dev/null +++ b/src/components/icons/sun-setting-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const SunSetting01 = createIcon({ + displayName: "SunSetting01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default SunSetting01; diff --git a/src/components/icons/sun-setting-02.tsx b/src/components/icons/sun-setting-02.tsx new file mode 100644 index 000000000..31f7c83f7 --- /dev/null +++ b/src/components/icons/sun-setting-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const SunSetting02 = createIcon({ + displayName: "SunSetting02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default SunSetting02; diff --git a/src/components/icons/sun-setting-03.tsx b/src/components/icons/sun-setting-03.tsx new file mode 100644 index 000000000..93bfac450 --- /dev/null +++ b/src/components/icons/sun-setting-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const SunSetting03 = createIcon({ + displayName: "SunSetting03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default SunSetting03; diff --git a/src/components/icons/sun.tsx b/src/components/icons/sun.tsx new file mode 100644 index 000000000..f62559538 --- /dev/null +++ b/src/components/icons/sun.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Sun = createIcon({ + displayName: "Sun", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Sun; diff --git a/src/components/icons/sunrise.tsx b/src/components/icons/sunrise.tsx new file mode 100644 index 000000000..9123ae532 --- /dev/null +++ b/src/components/icons/sunrise.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Sunrise = createIcon({ + displayName: "Sunrise", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Sunrise; diff --git a/src/components/icons/sunset.tsx b/src/components/icons/sunset.tsx new file mode 100644 index 000000000..50e6710f7 --- /dev/null +++ b/src/components/icons/sunset.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Sunset = createIcon({ + displayName: "Sunset", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Sunset; diff --git a/src/components/icons/svg/untitledui-icons/activity-heart.svg b/src/components/icons/svg/untitledui-icons/activity-heart.svg new file mode 100644 index 000000000..9812a4321 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/activity-heart.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/activity.svg b/src/components/icons/svg/untitledui-icons/activity.svg new file mode 100644 index 000000000..6a281caa1 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/activity.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/airplay.svg b/src/components/icons/svg/untitledui-icons/airplay.svg new file mode 100644 index 000000000..d848c1782 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/airplay.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/airpods.svg b/src/components/icons/svg/untitledui-icons/airpods.svg new file mode 100644 index 000000000..c09a9c429 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/airpods.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/components/icons/svg/untitledui-icons/alarm-clock-check.svg b/src/components/icons/svg/untitledui-icons/alarm-clock-check.svg new file mode 100644 index 000000000..10c9caaef --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/alarm-clock-check.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/alarm-clock-minus.svg b/src/components/icons/svg/untitledui-icons/alarm-clock-minus.svg new file mode 100644 index 000000000..44adddfaa --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/alarm-clock-minus.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/alarm-clock-off.svg b/src/components/icons/svg/untitledui-icons/alarm-clock-off.svg new file mode 100644 index 000000000..6fe18e83b --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/alarm-clock-off.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/alarm-clock-plus.svg b/src/components/icons/svg/untitledui-icons/alarm-clock-plus.svg new file mode 100644 index 000000000..de5dd32d1 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/alarm-clock-plus.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/alarm-clock.svg b/src/components/icons/svg/untitledui-icons/alarm-clock.svg new file mode 100644 index 000000000..cf960a658 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/alarm-clock.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/alert-circle.svg b/src/components/icons/svg/untitledui-icons/alert-circle.svg new file mode 100644 index 000000000..20ce0d6c1 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/alert-circle.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/alert-hexagon.svg b/src/components/icons/svg/untitledui-icons/alert-hexagon.svg new file mode 100644 index 000000000..e3d40196d --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/alert-hexagon.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/alert-octagon.svg b/src/components/icons/svg/untitledui-icons/alert-octagon.svg new file mode 100644 index 000000000..eb67b78a2 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/alert-octagon.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/alert-square.svg b/src/components/icons/svg/untitledui-icons/alert-square.svg new file mode 100644 index 000000000..c26710a33 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/alert-square.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/alert-triangle.svg b/src/components/icons/svg/untitledui-icons/alert-triangle.svg new file mode 100644 index 000000000..5af37cd59 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/alert-triangle.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/align-bottom-01.svg b/src/components/icons/svg/untitledui-icons/align-bottom-01.svg new file mode 100644 index 000000000..6c6be92da --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/align-bottom-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/align-bottom-02.svg b/src/components/icons/svg/untitledui-icons/align-bottom-02.svg new file mode 100644 index 000000000..d117439df --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/align-bottom-02.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/components/icons/svg/untitledui-icons/align-center.svg b/src/components/icons/svg/untitledui-icons/align-center.svg new file mode 100644 index 000000000..8a9515e61 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/align-center.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/align-horizontal-centre-01.svg b/src/components/icons/svg/untitledui-icons/align-horizontal-centre-01.svg new file mode 100644 index 000000000..a83be5326 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/align-horizontal-centre-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/align-horizontal-centre-02.svg b/src/components/icons/svg/untitledui-icons/align-horizontal-centre-02.svg new file mode 100644 index 000000000..be5ba41ab --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/align-horizontal-centre-02.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/components/icons/svg/untitledui-icons/align-justify.svg b/src/components/icons/svg/untitledui-icons/align-justify.svg new file mode 100644 index 000000000..abe4f840e --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/align-justify.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/align-left-01.svg b/src/components/icons/svg/untitledui-icons/align-left-01.svg new file mode 100644 index 000000000..c21a24de3 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/align-left-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/align-left-02.svg b/src/components/icons/svg/untitledui-icons/align-left-02.svg new file mode 100644 index 000000000..1efa67c41 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/align-left-02.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/components/icons/svg/untitledui-icons/align-left.svg b/src/components/icons/svg/untitledui-icons/align-left.svg new file mode 100644 index 000000000..a3584ba01 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/align-left.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/align-right-01.svg b/src/components/icons/svg/untitledui-icons/align-right-01.svg new file mode 100644 index 000000000..6200347d9 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/align-right-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/align-right-02.svg b/src/components/icons/svg/untitledui-icons/align-right-02.svg new file mode 100644 index 000000000..5ee8cd10b --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/align-right-02.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/components/icons/svg/untitledui-icons/align-right.svg b/src/components/icons/svg/untitledui-icons/align-right.svg new file mode 100644 index 000000000..1aa57ae93 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/align-right.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/align-top-01.svg b/src/components/icons/svg/untitledui-icons/align-top-01.svg new file mode 100644 index 000000000..ceef1e8ce --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/align-top-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/align-top-02.svg b/src/components/icons/svg/untitledui-icons/align-top-02.svg new file mode 100644 index 000000000..fbd96b956 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/align-top-02.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/components/icons/svg/untitledui-icons/align-vertical-center-01.svg b/src/components/icons/svg/untitledui-icons/align-vertical-center-01.svg new file mode 100644 index 000000000..ce2dfdff6 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/align-vertical-center-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/align-vertical-center-02.svg b/src/components/icons/svg/untitledui-icons/align-vertical-center-02.svg new file mode 100644 index 000000000..124288321 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/align-vertical-center-02.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/components/icons/svg/untitledui-icons/anchor.svg b/src/components/icons/svg/untitledui-icons/anchor.svg new file mode 100644 index 000000000..9a82aed69 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/anchor.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/annotation-alert.svg b/src/components/icons/svg/untitledui-icons/annotation-alert.svg new file mode 100644 index 000000000..c229f4101 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/annotation-alert.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/annotation-check.svg b/src/components/icons/svg/untitledui-icons/annotation-check.svg new file mode 100644 index 000000000..c4dc33a1b --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/annotation-check.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/annotation-dots.svg b/src/components/icons/svg/untitledui-icons/annotation-dots.svg new file mode 100644 index 000000000..18e22fa23 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/annotation-dots.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/annotation-heart.svg b/src/components/icons/svg/untitledui-icons/annotation-heart.svg new file mode 100644 index 000000000..b9c95ce91 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/annotation-heart.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/components/icons/svg/untitledui-icons/annotation-info.svg b/src/components/icons/svg/untitledui-icons/annotation-info.svg new file mode 100644 index 000000000..afa04f67f --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/annotation-info.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/annotation-plus.svg b/src/components/icons/svg/untitledui-icons/annotation-plus.svg new file mode 100644 index 000000000..6874be355 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/annotation-plus.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/annotation-question.svg b/src/components/icons/svg/untitledui-icons/annotation-question.svg new file mode 100644 index 000000000..4939aca7f --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/annotation-question.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/annotation-x.svg b/src/components/icons/svg/untitledui-icons/annotation-x.svg new file mode 100644 index 000000000..88f53d535 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/annotation-x.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/annotation.svg b/src/components/icons/svg/untitledui-icons/annotation.svg new file mode 100644 index 000000000..b5c43345f --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/annotation.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/announcement-01.svg b/src/components/icons/svg/untitledui-icons/announcement-01.svg new file mode 100644 index 000000000..e1cb4b14b --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/announcement-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/announcement-02.svg b/src/components/icons/svg/untitledui-icons/announcement-02.svg new file mode 100644 index 000000000..894c3dcd0 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/announcement-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/announcement-03.svg b/src/components/icons/svg/untitledui-icons/announcement-03.svg new file mode 100644 index 000000000..70904ffdb --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/announcement-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/archive.svg b/src/components/icons/svg/untitledui-icons/archive.svg new file mode 100644 index 000000000..c862207a3 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/archive.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/arrow-block-down.svg b/src/components/icons/svg/untitledui-icons/arrow-block-down.svg new file mode 100644 index 000000000..a17be5c5a --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/arrow-block-down.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/arrow-block-left.svg b/src/components/icons/svg/untitledui-icons/arrow-block-left.svg new file mode 100644 index 000000000..867c700fb --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/arrow-block-left.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/arrow-block-right.svg b/src/components/icons/svg/untitledui-icons/arrow-block-right.svg new file mode 100644 index 000000000..31406df91 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/arrow-block-right.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/arrow-block-up.svg b/src/components/icons/svg/untitledui-icons/arrow-block-up.svg new file mode 100644 index 000000000..4af137d85 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/arrow-block-up.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/arrow-circle-broken-down-left.svg b/src/components/icons/svg/untitledui-icons/arrow-circle-broken-down-left.svg new file mode 100644 index 000000000..94295f074 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/arrow-circle-broken-down-left.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/arrow-circle-broken-down-right.svg b/src/components/icons/svg/untitledui-icons/arrow-circle-broken-down-right.svg new file mode 100644 index 000000000..3fd4bd534 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/arrow-circle-broken-down-right.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/arrow-circle-broken-down.svg b/src/components/icons/svg/untitledui-icons/arrow-circle-broken-down.svg new file mode 100644 index 000000000..c5ad21010 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/arrow-circle-broken-down.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/arrow-circle-broken-left.svg b/src/components/icons/svg/untitledui-icons/arrow-circle-broken-left.svg new file mode 100644 index 000000000..5f68fc2c8 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/arrow-circle-broken-left.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/arrow-circle-broken-right.svg b/src/components/icons/svg/untitledui-icons/arrow-circle-broken-right.svg new file mode 100644 index 000000000..c2df7ea66 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/arrow-circle-broken-right.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/arrow-circle-broken-up-left.svg b/src/components/icons/svg/untitledui-icons/arrow-circle-broken-up-left.svg new file mode 100644 index 000000000..f2a263394 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/arrow-circle-broken-up-left.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/arrow-circle-broken-up-right.svg b/src/components/icons/svg/untitledui-icons/arrow-circle-broken-up-right.svg new file mode 100644 index 000000000..32292d2c5 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/arrow-circle-broken-up-right.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/arrow-circle-broken-up.svg b/src/components/icons/svg/untitledui-icons/arrow-circle-broken-up.svg new file mode 100644 index 000000000..e641d8b7e --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/arrow-circle-broken-up.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/arrow-circle-down-left.svg b/src/components/icons/svg/untitledui-icons/arrow-circle-down-left.svg new file mode 100644 index 000000000..e4204b33e --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/arrow-circle-down-left.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/arrow-circle-down-right.svg b/src/components/icons/svg/untitledui-icons/arrow-circle-down-right.svg new file mode 100644 index 000000000..557393601 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/arrow-circle-down-right.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/arrow-circle-down.svg b/src/components/icons/svg/untitledui-icons/arrow-circle-down.svg new file mode 100644 index 000000000..08d63caec --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/arrow-circle-down.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/arrow-circle-left.svg b/src/components/icons/svg/untitledui-icons/arrow-circle-left.svg new file mode 100644 index 000000000..eb4818708 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/arrow-circle-left.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/arrow-circle-right.svg b/src/components/icons/svg/untitledui-icons/arrow-circle-right.svg new file mode 100644 index 000000000..2c65875f8 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/arrow-circle-right.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/arrow-circle-up-left.svg b/src/components/icons/svg/untitledui-icons/arrow-circle-up-left.svg new file mode 100644 index 000000000..dd40eba71 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/arrow-circle-up-left.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/arrow-circle-up-right.svg b/src/components/icons/svg/untitledui-icons/arrow-circle-up-right.svg new file mode 100644 index 000000000..340834483 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/arrow-circle-up-right.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/arrow-circle-up.svg b/src/components/icons/svg/untitledui-icons/arrow-circle-up.svg new file mode 100644 index 000000000..6309675bd --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/arrow-circle-up.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/arrow-down-left.svg b/src/components/icons/svg/untitledui-icons/arrow-down-left.svg new file mode 100644 index 000000000..ef21c2194 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/arrow-down-left.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/arrow-down-right.svg b/src/components/icons/svg/untitledui-icons/arrow-down-right.svg new file mode 100644 index 000000000..e98b69535 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/arrow-down-right.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/arrow-down.svg b/src/components/icons/svg/untitledui-icons/arrow-down.svg new file mode 100644 index 000000000..a608e6dff --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/arrow-down.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/arrow-left.svg b/src/components/icons/svg/untitledui-icons/arrow-left.svg new file mode 100644 index 000000000..936137a85 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/arrow-left.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/arrow-narrow-down-left.svg b/src/components/icons/svg/untitledui-icons/arrow-narrow-down-left.svg new file mode 100644 index 000000000..8e1bddee3 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/arrow-narrow-down-left.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/arrow-narrow-down-right.svg b/src/components/icons/svg/untitledui-icons/arrow-narrow-down-right.svg new file mode 100644 index 000000000..83e4cebb8 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/arrow-narrow-down-right.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/arrow-narrow-down.svg b/src/components/icons/svg/untitledui-icons/arrow-narrow-down.svg new file mode 100644 index 000000000..c160e62fd --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/arrow-narrow-down.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/arrow-narrow-left.svg b/src/components/icons/svg/untitledui-icons/arrow-narrow-left.svg new file mode 100644 index 000000000..9a8d25e3a --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/arrow-narrow-left.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/arrow-narrow-right.svg b/src/components/icons/svg/untitledui-icons/arrow-narrow-right.svg new file mode 100644 index 000000000..b5625b5c9 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/arrow-narrow-right.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/arrow-narrow-up-left.svg b/src/components/icons/svg/untitledui-icons/arrow-narrow-up-left.svg new file mode 100644 index 000000000..a10957643 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/arrow-narrow-up-left.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/arrow-narrow-up-right.svg b/src/components/icons/svg/untitledui-icons/arrow-narrow-up-right.svg new file mode 100644 index 000000000..f976769cd --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/arrow-narrow-up-right.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/arrow-narrow-up.svg b/src/components/icons/svg/untitledui-icons/arrow-narrow-up.svg new file mode 100644 index 000000000..d4fe0c50f --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/arrow-narrow-up.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/arrow-right.svg b/src/components/icons/svg/untitledui-icons/arrow-right.svg new file mode 100644 index 000000000..07b259505 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/arrow-right.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/arrow-square-down-left.svg b/src/components/icons/svg/untitledui-icons/arrow-square-down-left.svg new file mode 100644 index 000000000..0f17e853d --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/arrow-square-down-left.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/arrow-square-down-right.svg b/src/components/icons/svg/untitledui-icons/arrow-square-down-right.svg new file mode 100644 index 000000000..5b2e83bac --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/arrow-square-down-right.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/arrow-square-down.svg b/src/components/icons/svg/untitledui-icons/arrow-square-down.svg new file mode 100644 index 000000000..221ef1899 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/arrow-square-down.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/arrow-square-left.svg b/src/components/icons/svg/untitledui-icons/arrow-square-left.svg new file mode 100644 index 000000000..f31f386f1 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/arrow-square-left.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/arrow-square-right.svg b/src/components/icons/svg/untitledui-icons/arrow-square-right.svg new file mode 100644 index 000000000..bfb5a33ca --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/arrow-square-right.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/arrow-square-up-left.svg b/src/components/icons/svg/untitledui-icons/arrow-square-up-left.svg new file mode 100644 index 000000000..44b1c3894 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/arrow-square-up-left.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/arrow-square-up-right.svg b/src/components/icons/svg/untitledui-icons/arrow-square-up-right.svg new file mode 100644 index 000000000..f95d62acb --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/arrow-square-up-right.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/arrow-square-up.svg b/src/components/icons/svg/untitledui-icons/arrow-square-up.svg new file mode 100644 index 000000000..144f65385 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/arrow-square-up.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/arrow-up-left.svg b/src/components/icons/svg/untitledui-icons/arrow-up-left.svg new file mode 100644 index 000000000..e2a88095c --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/arrow-up-left.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/arrow-up-right.svg b/src/components/icons/svg/untitledui-icons/arrow-up-right.svg new file mode 100644 index 000000000..7ffe13f9d --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/arrow-up-right.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/arrow-up.svg b/src/components/icons/svg/untitledui-icons/arrow-up.svg new file mode 100644 index 000000000..14a3b7461 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/arrow-up.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/arrows-down.svg b/src/components/icons/svg/untitledui-icons/arrows-down.svg new file mode 100644 index 000000000..90a943772 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/arrows-down.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/arrows-left.svg b/src/components/icons/svg/untitledui-icons/arrows-left.svg new file mode 100644 index 000000000..2286f6b74 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/arrows-left.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/arrows-right.svg b/src/components/icons/svg/untitledui-icons/arrows-right.svg new file mode 100644 index 000000000..7720ab2ea --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/arrows-right.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/arrows-triangle.svg b/src/components/icons/svg/untitledui-icons/arrows-triangle.svg new file mode 100644 index 000000000..e7d6912e7 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/arrows-triangle.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/arrows-up.svg b/src/components/icons/svg/untitledui-icons/arrows-up.svg new file mode 100644 index 000000000..60e3b1c5e --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/arrows-up.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/asterisk-01.svg b/src/components/icons/svg/untitledui-icons/asterisk-01.svg new file mode 100644 index 000000000..e918f2f01 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/asterisk-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/asterisk-02.svg b/src/components/icons/svg/untitledui-icons/asterisk-02.svg new file mode 100644 index 000000000..638aa1402 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/asterisk-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/at-sign.svg b/src/components/icons/svg/untitledui-icons/at-sign.svg new file mode 100644 index 000000000..1786b9678 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/at-sign.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/atom-01.svg b/src/components/icons/svg/untitledui-icons/atom-01.svg new file mode 100644 index 000000000..c005373db --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/atom-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/atom-02.svg b/src/components/icons/svg/untitledui-icons/atom-02.svg new file mode 100644 index 000000000..8d99ecc61 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/atom-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/attachment-01.svg b/src/components/icons/svg/untitledui-icons/attachment-01.svg new file mode 100644 index 000000000..73903f2be --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/attachment-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/attachment-02.svg b/src/components/icons/svg/untitledui-icons/attachment-02.svg new file mode 100644 index 000000000..c6707d137 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/attachment-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/award-01.svg b/src/components/icons/svg/untitledui-icons/award-01.svg new file mode 100644 index 000000000..fe8b850ae --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/award-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/award-02.svg b/src/components/icons/svg/untitledui-icons/award-02.svg new file mode 100644 index 000000000..6d6389136 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/award-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/award-03.svg b/src/components/icons/svg/untitledui-icons/award-03.svg new file mode 100644 index 000000000..ad59fd8da --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/award-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/award-04.svg b/src/components/icons/svg/untitledui-icons/award-04.svg new file mode 100644 index 000000000..4a4b883ea --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/award-04.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/award-05.svg b/src/components/icons/svg/untitledui-icons/award-05.svg new file mode 100644 index 000000000..19bed32b7 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/award-05.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/backpack.svg b/src/components/icons/svg/untitledui-icons/backpack.svg new file mode 100644 index 000000000..bddd2e0b0 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/backpack.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/bank-note-01.svg b/src/components/icons/svg/untitledui-icons/bank-note-01.svg new file mode 100644 index 000000000..f70bd887c --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/bank-note-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/bank-note-02.svg b/src/components/icons/svg/untitledui-icons/bank-note-02.svg new file mode 100644 index 000000000..2cf8423a9 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/bank-note-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/bank-note-03.svg b/src/components/icons/svg/untitledui-icons/bank-note-03.svg new file mode 100644 index 000000000..cc99eceff --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/bank-note-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/bank.svg b/src/components/icons/svg/untitledui-icons/bank.svg new file mode 100644 index 000000000..0e9c9690e --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/bank.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/bar-chart-01.svg b/src/components/icons/svg/untitledui-icons/bar-chart-01.svg new file mode 100644 index 000000000..6d3eab929 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/bar-chart-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/bar-chart-02.svg b/src/components/icons/svg/untitledui-icons/bar-chart-02.svg new file mode 100644 index 000000000..b640e6f82 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/bar-chart-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/bar-chart-03.svg b/src/components/icons/svg/untitledui-icons/bar-chart-03.svg new file mode 100644 index 000000000..aa22b44ea --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/bar-chart-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/bar-chart-04.svg b/src/components/icons/svg/untitledui-icons/bar-chart-04.svg new file mode 100644 index 000000000..e19858a08 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/bar-chart-04.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/bar-chart-05.svg b/src/components/icons/svg/untitledui-icons/bar-chart-05.svg new file mode 100644 index 000000000..6150e3e5d --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/bar-chart-05.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/bar-chart-06.svg b/src/components/icons/svg/untitledui-icons/bar-chart-06.svg new file mode 100644 index 000000000..74f13fcbc --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/bar-chart-06.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/bar-chart-07.svg b/src/components/icons/svg/untitledui-icons/bar-chart-07.svg new file mode 100644 index 000000000..29a847cf0 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/bar-chart-07.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/bar-chart-08.svg b/src/components/icons/svg/untitledui-icons/bar-chart-08.svg new file mode 100644 index 000000000..433d4277b --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/bar-chart-08.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/bar-chart-09.svg b/src/components/icons/svg/untitledui-icons/bar-chart-09.svg new file mode 100644 index 000000000..5509e8c02 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/bar-chart-09.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/bar-chart-10.svg b/src/components/icons/svg/untitledui-icons/bar-chart-10.svg new file mode 100644 index 000000000..575336b3d --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/bar-chart-10.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/bar-chart-11.svg b/src/components/icons/svg/untitledui-icons/bar-chart-11.svg new file mode 100644 index 000000000..ef6327245 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/bar-chart-11.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/bar-chart-12.svg b/src/components/icons/svg/untitledui-icons/bar-chart-12.svg new file mode 100644 index 000000000..aac9d077e --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/bar-chart-12.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/bar-chart-circle-01.svg b/src/components/icons/svg/untitledui-icons/bar-chart-circle-01.svg new file mode 100644 index 000000000..9c5e538d5 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/bar-chart-circle-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/bar-chart-circle-02.svg b/src/components/icons/svg/untitledui-icons/bar-chart-circle-02.svg new file mode 100644 index 000000000..0f87cb683 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/bar-chart-circle-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/bar-chart-circle-03.svg b/src/components/icons/svg/untitledui-icons/bar-chart-circle-03.svg new file mode 100644 index 000000000..3ce2313bd --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/bar-chart-circle-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/bar-chart-square-01.svg b/src/components/icons/svg/untitledui-icons/bar-chart-square-01.svg new file mode 100644 index 000000000..b668a6756 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/bar-chart-square-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/bar-chart-square-02.svg b/src/components/icons/svg/untitledui-icons/bar-chart-square-02.svg new file mode 100644 index 000000000..d9a50d0cf --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/bar-chart-square-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/bar-chart-square-03.svg b/src/components/icons/svg/untitledui-icons/bar-chart-square-03.svg new file mode 100644 index 000000000..b0e2a4861 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/bar-chart-square-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/bar-chart-square-down.svg b/src/components/icons/svg/untitledui-icons/bar-chart-square-down.svg new file mode 100644 index 000000000..00de28271 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/bar-chart-square-down.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/bar-chart-square-minus.svg b/src/components/icons/svg/untitledui-icons/bar-chart-square-minus.svg new file mode 100644 index 000000000..31f984d77 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/bar-chart-square-minus.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/bar-chart-square-plus.svg b/src/components/icons/svg/untitledui-icons/bar-chart-square-plus.svg new file mode 100644 index 000000000..1308414c6 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/bar-chart-square-plus.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/bar-chart-square-up.svg b/src/components/icons/svg/untitledui-icons/bar-chart-square-up.svg new file mode 100644 index 000000000..0639b4971 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/bar-chart-square-up.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/bar-line-chart.svg b/src/components/icons/svg/untitledui-icons/bar-line-chart.svg new file mode 100644 index 000000000..a38d196ae --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/bar-line-chart.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/battery-charging-01.svg b/src/components/icons/svg/untitledui-icons/battery-charging-01.svg new file mode 100644 index 000000000..1bf6b08c9 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/battery-charging-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/battery-charging-02.svg b/src/components/icons/svg/untitledui-icons/battery-charging-02.svg new file mode 100644 index 000000000..13cbfb425 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/battery-charging-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/battery-empty.svg b/src/components/icons/svg/untitledui-icons/battery-empty.svg new file mode 100644 index 000000000..24db62043 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/battery-empty.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/battery-full.svg b/src/components/icons/svg/untitledui-icons/battery-full.svg new file mode 100644 index 000000000..956bb6308 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/battery-full.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/battery-low.svg b/src/components/icons/svg/untitledui-icons/battery-low.svg new file mode 100644 index 000000000..477bc5af1 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/battery-low.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/battery-mid.svg b/src/components/icons/svg/untitledui-icons/battery-mid.svg new file mode 100644 index 000000000..98a47ab4a --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/battery-mid.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/beaker-01.svg b/src/components/icons/svg/untitledui-icons/beaker-01.svg new file mode 100644 index 000000000..2bddcf4cc --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/beaker-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/beaker-02.svg b/src/components/icons/svg/untitledui-icons/beaker-02.svg new file mode 100644 index 000000000..2c937bc51 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/beaker-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/bell-01.svg b/src/components/icons/svg/untitledui-icons/bell-01.svg new file mode 100644 index 000000000..af129685d --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/bell-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/bell-02.svg b/src/components/icons/svg/untitledui-icons/bell-02.svg new file mode 100644 index 000000000..a8419be84 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/bell-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/bell-03.svg b/src/components/icons/svg/untitledui-icons/bell-03.svg new file mode 100644 index 000000000..5b605593d --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/bell-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/bell-04.svg b/src/components/icons/svg/untitledui-icons/bell-04.svg new file mode 100644 index 000000000..d711ad5dc --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/bell-04.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/bell-minus.svg b/src/components/icons/svg/untitledui-icons/bell-minus.svg new file mode 100644 index 000000000..7a02b40f2 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/bell-minus.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/bell-off-01.svg b/src/components/icons/svg/untitledui-icons/bell-off-01.svg new file mode 100644 index 000000000..9b6003699 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/bell-off-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/bell-off-02.svg b/src/components/icons/svg/untitledui-icons/bell-off-02.svg new file mode 100644 index 000000000..e9e31c4a5 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/bell-off-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/bell-off-03.svg b/src/components/icons/svg/untitledui-icons/bell-off-03.svg new file mode 100644 index 000000000..97f7bd802 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/bell-off-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/bell-plus.svg b/src/components/icons/svg/untitledui-icons/bell-plus.svg new file mode 100644 index 000000000..bad6ba921 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/bell-plus.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/bell-ringing-01.svg b/src/components/icons/svg/untitledui-icons/bell-ringing-01.svg new file mode 100644 index 000000000..668ac5ff8 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/bell-ringing-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/bell-ringing-02.svg b/src/components/icons/svg/untitledui-icons/bell-ringing-02.svg new file mode 100644 index 000000000..800090d3b --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/bell-ringing-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/bell-ringing-03.svg b/src/components/icons/svg/untitledui-icons/bell-ringing-03.svg new file mode 100644 index 000000000..b84c556bd --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/bell-ringing-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/bell-ringing-04.svg b/src/components/icons/svg/untitledui-icons/bell-ringing-04.svg new file mode 100644 index 000000000..e0d4ca437 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/bell-ringing-04.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/bezier-curve-01.svg b/src/components/icons/svg/untitledui-icons/bezier-curve-01.svg new file mode 100644 index 000000000..b40684006 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/bezier-curve-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/bezier-curve-02.svg b/src/components/icons/svg/untitledui-icons/bezier-curve-02.svg new file mode 100644 index 000000000..9ff6952c4 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/bezier-curve-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/bezier-curve-03.svg b/src/components/icons/svg/untitledui-icons/bezier-curve-03.svg new file mode 100644 index 000000000..2cbfd2726 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/bezier-curve-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/bluetooth-connect.svg b/src/components/icons/svg/untitledui-icons/bluetooth-connect.svg new file mode 100644 index 000000000..3c8423476 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/bluetooth-connect.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/bluetooth-off.svg b/src/components/icons/svg/untitledui-icons/bluetooth-off.svg new file mode 100644 index 000000000..6228dc2e6 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/bluetooth-off.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/bluetooth-on.svg b/src/components/icons/svg/untitledui-icons/bluetooth-on.svg new file mode 100644 index 000000000..411a2d977 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/bluetooth-on.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/bluetooth-signal.svg b/src/components/icons/svg/untitledui-icons/bluetooth-signal.svg new file mode 100644 index 000000000..86ef73b63 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/bluetooth-signal.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/bold-01.svg b/src/components/icons/svg/untitledui-icons/bold-01.svg new file mode 100644 index 000000000..b14932e1c --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/bold-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/bold-02.svg b/src/components/icons/svg/untitledui-icons/bold-02.svg new file mode 100644 index 000000000..a190df773 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/bold-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/bold-square.svg b/src/components/icons/svg/untitledui-icons/bold-square.svg new file mode 100644 index 000000000..5c9fabbb7 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/bold-square.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/book-closed.svg b/src/components/icons/svg/untitledui-icons/book-closed.svg new file mode 100644 index 000000000..d6057a362 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/book-closed.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/book-open-01.svg b/src/components/icons/svg/untitledui-icons/book-open-01.svg new file mode 100644 index 000000000..ed27f4d51 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/book-open-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/book-open-02.svg b/src/components/icons/svg/untitledui-icons/book-open-02.svg new file mode 100644 index 000000000..37cf69689 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/book-open-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/bookmark-add.svg b/src/components/icons/svg/untitledui-icons/bookmark-add.svg new file mode 100644 index 000000000..1536f5d37 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/bookmark-add.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/bookmark-check.svg b/src/components/icons/svg/untitledui-icons/bookmark-check.svg new file mode 100644 index 000000000..289584bcb --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/bookmark-check.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/bookmark-minus.svg b/src/components/icons/svg/untitledui-icons/bookmark-minus.svg new file mode 100644 index 000000000..3901bce38 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/bookmark-minus.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/bookmark-x.svg b/src/components/icons/svg/untitledui-icons/bookmark-x.svg new file mode 100644 index 000000000..6356a9a30 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/bookmark-x.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/bookmark.svg b/src/components/icons/svg/untitledui-icons/bookmark.svg new file mode 100644 index 000000000..576abcdc4 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/bookmark.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/box.svg b/src/components/icons/svg/untitledui-icons/box.svg new file mode 100644 index 000000000..b62a05707 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/box.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/brackets-check.svg b/src/components/icons/svg/untitledui-icons/brackets-check.svg new file mode 100644 index 000000000..89a69dad1 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/brackets-check.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/brackets-ellipses.svg b/src/components/icons/svg/untitledui-icons/brackets-ellipses.svg new file mode 100644 index 000000000..544899fbb --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/brackets-ellipses.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/brackets-minus.svg b/src/components/icons/svg/untitledui-icons/brackets-minus.svg new file mode 100644 index 000000000..eee129971 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/brackets-minus.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/brackets-plus.svg b/src/components/icons/svg/untitledui-icons/brackets-plus.svg new file mode 100644 index 000000000..12a909f7f --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/brackets-plus.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/brackets-slash.svg b/src/components/icons/svg/untitledui-icons/brackets-slash.svg new file mode 100644 index 000000000..fee8efa84 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/brackets-slash.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/brackets-x.svg b/src/components/icons/svg/untitledui-icons/brackets-x.svg new file mode 100644 index 000000000..cd3daec6c --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/brackets-x.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/brackets.svg b/src/components/icons/svg/untitledui-icons/brackets.svg new file mode 100644 index 000000000..f31dbe7d6 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/brackets.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/briefcase-01.svg b/src/components/icons/svg/untitledui-icons/briefcase-01.svg new file mode 100644 index 000000000..7c4b0001c --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/briefcase-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/briefcase-02.svg b/src/components/icons/svg/untitledui-icons/briefcase-02.svg new file mode 100644 index 000000000..7030e08af --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/briefcase-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/browser.svg b/src/components/icons/svg/untitledui-icons/browser.svg new file mode 100644 index 000000000..1363ba97d --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/browser.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/brush-01.svg b/src/components/icons/svg/untitledui-icons/brush-01.svg new file mode 100644 index 000000000..433f71a00 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/brush-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/brush-02.svg b/src/components/icons/svg/untitledui-icons/brush-02.svg new file mode 100644 index 000000000..b1901f52f --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/brush-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/brush-03.svg b/src/components/icons/svg/untitledui-icons/brush-03.svg new file mode 100644 index 000000000..9bfab5700 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/brush-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/building-01.svg b/src/components/icons/svg/untitledui-icons/building-01.svg new file mode 100644 index 000000000..7eed4aaad --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/building-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/building-02.svg b/src/components/icons/svg/untitledui-icons/building-02.svg new file mode 100644 index 000000000..f569d1f52 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/building-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/building-03.svg b/src/components/icons/svg/untitledui-icons/building-03.svg new file mode 100644 index 000000000..6de7eea08 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/building-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/building-04.svg b/src/components/icons/svg/untitledui-icons/building-04.svg new file mode 100644 index 000000000..62667b13d --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/building-04.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/building-05.svg b/src/components/icons/svg/untitledui-icons/building-05.svg new file mode 100644 index 000000000..a31482b2d --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/building-05.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/building-06.svg b/src/components/icons/svg/untitledui-icons/building-06.svg new file mode 100644 index 000000000..b4205844c --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/building-06.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/building-07.svg b/src/components/icons/svg/untitledui-icons/building-07.svg new file mode 100644 index 000000000..b51f81470 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/building-07.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/building-08.svg b/src/components/icons/svg/untitledui-icons/building-08.svg new file mode 100644 index 000000000..dc2f297c4 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/building-08.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/bus.svg b/src/components/icons/svg/untitledui-icons/bus.svg new file mode 100644 index 000000000..cdf556a5a --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/bus.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/calculator.svg b/src/components/icons/svg/untitledui-icons/calculator.svg new file mode 100644 index 000000000..98f0c781e --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/calculator.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/calendar-check-01.svg b/src/components/icons/svg/untitledui-icons/calendar-check-01.svg new file mode 100644 index 000000000..5323390b2 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/calendar-check-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/calendar-check-02.svg b/src/components/icons/svg/untitledui-icons/calendar-check-02.svg new file mode 100644 index 000000000..f69258ffd --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/calendar-check-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/calendar-date.svg b/src/components/icons/svg/untitledui-icons/calendar-date.svg new file mode 100644 index 000000000..a5307df33 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/calendar-date.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/calendar-heart-01.svg b/src/components/icons/svg/untitledui-icons/calendar-heart-01.svg new file mode 100644 index 000000000..0198df23e --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/calendar-heart-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/calendar-heart-02.svg b/src/components/icons/svg/untitledui-icons/calendar-heart-02.svg new file mode 100644 index 000000000..1fd65bc34 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/calendar-heart-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/calendar-minus-01.svg b/src/components/icons/svg/untitledui-icons/calendar-minus-01.svg new file mode 100644 index 000000000..5045622fa --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/calendar-minus-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/calendar-minus-02.svg b/src/components/icons/svg/untitledui-icons/calendar-minus-02.svg new file mode 100644 index 000000000..25718d33d --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/calendar-minus-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/calendar-plus-01.svg b/src/components/icons/svg/untitledui-icons/calendar-plus-01.svg new file mode 100644 index 000000000..588039c45 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/calendar-plus-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/calendar-plus-02.svg b/src/components/icons/svg/untitledui-icons/calendar-plus-02.svg new file mode 100644 index 000000000..29aac71f6 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/calendar-plus-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/calendar.svg b/src/components/icons/svg/untitledui-icons/calendar.svg new file mode 100644 index 000000000..5b85631bc --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/calendar.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/camera-01.svg b/src/components/icons/svg/untitledui-icons/camera-01.svg new file mode 100644 index 000000000..fe42ef8e1 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/camera-01.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/components/icons/svg/untitledui-icons/camera-02.svg b/src/components/icons/svg/untitledui-icons/camera-02.svg new file mode 100644 index 000000000..2ae2bd3f5 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/camera-02.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/components/icons/svg/untitledui-icons/camera-03.svg b/src/components/icons/svg/untitledui-icons/camera-03.svg new file mode 100644 index 000000000..876c57563 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/camera-03.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/components/icons/svg/untitledui-icons/camera-lens.svg b/src/components/icons/svg/untitledui-icons/camera-lens.svg new file mode 100644 index 000000000..a1fd5a554 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/camera-lens.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/camera-off.svg b/src/components/icons/svg/untitledui-icons/camera-off.svg new file mode 100644 index 000000000..c25fc6cf7 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/camera-off.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/camera-plus.svg b/src/components/icons/svg/untitledui-icons/camera-plus.svg new file mode 100644 index 000000000..d705f4267 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/camera-plus.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/car-01.svg b/src/components/icons/svg/untitledui-icons/car-01.svg new file mode 100644 index 000000000..9356f5406 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/car-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/car-02.svg b/src/components/icons/svg/untitledui-icons/car-02.svg new file mode 100644 index 000000000..5545d2f55 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/car-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/certificate-01.svg b/src/components/icons/svg/untitledui-icons/certificate-01.svg new file mode 100644 index 000000000..d50470609 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/certificate-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/certificate-02.svg b/src/components/icons/svg/untitledui-icons/certificate-02.svg new file mode 100644 index 000000000..1c110549f --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/certificate-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/chart-breakout-circle.svg b/src/components/icons/svg/untitledui-icons/chart-breakout-circle.svg new file mode 100644 index 000000000..cee1bcae9 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/chart-breakout-circle.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/chart-breakout-square.svg b/src/components/icons/svg/untitledui-icons/chart-breakout-square.svg new file mode 100644 index 000000000..688f5b361 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/chart-breakout-square.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/check-circle-broken.svg b/src/components/icons/svg/untitledui-icons/check-circle-broken.svg new file mode 100644 index 000000000..1894a898b --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/check-circle-broken.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/check-circle.svg b/src/components/icons/svg/untitledui-icons/check-circle.svg new file mode 100644 index 000000000..19f8b156c --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/check-circle.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/check-done-01.svg b/src/components/icons/svg/untitledui-icons/check-done-01.svg new file mode 100644 index 000000000..d53ea2c83 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/check-done-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/check-done-02.svg b/src/components/icons/svg/untitledui-icons/check-done-02.svg new file mode 100644 index 000000000..20d0f1306 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/check-done-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/check-heart.svg b/src/components/icons/svg/untitledui-icons/check-heart.svg new file mode 100644 index 000000000..0bb22b981 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/check-heart.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/check-square-broken.svg b/src/components/icons/svg/untitledui-icons/check-square-broken.svg new file mode 100644 index 000000000..ca315bcfa --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/check-square-broken.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/check-square.svg b/src/components/icons/svg/untitledui-icons/check-square.svg new file mode 100644 index 000000000..6dfdc6d2a --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/check-square.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/check-verified-01.svg b/src/components/icons/svg/untitledui-icons/check-verified-01.svg new file mode 100644 index 000000000..bd6ea12fc --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/check-verified-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/check-verified-02.svg b/src/components/icons/svg/untitledui-icons/check-verified-02.svg new file mode 100644 index 000000000..7b1826f96 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/check-verified-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/check-verified-03.svg b/src/components/icons/svg/untitledui-icons/check-verified-03.svg new file mode 100644 index 000000000..4f134a157 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/check-verified-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/check.svg b/src/components/icons/svg/untitledui-icons/check.svg new file mode 100644 index 000000000..be3dd3d5d --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/check.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/chevron-down-double.svg b/src/components/icons/svg/untitledui-icons/chevron-down-double.svg new file mode 100644 index 000000000..4a7ec8f8c --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/chevron-down-double.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/chevron-down.svg b/src/components/icons/svg/untitledui-icons/chevron-down.svg new file mode 100644 index 000000000..f87d1768a --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/chevron-down.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/chevron-left-double.svg b/src/components/icons/svg/untitledui-icons/chevron-left-double.svg new file mode 100644 index 000000000..a4d1cdc06 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/chevron-left-double.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/chevron-left.svg b/src/components/icons/svg/untitledui-icons/chevron-left.svg new file mode 100644 index 000000000..bcf021e50 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/chevron-left.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/chevron-right-double.svg b/src/components/icons/svg/untitledui-icons/chevron-right-double.svg new file mode 100644 index 000000000..292dc427e --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/chevron-right-double.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/chevron-right.svg b/src/components/icons/svg/untitledui-icons/chevron-right.svg new file mode 100644 index 000000000..5704297ce --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/chevron-right.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/chevron-selector-horizontal.svg b/src/components/icons/svg/untitledui-icons/chevron-selector-horizontal.svg new file mode 100644 index 000000000..5e226b965 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/chevron-selector-horizontal.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/chevron-selector-vertical.svg b/src/components/icons/svg/untitledui-icons/chevron-selector-vertical.svg new file mode 100644 index 000000000..342d6bb6e --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/chevron-selector-vertical.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/chevron-up-double.svg b/src/components/icons/svg/untitledui-icons/chevron-up-double.svg new file mode 100644 index 000000000..88dee4feb --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/chevron-up-double.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/chevron-up.svg b/src/components/icons/svg/untitledui-icons/chevron-up.svg new file mode 100644 index 000000000..4ff36f2b1 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/chevron-up.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/chrome-cast.svg b/src/components/icons/svg/untitledui-icons/chrome-cast.svg new file mode 100644 index 000000000..3bd5dbbea --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/chrome-cast.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/circle-cut.svg b/src/components/icons/svg/untitledui-icons/circle-cut.svg new file mode 100644 index 000000000..d96013f20 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/circle-cut.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/circle.svg b/src/components/icons/svg/untitledui-icons/circle.svg new file mode 100644 index 000000000..d6777fbb2 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/circle.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/clapperboard.svg b/src/components/icons/svg/untitledui-icons/clapperboard.svg new file mode 100644 index 000000000..d078d1fd4 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/clapperboard.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/clipboard-attachment.svg b/src/components/icons/svg/untitledui-icons/clipboard-attachment.svg new file mode 100644 index 000000000..5ec0f3fa0 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/clipboard-attachment.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/clipboard-check.svg b/src/components/icons/svg/untitledui-icons/clipboard-check.svg new file mode 100644 index 000000000..48c70edd7 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/clipboard-check.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/clipboard-download.svg b/src/components/icons/svg/untitledui-icons/clipboard-download.svg new file mode 100644 index 000000000..531de0599 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/clipboard-download.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/clipboard-minus.svg b/src/components/icons/svg/untitledui-icons/clipboard-minus.svg new file mode 100644 index 000000000..9093aa97c --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/clipboard-minus.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/clipboard-plus.svg b/src/components/icons/svg/untitledui-icons/clipboard-plus.svg new file mode 100644 index 000000000..589c56931 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/clipboard-plus.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/clipboard-x.svg b/src/components/icons/svg/untitledui-icons/clipboard-x.svg new file mode 100644 index 000000000..a652b9016 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/clipboard-x.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/clipboard.svg b/src/components/icons/svg/untitledui-icons/clipboard.svg new file mode 100644 index 000000000..8abaaa9c3 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/clipboard.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/clock-check.svg b/src/components/icons/svg/untitledui-icons/clock-check.svg new file mode 100644 index 000000000..ed0607d92 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/clock-check.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/clock-fast-forward.svg b/src/components/icons/svg/untitledui-icons/clock-fast-forward.svg new file mode 100644 index 000000000..5e499f5d4 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/clock-fast-forward.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/clock-plus.svg b/src/components/icons/svg/untitledui-icons/clock-plus.svg new file mode 100644 index 000000000..723327ab1 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/clock-plus.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/clock-refresh.svg b/src/components/icons/svg/untitledui-icons/clock-refresh.svg new file mode 100644 index 000000000..72b27f1d6 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/clock-refresh.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/clock-rewind.svg b/src/components/icons/svg/untitledui-icons/clock-rewind.svg new file mode 100644 index 000000000..df985c401 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/clock-rewind.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/clock-snooze.svg b/src/components/icons/svg/untitledui-icons/clock-snooze.svg new file mode 100644 index 000000000..32a7d8df5 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/clock-snooze.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/clock-stopwatch.svg b/src/components/icons/svg/untitledui-icons/clock-stopwatch.svg new file mode 100644 index 000000000..5dabd30d4 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/clock-stopwatch.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/clock.svg b/src/components/icons/svg/untitledui-icons/clock.svg new file mode 100644 index 000000000..408a17dea --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/clock.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/cloud-01.svg b/src/components/icons/svg/untitledui-icons/cloud-01.svg new file mode 100644 index 000000000..e4c813be7 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/cloud-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/cloud-02.svg b/src/components/icons/svg/untitledui-icons/cloud-02.svg new file mode 100644 index 000000000..f3bee4b73 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/cloud-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/cloud-03.svg b/src/components/icons/svg/untitledui-icons/cloud-03.svg new file mode 100644 index 000000000..8460b421b --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/cloud-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/cloud-blank-01.svg b/src/components/icons/svg/untitledui-icons/cloud-blank-01.svg new file mode 100644 index 000000000..e4c813be7 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/cloud-blank-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/cloud-blank-02.svg b/src/components/icons/svg/untitledui-icons/cloud-blank-02.svg new file mode 100644 index 000000000..8460b421b --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/cloud-blank-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/cloud-lightning.svg b/src/components/icons/svg/untitledui-icons/cloud-lightning.svg new file mode 100644 index 000000000..385d85d48 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/cloud-lightning.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/cloud-moon.svg b/src/components/icons/svg/untitledui-icons/cloud-moon.svg new file mode 100644 index 000000000..4d669fcd4 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/cloud-moon.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/cloud-off.svg b/src/components/icons/svg/untitledui-icons/cloud-off.svg new file mode 100644 index 000000000..d6dd01d62 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/cloud-off.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/cloud-raining-01.svg b/src/components/icons/svg/untitledui-icons/cloud-raining-01.svg new file mode 100644 index 000000000..bad1c1f64 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/cloud-raining-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/cloud-raining-02.svg b/src/components/icons/svg/untitledui-icons/cloud-raining-02.svg new file mode 100644 index 000000000..d09969d87 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/cloud-raining-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/cloud-raining-03.svg b/src/components/icons/svg/untitledui-icons/cloud-raining-03.svg new file mode 100644 index 000000000..ea5228bb5 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/cloud-raining-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/cloud-raining-04.svg b/src/components/icons/svg/untitledui-icons/cloud-raining-04.svg new file mode 100644 index 000000000..fa9183a3f --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/cloud-raining-04.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/cloud-raining-05.svg b/src/components/icons/svg/untitledui-icons/cloud-raining-05.svg new file mode 100644 index 000000000..50638a436 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/cloud-raining-05.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/cloud-raining-06.svg b/src/components/icons/svg/untitledui-icons/cloud-raining-06.svg new file mode 100644 index 000000000..4600f67fc --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/cloud-raining-06.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/cloud-snowing-01.svg b/src/components/icons/svg/untitledui-icons/cloud-snowing-01.svg new file mode 100644 index 000000000..40a088c50 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/cloud-snowing-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/cloud-snowing-02.svg b/src/components/icons/svg/untitledui-icons/cloud-snowing-02.svg new file mode 100644 index 000000000..c2d61b94d --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/cloud-snowing-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/cloud-sun-01.svg b/src/components/icons/svg/untitledui-icons/cloud-sun-01.svg new file mode 100644 index 000000000..0682a9142 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/cloud-sun-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/cloud-sun-02.svg b/src/components/icons/svg/untitledui-icons/cloud-sun-02.svg new file mode 100644 index 000000000..cb2d016a6 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/cloud-sun-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/cloud-sun-03.svg b/src/components/icons/svg/untitledui-icons/cloud-sun-03.svg new file mode 100644 index 000000000..ed493b7e7 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/cloud-sun-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/code-01.svg b/src/components/icons/svg/untitledui-icons/code-01.svg new file mode 100644 index 000000000..f367ce851 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/code-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/code-02.svg b/src/components/icons/svg/untitledui-icons/code-02.svg new file mode 100644 index 000000000..d12f6c10e --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/code-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/code-browser.svg b/src/components/icons/svg/untitledui-icons/code-browser.svg new file mode 100644 index 000000000..d9eb59a33 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/code-browser.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/code-circle-01.svg b/src/components/icons/svg/untitledui-icons/code-circle-01.svg new file mode 100644 index 000000000..92f613fc2 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/code-circle-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/code-circle-02.svg b/src/components/icons/svg/untitledui-icons/code-circle-02.svg new file mode 100644 index 000000000..a617ff0f5 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/code-circle-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/code-circle-03.svg b/src/components/icons/svg/untitledui-icons/code-circle-03.svg new file mode 100644 index 000000000..10e0dab2a --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/code-circle-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/code-snippet-01.svg b/src/components/icons/svg/untitledui-icons/code-snippet-01.svg new file mode 100644 index 000000000..f367ce851 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/code-snippet-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/code-snippet-02.svg b/src/components/icons/svg/untitledui-icons/code-snippet-02.svg new file mode 100644 index 000000000..d12f6c10e --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/code-snippet-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/code-square-01.svg b/src/components/icons/svg/untitledui-icons/code-square-01.svg new file mode 100644 index 000000000..661b35aca --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/code-square-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/code-square-02.svg b/src/components/icons/svg/untitledui-icons/code-square-02.svg new file mode 100644 index 000000000..a4b6428be --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/code-square-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/codepen.svg b/src/components/icons/svg/untitledui-icons/codepen.svg new file mode 100644 index 000000000..36e08b67c --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/codepen.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/coins-01.svg b/src/components/icons/svg/untitledui-icons/coins-01.svg new file mode 100644 index 000000000..90d2c407e --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/coins-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/coins-02.svg b/src/components/icons/svg/untitledui-icons/coins-02.svg new file mode 100644 index 000000000..1c4cb9e87 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/coins-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/coins-03.svg b/src/components/icons/svg/untitledui-icons/coins-03.svg new file mode 100644 index 000000000..4b268d563 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/coins-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/coins-04.svg b/src/components/icons/svg/untitledui-icons/coins-04.svg new file mode 100644 index 000000000..c38019dba --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/coins-04.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/coins-hand.svg b/src/components/icons/svg/untitledui-icons/coins-hand.svg new file mode 100644 index 000000000..29271b6f8 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/coins-hand.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/coins-stacked-01.svg b/src/components/icons/svg/untitledui-icons/coins-stacked-01.svg new file mode 100644 index 000000000..ddbe89a1b --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/coins-stacked-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/coins-stacked-02.svg b/src/components/icons/svg/untitledui-icons/coins-stacked-02.svg new file mode 100644 index 000000000..069419689 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/coins-stacked-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/coins-stacked-03.svg b/src/components/icons/svg/untitledui-icons/coins-stacked-03.svg new file mode 100644 index 000000000..457a8b473 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/coins-stacked-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/coins-stacked-04.svg b/src/components/icons/svg/untitledui-icons/coins-stacked-04.svg new file mode 100644 index 000000000..3755c8631 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/coins-stacked-04.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/coins-swap-01.svg b/src/components/icons/svg/untitledui-icons/coins-swap-01.svg new file mode 100644 index 000000000..17154f224 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/coins-swap-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/coins-swap-02.svg b/src/components/icons/svg/untitledui-icons/coins-swap-02.svg new file mode 100644 index 000000000..85170161b --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/coins-swap-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/colors-1.svg b/src/components/icons/svg/untitledui-icons/colors-1.svg new file mode 100644 index 000000000..79ad6ca1e --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/colors-1.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/colors.svg b/src/components/icons/svg/untitledui-icons/colors.svg new file mode 100644 index 000000000..79ad6ca1e --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/colors.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/columns-01.svg b/src/components/icons/svg/untitledui-icons/columns-01.svg new file mode 100644 index 000000000..f8d8c242e --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/columns-01.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/components/icons/svg/untitledui-icons/columns-02.svg b/src/components/icons/svg/untitledui-icons/columns-02.svg new file mode 100644 index 000000000..2f5d899bf --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/columns-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/columns-03.svg b/src/components/icons/svg/untitledui-icons/columns-03.svg new file mode 100644 index 000000000..5c44e340c --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/columns-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/command.svg b/src/components/icons/svg/untitledui-icons/command.svg new file mode 100644 index 000000000..ed87a6677 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/command.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/compass-01.svg b/src/components/icons/svg/untitledui-icons/compass-01.svg new file mode 100644 index 000000000..4a2866a42 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/compass-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/compass-02.svg b/src/components/icons/svg/untitledui-icons/compass-02.svg new file mode 100644 index 000000000..806dd8b75 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/compass-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/compass-03.svg b/src/components/icons/svg/untitledui-icons/compass-03.svg new file mode 100644 index 000000000..c44f6b3ca --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/compass-03.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/components/icons/svg/untitledui-icons/compass.svg b/src/components/icons/svg/untitledui-icons/compass.svg new file mode 100644 index 000000000..4a5cab0ed --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/compass.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/container.svg b/src/components/icons/svg/untitledui-icons/container.svg new file mode 100644 index 000000000..3f1262e1e --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/container.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/contrast-01.svg b/src/components/icons/svg/untitledui-icons/contrast-01.svg new file mode 100644 index 000000000..f4891fcb6 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/contrast-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/contrast-02.svg b/src/components/icons/svg/untitledui-icons/contrast-02.svg new file mode 100644 index 000000000..c90fece9b --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/contrast-02.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/components/icons/svg/untitledui-icons/contrast-03.svg b/src/components/icons/svg/untitledui-icons/contrast-03.svg new file mode 100644 index 000000000..3d084c712 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/contrast-03.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/components/icons/svg/untitledui-icons/copy-01.svg b/src/components/icons/svg/untitledui-icons/copy-01.svg new file mode 100644 index 000000000..c760d6b14 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/copy-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/copy-02.svg b/src/components/icons/svg/untitledui-icons/copy-02.svg new file mode 100644 index 000000000..41314a459 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/copy-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/copy-03.svg b/src/components/icons/svg/untitledui-icons/copy-03.svg new file mode 100644 index 000000000..eedae9c13 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/copy-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/copy-04.svg b/src/components/icons/svg/untitledui-icons/copy-04.svg new file mode 100644 index 000000000..775bccd22 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/copy-04.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/copy-05.svg b/src/components/icons/svg/untitledui-icons/copy-05.svg new file mode 100644 index 000000000..4610af6d8 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/copy-05.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/copy-06.svg b/src/components/icons/svg/untitledui-icons/copy-06.svg new file mode 100644 index 000000000..2becad3c2 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/copy-06.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/copy-07.svg b/src/components/icons/svg/untitledui-icons/copy-07.svg new file mode 100644 index 000000000..8061b5004 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/copy-07.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/corner-down-left.svg b/src/components/icons/svg/untitledui-icons/corner-down-left.svg new file mode 100644 index 000000000..941bd0f46 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/corner-down-left.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/corner-down-right.svg b/src/components/icons/svg/untitledui-icons/corner-down-right.svg new file mode 100644 index 000000000..e4c8773d2 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/corner-down-right.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/corner-left-down.svg b/src/components/icons/svg/untitledui-icons/corner-left-down.svg new file mode 100644 index 000000000..5e91c9d7a --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/corner-left-down.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/corner-left-up.svg b/src/components/icons/svg/untitledui-icons/corner-left-up.svg new file mode 100644 index 000000000..b4beea928 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/corner-left-up.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/corner-right-down.svg b/src/components/icons/svg/untitledui-icons/corner-right-down.svg new file mode 100644 index 000000000..9f7e7acb6 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/corner-right-down.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/corner-right-up.svg b/src/components/icons/svg/untitledui-icons/corner-right-up.svg new file mode 100644 index 000000000..e3c4b30d7 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/corner-right-up.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/corner-up-left.svg b/src/components/icons/svg/untitledui-icons/corner-up-left.svg new file mode 100644 index 000000000..9145a8173 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/corner-up-left.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/corner-up-right.svg b/src/components/icons/svg/untitledui-icons/corner-up-right.svg new file mode 100644 index 000000000..2e1fa83b9 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/corner-up-right.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/cpu-chip-01.svg b/src/components/icons/svg/untitledui-icons/cpu-chip-01.svg new file mode 100644 index 000000000..5e9417b17 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/cpu-chip-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/cpu-chip-02.svg b/src/components/icons/svg/untitledui-icons/cpu-chip-02.svg new file mode 100644 index 000000000..481d06d2f --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/cpu-chip-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/credit-card-01.svg b/src/components/icons/svg/untitledui-icons/credit-card-01.svg new file mode 100644 index 000000000..4d02d1b31 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/credit-card-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/credit-card-02.svg b/src/components/icons/svg/untitledui-icons/credit-card-02.svg new file mode 100644 index 000000000..dd509d186 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/credit-card-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/credit-card-check.svg b/src/components/icons/svg/untitledui-icons/credit-card-check.svg new file mode 100644 index 000000000..3d2f9e339 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/credit-card-check.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/credit-card-down.svg b/src/components/icons/svg/untitledui-icons/credit-card-down.svg new file mode 100644 index 000000000..9e8b0fd0d --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/credit-card-down.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/credit-card-download.svg b/src/components/icons/svg/untitledui-icons/credit-card-download.svg new file mode 100644 index 000000000..b06962e2a --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/credit-card-download.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/credit-card-edit.svg b/src/components/icons/svg/untitledui-icons/credit-card-edit.svg new file mode 100644 index 000000000..648f29f20 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/credit-card-edit.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/credit-card-lock.svg b/src/components/icons/svg/untitledui-icons/credit-card-lock.svg new file mode 100644 index 000000000..365aecbb4 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/credit-card-lock.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/credit-card-minus.svg b/src/components/icons/svg/untitledui-icons/credit-card-minus.svg new file mode 100644 index 000000000..7ec52a307 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/credit-card-minus.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/credit-card-plus.svg b/src/components/icons/svg/untitledui-icons/credit-card-plus.svg new file mode 100644 index 000000000..3855bb9cd --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/credit-card-plus.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/credit-card-refresh.svg b/src/components/icons/svg/untitledui-icons/credit-card-refresh.svg new file mode 100644 index 000000000..f18657cbb --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/credit-card-refresh.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/credit-card-search.svg b/src/components/icons/svg/untitledui-icons/credit-card-search.svg new file mode 100644 index 000000000..c38f24bb6 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/credit-card-search.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/credit-card-shield.svg b/src/components/icons/svg/untitledui-icons/credit-card-shield.svg new file mode 100644 index 000000000..08e046cae --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/credit-card-shield.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/credit-card-up.svg b/src/components/icons/svg/untitledui-icons/credit-card-up.svg new file mode 100644 index 000000000..63b374405 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/credit-card-up.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/credit-card-upload.svg b/src/components/icons/svg/untitledui-icons/credit-card-upload.svg new file mode 100644 index 000000000..656d785d0 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/credit-card-upload.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/credit-card-x.svg b/src/components/icons/svg/untitledui-icons/credit-card-x.svg new file mode 100644 index 000000000..003f2510f --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/credit-card-x.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/crop-01.svg b/src/components/icons/svg/untitledui-icons/crop-01.svg new file mode 100644 index 000000000..7e8856bcb --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/crop-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/crop-02.svg b/src/components/icons/svg/untitledui-icons/crop-02.svg new file mode 100644 index 000000000..0a759034c --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/crop-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/cryptocurrency-01.svg b/src/components/icons/svg/untitledui-icons/cryptocurrency-01.svg new file mode 100644 index 000000000..91dd59876 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/cryptocurrency-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/cryptocurrency-02.svg b/src/components/icons/svg/untitledui-icons/cryptocurrency-02.svg new file mode 100644 index 000000000..bd1e980fe --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/cryptocurrency-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/cryptocurrency-03.svg b/src/components/icons/svg/untitledui-icons/cryptocurrency-03.svg new file mode 100644 index 000000000..2061d28e7 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/cryptocurrency-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/cryptocurrency-04.svg b/src/components/icons/svg/untitledui-icons/cryptocurrency-04.svg new file mode 100644 index 000000000..e9244798f --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/cryptocurrency-04.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/cube-01.svg b/src/components/icons/svg/untitledui-icons/cube-01.svg new file mode 100644 index 000000000..3f1262e1e --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/cube-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/cube-02.svg b/src/components/icons/svg/untitledui-icons/cube-02.svg new file mode 100644 index 000000000..a1b18cf92 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/cube-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/cube-03.svg b/src/components/icons/svg/untitledui-icons/cube-03.svg new file mode 100644 index 000000000..f07a5a1d3 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/cube-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/cube-04.svg b/src/components/icons/svg/untitledui-icons/cube-04.svg new file mode 100644 index 000000000..5af84fc0c --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/cube-04.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/cube-outline.svg b/src/components/icons/svg/untitledui-icons/cube-outline.svg new file mode 100644 index 000000000..3e80c8bcf --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/cube-outline.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/currency-bitcoin-circle.svg b/src/components/icons/svg/untitledui-icons/currency-bitcoin-circle.svg new file mode 100644 index 000000000..cbe0b526c --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/currency-bitcoin-circle.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/currency-bitcoin.svg b/src/components/icons/svg/untitledui-icons/currency-bitcoin.svg new file mode 100644 index 000000000..7485050a2 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/currency-bitcoin.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/currency-dollar-circle.svg b/src/components/icons/svg/untitledui-icons/currency-dollar-circle.svg new file mode 100644 index 000000000..017ca542b --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/currency-dollar-circle.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/currency-dollar.svg b/src/components/icons/svg/untitledui-icons/currency-dollar.svg new file mode 100644 index 000000000..47bbd578f --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/currency-dollar.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/currency-ethereum-circle.svg b/src/components/icons/svg/untitledui-icons/currency-ethereum-circle.svg new file mode 100644 index 000000000..ac89da586 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/currency-ethereum-circle.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/currency-ethereum.svg b/src/components/icons/svg/untitledui-icons/currency-ethereum.svg new file mode 100644 index 000000000..4777ee7bb --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/currency-ethereum.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/currency-euro-circle.svg b/src/components/icons/svg/untitledui-icons/currency-euro-circle.svg new file mode 100644 index 000000000..bd58961d9 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/currency-euro-circle.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/currency-euro.svg b/src/components/icons/svg/untitledui-icons/currency-euro.svg new file mode 100644 index 000000000..04288e4b1 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/currency-euro.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/currency-pound-circle.svg b/src/components/icons/svg/untitledui-icons/currency-pound-circle.svg new file mode 100644 index 000000000..26ea96bed --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/currency-pound-circle.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/currency-pound.svg b/src/components/icons/svg/untitledui-icons/currency-pound.svg new file mode 100644 index 000000000..42c4a9527 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/currency-pound.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/currency-ruble-circle.svg b/src/components/icons/svg/untitledui-icons/currency-ruble-circle.svg new file mode 100644 index 000000000..1a90563dc --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/currency-ruble-circle.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/currency-ruble.svg b/src/components/icons/svg/untitledui-icons/currency-ruble.svg new file mode 100644 index 000000000..9fbb162d3 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/currency-ruble.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/currency-rupee-circle.svg b/src/components/icons/svg/untitledui-icons/currency-rupee-circle.svg new file mode 100644 index 000000000..d41c2b14e --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/currency-rupee-circle.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/currency-rupee.svg b/src/components/icons/svg/untitledui-icons/currency-rupee.svg new file mode 100644 index 000000000..135401191 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/currency-rupee.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/currency-yen-circle.svg b/src/components/icons/svg/untitledui-icons/currency-yen-circle.svg new file mode 100644 index 000000000..4eda93265 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/currency-yen-circle.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/currency-yen.svg b/src/components/icons/svg/untitledui-icons/currency-yen.svg new file mode 100644 index 000000000..1d0596f61 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/currency-yen.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/cursor-01.svg b/src/components/icons/svg/untitledui-icons/cursor-01.svg new file mode 100644 index 000000000..b057b9b4e --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/cursor-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/cursor-02.svg b/src/components/icons/svg/untitledui-icons/cursor-02.svg new file mode 100644 index 000000000..5e17f6c2f --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/cursor-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/cursor-03.svg b/src/components/icons/svg/untitledui-icons/cursor-03.svg new file mode 100644 index 000000000..39de06d43 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/cursor-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/cursor-04.svg b/src/components/icons/svg/untitledui-icons/cursor-04.svg new file mode 100644 index 000000000..c955cd151 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/cursor-04.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/cursor-box.svg b/src/components/icons/svg/untitledui-icons/cursor-box.svg new file mode 100644 index 000000000..a2ae4f6c1 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/cursor-box.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/cursor-click-01.svg b/src/components/icons/svg/untitledui-icons/cursor-click-01.svg new file mode 100644 index 000000000..ca29bc2cb --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/cursor-click-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/cursor-click-02.svg b/src/components/icons/svg/untitledui-icons/cursor-click-02.svg new file mode 100644 index 000000000..75b36aae1 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/cursor-click-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/data.svg b/src/components/icons/svg/untitledui-icons/data.svg new file mode 100644 index 000000000..0a9c9ed96 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/data.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/components/icons/svg/untitledui-icons/database-01.svg b/src/components/icons/svg/untitledui-icons/database-01.svg new file mode 100644 index 000000000..afb58f263 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/database-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/database-02.svg b/src/components/icons/svg/untitledui-icons/database-02.svg new file mode 100644 index 000000000..38597ecaf --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/database-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/database-03.svg b/src/components/icons/svg/untitledui-icons/database-03.svg new file mode 100644 index 000000000..0e3e741be --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/database-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/dataflow-01.svg b/src/components/icons/svg/untitledui-icons/dataflow-01.svg new file mode 100644 index 000000000..86524a134 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/dataflow-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/dataflow-02.svg b/src/components/icons/svg/untitledui-icons/dataflow-02.svg new file mode 100644 index 000000000..d85c1aed3 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/dataflow-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/dataflow-03.svg b/src/components/icons/svg/untitledui-icons/dataflow-03.svg new file mode 100644 index 000000000..e612081e4 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/dataflow-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/dataflow-04.svg b/src/components/icons/svg/untitledui-icons/dataflow-04.svg new file mode 100644 index 000000000..5dddbea6c --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/dataflow-04.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/delete.svg b/src/components/icons/svg/untitledui-icons/delete.svg new file mode 100644 index 000000000..967378268 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/delete.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/diamond-01.svg b/src/components/icons/svg/untitledui-icons/diamond-01.svg new file mode 100644 index 000000000..f824fd85f --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/diamond-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/diamond-02.svg b/src/components/icons/svg/untitledui-icons/diamond-02.svg new file mode 100644 index 000000000..8197ed624 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/diamond-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/dice-1.svg b/src/components/icons/svg/untitledui-icons/dice-1.svg new file mode 100644 index 000000000..6a12fdd6b --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/dice-1.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/dice-2.svg b/src/components/icons/svg/untitledui-icons/dice-2.svg new file mode 100644 index 000000000..e5356c451 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/dice-2.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/dice-3.svg b/src/components/icons/svg/untitledui-icons/dice-3.svg new file mode 100644 index 000000000..17fd2d431 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/dice-3.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/dice-4.svg b/src/components/icons/svg/untitledui-icons/dice-4.svg new file mode 100644 index 000000000..d0923ae3b --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/dice-4.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/dice-5.svg b/src/components/icons/svg/untitledui-icons/dice-5.svg new file mode 100644 index 000000000..52f0e39d9 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/dice-5.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/dice-6.svg b/src/components/icons/svg/untitledui-icons/dice-6.svg new file mode 100644 index 000000000..afe53fef6 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/dice-6.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/disc-01.svg b/src/components/icons/svg/untitledui-icons/disc-01.svg new file mode 100644 index 000000000..e5418eb11 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/disc-01.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/components/icons/svg/untitledui-icons/disc-02.svg b/src/components/icons/svg/untitledui-icons/disc-02.svg new file mode 100644 index 000000000..08932fd9c --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/disc-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/distribute-spacing-horizontal.svg b/src/components/icons/svg/untitledui-icons/distribute-spacing-horizontal.svg new file mode 100644 index 000000000..a1af5388d --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/distribute-spacing-horizontal.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/distribute-spacing-vertical.svg b/src/components/icons/svg/untitledui-icons/distribute-spacing-vertical.svg new file mode 100644 index 000000000..cac3b9e78 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/distribute-spacing-vertical.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/divide-01.svg b/src/components/icons/svg/untitledui-icons/divide-01.svg new file mode 100644 index 000000000..1ece78273 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/divide-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/divide-02.svg b/src/components/icons/svg/untitledui-icons/divide-02.svg new file mode 100644 index 000000000..32e2a79db --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/divide-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/divide-03.svg b/src/components/icons/svg/untitledui-icons/divide-03.svg new file mode 100644 index 000000000..52ed9da96 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/divide-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/divider.svg b/src/components/icons/svg/untitledui-icons/divider.svg new file mode 100644 index 000000000..a3a26aee6 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/divider.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/dotpoints-01.svg b/src/components/icons/svg/untitledui-icons/dotpoints-01.svg new file mode 100644 index 000000000..2340faac8 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/dotpoints-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/dotpoints-02.svg b/src/components/icons/svg/untitledui-icons/dotpoints-02.svg new file mode 100644 index 000000000..ec393e132 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/dotpoints-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/dots-grid.svg b/src/components/icons/svg/untitledui-icons/dots-grid.svg new file mode 100644 index 000000000..e10bba5d9 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/dots-grid.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/components/icons/svg/untitledui-icons/dots-horizontal.svg b/src/components/icons/svg/untitledui-icons/dots-horizontal.svg new file mode 100644 index 000000000..154571717 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/dots-horizontal.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/components/icons/svg/untitledui-icons/dots-vertical.svg b/src/components/icons/svg/untitledui-icons/dots-vertical.svg new file mode 100644 index 000000000..7c95d1200 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/dots-vertical.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/components/icons/svg/untitledui-icons/download-01.svg b/src/components/icons/svg/untitledui-icons/download-01.svg new file mode 100644 index 000000000..cd8a6cba4 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/download-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/download-02.svg b/src/components/icons/svg/untitledui-icons/download-02.svg new file mode 100644 index 000000000..0ad6d8b1f --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/download-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/download-03.svg b/src/components/icons/svg/untitledui-icons/download-03.svg new file mode 100644 index 000000000..08d63caec --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/download-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/download-04.svg b/src/components/icons/svg/untitledui-icons/download-04.svg new file mode 100644 index 000000000..85052bc8e --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/download-04.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/download-cloud-01.svg b/src/components/icons/svg/untitledui-icons/download-cloud-01.svg new file mode 100644 index 000000000..3f6682122 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/download-cloud-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/download-cloud-02.svg b/src/components/icons/svg/untitledui-icons/download-cloud-02.svg new file mode 100644 index 000000000..1d505a06c --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/download-cloud-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/drop.svg b/src/components/icons/svg/untitledui-icons/drop.svg new file mode 100644 index 000000000..7ef53333c --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/drop.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/droplets-01.svg b/src/components/icons/svg/untitledui-icons/droplets-01.svg new file mode 100644 index 000000000..310ea55a1 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/droplets-01.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/components/icons/svg/untitledui-icons/droplets-02.svg b/src/components/icons/svg/untitledui-icons/droplets-02.svg new file mode 100644 index 000000000..d6bb25dd7 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/droplets-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/droplets-03.svg b/src/components/icons/svg/untitledui-icons/droplets-03.svg new file mode 100644 index 000000000..cf5843863 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/droplets-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/dropper.svg b/src/components/icons/svg/untitledui-icons/dropper.svg new file mode 100644 index 000000000..b096e74d3 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/dropper.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/edit-01.svg b/src/components/icons/svg/untitledui-icons/edit-01.svg new file mode 100644 index 000000000..a8ea88af8 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/edit-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/edit-02.svg b/src/components/icons/svg/untitledui-icons/edit-02.svg new file mode 100644 index 000000000..929a0f549 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/edit-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/edit-03.svg b/src/components/icons/svg/untitledui-icons/edit-03.svg new file mode 100644 index 000000000..ea44a179b --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/edit-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/edit-04.svg b/src/components/icons/svg/untitledui-icons/edit-04.svg new file mode 100644 index 000000000..931893044 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/edit-04.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/edit-05.svg b/src/components/icons/svg/untitledui-icons/edit-05.svg new file mode 100644 index 000000000..031dd7ae7 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/edit-05.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/equal-not.svg b/src/components/icons/svg/untitledui-icons/equal-not.svg new file mode 100644 index 000000000..89cfa17bf --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/equal-not.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/equal.svg b/src/components/icons/svg/untitledui-icons/equal.svg new file mode 100644 index 000000000..ae27e8573 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/equal.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/eraser.svg b/src/components/icons/svg/untitledui-icons/eraser.svg new file mode 100644 index 000000000..fa379a7a0 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/eraser.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/expand-01.svg b/src/components/icons/svg/untitledui-icons/expand-01.svg new file mode 100644 index 000000000..d1f38b420 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/expand-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/expand-02.svg b/src/components/icons/svg/untitledui-icons/expand-02.svg new file mode 100644 index 000000000..50f79fd25 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/expand-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/expand-03.svg b/src/components/icons/svg/untitledui-icons/expand-03.svg new file mode 100644 index 000000000..5475b0ae0 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/expand-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/expand-04.svg b/src/components/icons/svg/untitledui-icons/expand-04.svg new file mode 100644 index 000000000..ff3a5193c --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/expand-04.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/expand-05.svg b/src/components/icons/svg/untitledui-icons/expand-05.svg new file mode 100644 index 000000000..ec829e241 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/expand-05.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/expand-06.svg b/src/components/icons/svg/untitledui-icons/expand-06.svg new file mode 100644 index 000000000..9bdf7fa7b --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/expand-06.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/eye-off.svg b/src/components/icons/svg/untitledui-icons/eye-off.svg new file mode 100644 index 000000000..8a7f5671e --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/eye-off.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/eye.svg b/src/components/icons/svg/untitledui-icons/eye.svg new file mode 100644 index 000000000..21b722f13 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/eye.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/components/icons/svg/untitledui-icons/face-content.svg b/src/components/icons/svg/untitledui-icons/face-content.svg new file mode 100644 index 000000000..7696ae6dc --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/face-content.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/face-frown.svg b/src/components/icons/svg/untitledui-icons/face-frown.svg new file mode 100644 index 000000000..d6e58fe7a --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/face-frown.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/face-happy.svg b/src/components/icons/svg/untitledui-icons/face-happy.svg new file mode 100644 index 000000000..5c9734a10 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/face-happy.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/face-id-square.svg b/src/components/icons/svg/untitledui-icons/face-id-square.svg new file mode 100644 index 000000000..0abd21b9b --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/face-id-square.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/face-id.svg b/src/components/icons/svg/untitledui-icons/face-id.svg new file mode 100644 index 000000000..990912232 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/face-id.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/face-neutral.svg b/src/components/icons/svg/untitledui-icons/face-neutral.svg new file mode 100644 index 000000000..67dac7b57 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/face-neutral.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/face-sad.svg b/src/components/icons/svg/untitledui-icons/face-sad.svg new file mode 100644 index 000000000..93cb45b12 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/face-sad.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/face-smile.svg b/src/components/icons/svg/untitledui-icons/face-smile.svg new file mode 100644 index 000000000..1f9cef0fd --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/face-smile.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/face-wink.svg b/src/components/icons/svg/untitledui-icons/face-wink.svg new file mode 100644 index 000000000..bb4c0f8c0 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/face-wink.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/fast-backward.svg b/src/components/icons/svg/untitledui-icons/fast-backward.svg new file mode 100644 index 000000000..740f11aac --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/fast-backward.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/components/icons/svg/untitledui-icons/fast-forward.svg b/src/components/icons/svg/untitledui-icons/fast-forward.svg new file mode 100644 index 000000000..bca34525b --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/fast-forward.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/components/icons/svg/untitledui-icons/feather.svg b/src/components/icons/svg/untitledui-icons/feather.svg new file mode 100644 index 000000000..779fc6cd6 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/feather.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/figma.svg b/src/components/icons/svg/untitledui-icons/figma.svg new file mode 100644 index 000000000..578629238 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/figma.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/file-01.svg b/src/components/icons/svg/untitledui-icons/file-01.svg new file mode 100644 index 000000000..f34a1b0e6 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/file-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/file-02.svg b/src/components/icons/svg/untitledui-icons/file-02.svg new file mode 100644 index 000000000..d36458de2 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/file-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/file-03.svg b/src/components/icons/svg/untitledui-icons/file-03.svg new file mode 100644 index 000000000..91b764870 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/file-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/file-04.svg b/src/components/icons/svg/untitledui-icons/file-04.svg new file mode 100644 index 000000000..782090f04 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/file-04.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/file-05.svg b/src/components/icons/svg/untitledui-icons/file-05.svg new file mode 100644 index 000000000..ba0bb53a1 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/file-05.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/file-06.svg b/src/components/icons/svg/untitledui-icons/file-06.svg new file mode 100644 index 000000000..333371ee5 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/file-06.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/file-07.svg b/src/components/icons/svg/untitledui-icons/file-07.svg new file mode 100644 index 000000000..ebc28180d --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/file-07.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/file-attachment-01.svg b/src/components/icons/svg/untitledui-icons/file-attachment-01.svg new file mode 100644 index 000000000..7517d27bb --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/file-attachment-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/file-attachment-02.svg b/src/components/icons/svg/untitledui-icons/file-attachment-02.svg new file mode 100644 index 000000000..3ccc08336 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/file-attachment-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/file-attachment-03.svg b/src/components/icons/svg/untitledui-icons/file-attachment-03.svg new file mode 100644 index 000000000..3b7819455 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/file-attachment-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/file-attachment-04.svg b/src/components/icons/svg/untitledui-icons/file-attachment-04.svg new file mode 100644 index 000000000..56897544a --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/file-attachment-04.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/file-attachment-05.svg b/src/components/icons/svg/untitledui-icons/file-attachment-05.svg new file mode 100644 index 000000000..4e719b1af --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/file-attachment-05.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/file-check-01.svg b/src/components/icons/svg/untitledui-icons/file-check-01.svg new file mode 100644 index 000000000..ffe6a1b84 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/file-check-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/file-check-02.svg b/src/components/icons/svg/untitledui-icons/file-check-02.svg new file mode 100644 index 000000000..81a203e7d --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/file-check-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/file-check-03.svg b/src/components/icons/svg/untitledui-icons/file-check-03.svg new file mode 100644 index 000000000..e6aefecc5 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/file-check-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/file-code-01.svg b/src/components/icons/svg/untitledui-icons/file-code-01.svg new file mode 100644 index 000000000..9968bfa06 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/file-code-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/file-code-02.svg b/src/components/icons/svg/untitledui-icons/file-code-02.svg new file mode 100644 index 000000000..386dffbf5 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/file-code-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/file-download-01.svg b/src/components/icons/svg/untitledui-icons/file-download-01.svg new file mode 100644 index 000000000..e60136179 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/file-download-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/file-download-02.svg b/src/components/icons/svg/untitledui-icons/file-download-02.svg new file mode 100644 index 000000000..e96132bbb --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/file-download-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/file-download-03.svg b/src/components/icons/svg/untitledui-icons/file-download-03.svg new file mode 100644 index 000000000..8065b1a29 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/file-download-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/file-heart-01.svg b/src/components/icons/svg/untitledui-icons/file-heart-01.svg new file mode 100644 index 000000000..59ef95a20 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/file-heart-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/file-heart-02.svg b/src/components/icons/svg/untitledui-icons/file-heart-02.svg new file mode 100644 index 000000000..a8ce4770f --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/file-heart-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/file-heart-03.svg b/src/components/icons/svg/untitledui-icons/file-heart-03.svg new file mode 100644 index 000000000..695c9083b --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/file-heart-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/file-lock-01.svg b/src/components/icons/svg/untitledui-icons/file-lock-01.svg new file mode 100644 index 000000000..e1f8ddc53 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/file-lock-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/file-lock-02.svg b/src/components/icons/svg/untitledui-icons/file-lock-02.svg new file mode 100644 index 000000000..312eb680c --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/file-lock-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/file-lock-03.svg b/src/components/icons/svg/untitledui-icons/file-lock-03.svg new file mode 100644 index 000000000..a2b9c514d --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/file-lock-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/file-minus-01.svg b/src/components/icons/svg/untitledui-icons/file-minus-01.svg new file mode 100644 index 000000000..17069a482 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/file-minus-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/file-minus-02.svg b/src/components/icons/svg/untitledui-icons/file-minus-02.svg new file mode 100644 index 000000000..ee9a1bdd0 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/file-minus-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/file-minus-03.svg b/src/components/icons/svg/untitledui-icons/file-minus-03.svg new file mode 100644 index 000000000..20e0f0334 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/file-minus-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/file-plus-01.svg b/src/components/icons/svg/untitledui-icons/file-plus-01.svg new file mode 100644 index 000000000..47544c6e4 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/file-plus-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/file-plus-02.svg b/src/components/icons/svg/untitledui-icons/file-plus-02.svg new file mode 100644 index 000000000..972f49ca5 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/file-plus-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/file-plus-03.svg b/src/components/icons/svg/untitledui-icons/file-plus-03.svg new file mode 100644 index 000000000..b752444db --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/file-plus-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/file-question-01.svg b/src/components/icons/svg/untitledui-icons/file-question-01.svg new file mode 100644 index 000000000..38fca8196 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/file-question-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/file-question-02.svg b/src/components/icons/svg/untitledui-icons/file-question-02.svg new file mode 100644 index 000000000..8267d35b9 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/file-question-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/file-question-03.svg b/src/components/icons/svg/untitledui-icons/file-question-03.svg new file mode 100644 index 000000000..d41f2c53e --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/file-question-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/file-search-01.svg b/src/components/icons/svg/untitledui-icons/file-search-01.svg new file mode 100644 index 000000000..85570ff6c --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/file-search-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/file-search-02.svg b/src/components/icons/svg/untitledui-icons/file-search-02.svg new file mode 100644 index 000000000..72982f284 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/file-search-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/file-search-03.svg b/src/components/icons/svg/untitledui-icons/file-search-03.svg new file mode 100644 index 000000000..4e0109154 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/file-search-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/file-shield-01.svg b/src/components/icons/svg/untitledui-icons/file-shield-01.svg new file mode 100644 index 000000000..8e5714270 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/file-shield-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/file-shield-02.svg b/src/components/icons/svg/untitledui-icons/file-shield-02.svg new file mode 100644 index 000000000..41b152439 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/file-shield-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/file-shield-03.svg b/src/components/icons/svg/untitledui-icons/file-shield-03.svg new file mode 100644 index 000000000..7a5b885f3 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/file-shield-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/file-x-01.svg b/src/components/icons/svg/untitledui-icons/file-x-01.svg new file mode 100644 index 000000000..4b8ea25c4 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/file-x-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/file-x-02.svg b/src/components/icons/svg/untitledui-icons/file-x-02.svg new file mode 100644 index 000000000..14875dbc6 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/file-x-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/file-x-03.svg b/src/components/icons/svg/untitledui-icons/file-x-03.svg new file mode 100644 index 000000000..7c3a67af1 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/file-x-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/film-01.svg b/src/components/icons/svg/untitledui-icons/film-01.svg new file mode 100644 index 000000000..c55b31cc3 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/film-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/film-02.svg b/src/components/icons/svg/untitledui-icons/film-02.svg new file mode 100644 index 000000000..3e06728ef --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/film-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/film-03.svg b/src/components/icons/svg/untitledui-icons/film-03.svg new file mode 100644 index 000000000..53e764895 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/film-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/filter-funnel-01.svg b/src/components/icons/svg/untitledui-icons/filter-funnel-01.svg new file mode 100644 index 000000000..d8f81e7cb --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/filter-funnel-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/filter-funnel-02.svg b/src/components/icons/svg/untitledui-icons/filter-funnel-02.svg new file mode 100644 index 000000000..7e8d41986 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/filter-funnel-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/filter-lines.svg b/src/components/icons/svg/untitledui-icons/filter-lines.svg new file mode 100644 index 000000000..4480d499a --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/filter-lines.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/fingerprint-01.svg b/src/components/icons/svg/untitledui-icons/fingerprint-01.svg new file mode 100644 index 000000000..5993fe954 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/fingerprint-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/fingerprint-02.svg b/src/components/icons/svg/untitledui-icons/fingerprint-02.svg new file mode 100644 index 000000000..43e6c3ae1 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/fingerprint-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/fingerprint-03.svg b/src/components/icons/svg/untitledui-icons/fingerprint-03.svg new file mode 100644 index 000000000..ac0a88cd4 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/fingerprint-03.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/components/icons/svg/untitledui-icons/fingerprint-04.svg b/src/components/icons/svg/untitledui-icons/fingerprint-04.svg new file mode 100644 index 000000000..4008fb149 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/fingerprint-04.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/flag-01.svg b/src/components/icons/svg/untitledui-icons/flag-01.svg new file mode 100644 index 000000000..a417d4366 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/flag-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/flag-02.svg b/src/components/icons/svg/untitledui-icons/flag-02.svg new file mode 100644 index 000000000..d0565e646 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/flag-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/flag-03.svg b/src/components/icons/svg/untitledui-icons/flag-03.svg new file mode 100644 index 000000000..804280934 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/flag-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/flag-04.svg b/src/components/icons/svg/untitledui-icons/flag-04.svg new file mode 100644 index 000000000..5a0050d49 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/flag-04.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/flag-05.svg b/src/components/icons/svg/untitledui-icons/flag-05.svg new file mode 100644 index 000000000..6e76aab0c --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/flag-05.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/flag-06.svg b/src/components/icons/svg/untitledui-icons/flag-06.svg new file mode 100644 index 000000000..d3dd64f8e --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/flag-06.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/flash-off.svg b/src/components/icons/svg/untitledui-icons/flash-off.svg new file mode 100644 index 000000000..5a5dd8559 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/flash-off.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/flash.svg b/src/components/icons/svg/untitledui-icons/flash.svg new file mode 100644 index 000000000..0e5bc8cc6 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/flash.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/flex-align-bottom.svg b/src/components/icons/svg/untitledui-icons/flex-align-bottom.svg new file mode 100644 index 000000000..7724531c9 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/flex-align-bottom.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/flex-align-left.svg b/src/components/icons/svg/untitledui-icons/flex-align-left.svg new file mode 100644 index 000000000..0f7ccc047 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/flex-align-left.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/flex-align-right.svg b/src/components/icons/svg/untitledui-icons/flex-align-right.svg new file mode 100644 index 000000000..418bdece7 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/flex-align-right.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/flex-align-top.svg b/src/components/icons/svg/untitledui-icons/flex-align-top.svg new file mode 100644 index 000000000..cfca2f4eb --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/flex-align-top.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/flip-backward.svg b/src/components/icons/svg/untitledui-icons/flip-backward.svg new file mode 100644 index 000000000..f5d8da0c7 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/flip-backward.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/flip-forward.svg b/src/components/icons/svg/untitledui-icons/flip-forward.svg new file mode 100644 index 000000000..1ef4602ba --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/flip-forward.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/folder-check.svg b/src/components/icons/svg/untitledui-icons/folder-check.svg new file mode 100644 index 000000000..57fe39914 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/folder-check.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/folder-closed.svg b/src/components/icons/svg/untitledui-icons/folder-closed.svg new file mode 100644 index 000000000..beed224ef --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/folder-closed.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/folder-code.svg b/src/components/icons/svg/untitledui-icons/folder-code.svg new file mode 100644 index 000000000..84f60027d --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/folder-code.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/folder-download.svg b/src/components/icons/svg/untitledui-icons/folder-download.svg new file mode 100644 index 000000000..e6fe1502d --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/folder-download.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/folder-lock.svg b/src/components/icons/svg/untitledui-icons/folder-lock.svg new file mode 100644 index 000000000..bb1157606 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/folder-lock.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/folder-minus.svg b/src/components/icons/svg/untitledui-icons/folder-minus.svg new file mode 100644 index 000000000..8862d6ef6 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/folder-minus.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/folder-plus.svg b/src/components/icons/svg/untitledui-icons/folder-plus.svg new file mode 100644 index 000000000..a270dacb1 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/folder-plus.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/folder-question.svg b/src/components/icons/svg/untitledui-icons/folder-question.svg new file mode 100644 index 000000000..1c58c26f4 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/folder-question.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/folder-search.svg b/src/components/icons/svg/untitledui-icons/folder-search.svg new file mode 100644 index 000000000..4455b8943 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/folder-search.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/folder-shield.svg b/src/components/icons/svg/untitledui-icons/folder-shield.svg new file mode 100644 index 000000000..613b38ab9 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/folder-shield.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/folder-x.svg b/src/components/icons/svg/untitledui-icons/folder-x.svg new file mode 100644 index 000000000..0b261098e --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/folder-x.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/folder.svg b/src/components/icons/svg/untitledui-icons/folder.svg new file mode 100644 index 000000000..069fc493c --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/folder.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/framer.svg b/src/components/icons/svg/untitledui-icons/framer.svg new file mode 100644 index 000000000..51b74c3a4 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/framer.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/gaming-pad-01.svg b/src/components/icons/svg/untitledui-icons/gaming-pad-01.svg new file mode 100644 index 000000000..9f8846047 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/gaming-pad-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/gaming-pad-02.svg b/src/components/icons/svg/untitledui-icons/gaming-pad-02.svg new file mode 100644 index 000000000..47386a5e6 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/gaming-pad-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/gift-01.svg b/src/components/icons/svg/untitledui-icons/gift-01.svg new file mode 100644 index 000000000..767cb663a --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/gift-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/gift-02.svg b/src/components/icons/svg/untitledui-icons/gift-02.svg new file mode 100644 index 000000000..4bb8ea585 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/gift-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/git-branch-01.svg b/src/components/icons/svg/untitledui-icons/git-branch-01.svg new file mode 100644 index 000000000..23a366ca8 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/git-branch-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/git-branch-02.svg b/src/components/icons/svg/untitledui-icons/git-branch-02.svg new file mode 100644 index 000000000..b7667deee --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/git-branch-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/git-commit.svg b/src/components/icons/svg/untitledui-icons/git-commit.svg new file mode 100644 index 000000000..06a406d18 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/git-commit.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/git-merge.svg b/src/components/icons/svg/untitledui-icons/git-merge.svg new file mode 100644 index 000000000..7f5de2981 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/git-merge.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/git-pull-request.svg b/src/components/icons/svg/untitledui-icons/git-pull-request.svg new file mode 100644 index 000000000..67bc227dd --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/git-pull-request.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/glasses-01.svg b/src/components/icons/svg/untitledui-icons/glasses-01.svg new file mode 100644 index 000000000..fd4446841 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/glasses-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/glasses-02.svg b/src/components/icons/svg/untitledui-icons/glasses-02.svg new file mode 100644 index 000000000..46f408667 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/glasses-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/globe-01.svg b/src/components/icons/svg/untitledui-icons/globe-01.svg new file mode 100644 index 000000000..f34efe4ad --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/globe-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/globe-02.svg b/src/components/icons/svg/untitledui-icons/globe-02.svg new file mode 100644 index 000000000..5f995168e --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/globe-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/globe-03.svg b/src/components/icons/svg/untitledui-icons/globe-03.svg new file mode 100644 index 000000000..b44229719 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/globe-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/globe-04.svg b/src/components/icons/svg/untitledui-icons/globe-04.svg new file mode 100644 index 000000000..936379818 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/globe-04.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/globe-05.svg b/src/components/icons/svg/untitledui-icons/globe-05.svg new file mode 100644 index 000000000..ac2148e8c --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/globe-05.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/globe-06.svg b/src/components/icons/svg/untitledui-icons/globe-06.svg new file mode 100644 index 000000000..41fa875f9 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/globe-06.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/globe-slated-01.svg b/src/components/icons/svg/untitledui-icons/globe-slated-01.svg new file mode 100644 index 000000000..e014865ef --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/globe-slated-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/globe-slated-02.svg b/src/components/icons/svg/untitledui-icons/globe-slated-02.svg new file mode 100644 index 000000000..f80b8641f --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/globe-slated-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/google-chrome.svg b/src/components/icons/svg/untitledui-icons/google-chrome.svg new file mode 100644 index 000000000..685495954 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/google-chrome.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/graduation-hat-01.svg b/src/components/icons/svg/untitledui-icons/graduation-hat-01.svg new file mode 100644 index 000000000..24898a36c --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/graduation-hat-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/graduation-hat-02.svg b/src/components/icons/svg/untitledui-icons/graduation-hat-02.svg new file mode 100644 index 000000000..b9b373a4a --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/graduation-hat-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/grid-01.svg b/src/components/icons/svg/untitledui-icons/grid-01.svg new file mode 100644 index 000000000..ce4c61bc5 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/grid-01.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/components/icons/svg/untitledui-icons/grid-02.svg b/src/components/icons/svg/untitledui-icons/grid-02.svg new file mode 100644 index 000000000..5901255ff --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/grid-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/grid-03.svg b/src/components/icons/svg/untitledui-icons/grid-03.svg new file mode 100644 index 000000000..bd1c1b031 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/grid-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/grid-dots-blank.svg b/src/components/icons/svg/untitledui-icons/grid-dots-blank.svg new file mode 100644 index 000000000..6923b4407 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/grid-dots-blank.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/grid-dots-bottom.svg b/src/components/icons/svg/untitledui-icons/grid-dots-bottom.svg new file mode 100644 index 000000000..0dfe96a44 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/grid-dots-bottom.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/grid-dots-horizontal-center.svg b/src/components/icons/svg/untitledui-icons/grid-dots-horizontal-center.svg new file mode 100644 index 000000000..c16be0978 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/grid-dots-horizontal-center.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/grid-dots-left.svg b/src/components/icons/svg/untitledui-icons/grid-dots-left.svg new file mode 100644 index 000000000..1c36a35d9 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/grid-dots-left.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/grid-dots-outer.svg b/src/components/icons/svg/untitledui-icons/grid-dots-outer.svg new file mode 100644 index 000000000..dae51a024 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/grid-dots-outer.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/grid-dots-right.svg b/src/components/icons/svg/untitledui-icons/grid-dots-right.svg new file mode 100644 index 000000000..662be1fed --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/grid-dots-right.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/grid-dots-top.svg b/src/components/icons/svg/untitledui-icons/grid-dots-top.svg new file mode 100644 index 000000000..7f189d614 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/grid-dots-top.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/grid-dots-vertical-center.svg b/src/components/icons/svg/untitledui-icons/grid-dots-vertical-center.svg new file mode 100644 index 000000000..ab64dd4c9 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/grid-dots-vertical-center.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/hand.svg b/src/components/icons/svg/untitledui-icons/hand.svg new file mode 100644 index 000000000..0725a0e17 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/hand.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/hard-drive.svg b/src/components/icons/svg/untitledui-icons/hard-drive.svg new file mode 100644 index 000000000..5ffe94587 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/hard-drive.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/hash-01.svg b/src/components/icons/svg/untitledui-icons/hash-01.svg new file mode 100644 index 000000000..158aa2fbc --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/hash-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/hash-02.svg b/src/components/icons/svg/untitledui-icons/hash-02.svg new file mode 100644 index 000000000..e3e50f068 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/hash-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/heading-01.svg b/src/components/icons/svg/untitledui-icons/heading-01.svg new file mode 100644 index 000000000..77bd622e2 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/heading-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/heading-02.svg b/src/components/icons/svg/untitledui-icons/heading-02.svg new file mode 100644 index 000000000..90c0ece3d --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/heading-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/heading-square.svg b/src/components/icons/svg/untitledui-icons/heading-square.svg new file mode 100644 index 000000000..5f491b8f0 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/heading-square.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/headphones-01.svg b/src/components/icons/svg/untitledui-icons/headphones-01.svg new file mode 100644 index 000000000..eefacfc27 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/headphones-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/headphones-02.svg b/src/components/icons/svg/untitledui-icons/headphones-02.svg new file mode 100644 index 000000000..b8b04e867 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/headphones-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/heart-circle.svg b/src/components/icons/svg/untitledui-icons/heart-circle.svg new file mode 100644 index 000000000..9296fba56 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/heart-circle.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/components/icons/svg/untitledui-icons/heart-hand.svg b/src/components/icons/svg/untitledui-icons/heart-hand.svg new file mode 100644 index 000000000..10a691519 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/heart-hand.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/heart-hexagon.svg b/src/components/icons/svg/untitledui-icons/heart-hexagon.svg new file mode 100644 index 000000000..93876843e --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/heart-hexagon.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/components/icons/svg/untitledui-icons/heart-octagon.svg b/src/components/icons/svg/untitledui-icons/heart-octagon.svg new file mode 100644 index 000000000..845a6381b --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/heart-octagon.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/components/icons/svg/untitledui-icons/heart-rounded.svg b/src/components/icons/svg/untitledui-icons/heart-rounded.svg new file mode 100644 index 000000000..0bc0b3c6c --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/heart-rounded.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/heart-square.svg b/src/components/icons/svg/untitledui-icons/heart-square.svg new file mode 100644 index 000000000..05d3a7466 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/heart-square.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/components/icons/svg/untitledui-icons/heart.svg b/src/components/icons/svg/untitledui-icons/heart.svg new file mode 100644 index 000000000..6d85a4032 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/heart.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/hearts.svg b/src/components/icons/svg/untitledui-icons/hearts.svg new file mode 100644 index 000000000..70cb7ee5c --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/hearts.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/help-circle.svg b/src/components/icons/svg/untitledui-icons/help-circle.svg new file mode 100644 index 000000000..7866838a0 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/help-circle.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/help-hexagon.svg b/src/components/icons/svg/untitledui-icons/help-hexagon.svg new file mode 100644 index 000000000..5aa28058e --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/help-hexagon.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/help-octagon.svg b/src/components/icons/svg/untitledui-icons/help-octagon.svg new file mode 100644 index 000000000..e2df5ce54 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/help-octagon.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/help-square.svg b/src/components/icons/svg/untitledui-icons/help-square.svg new file mode 100644 index 000000000..8ea3d0271 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/help-square.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/hexagon-01.svg b/src/components/icons/svg/untitledui-icons/hexagon-01.svg new file mode 100644 index 000000000..ac7a9e2b2 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/hexagon-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/hexagon-02.svg b/src/components/icons/svg/untitledui-icons/hexagon-02.svg new file mode 100644 index 000000000..40593b26e --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/hexagon-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/home-01.svg b/src/components/icons/svg/untitledui-icons/home-01.svg new file mode 100644 index 000000000..949970c75 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/home-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/home-02.svg b/src/components/icons/svg/untitledui-icons/home-02.svg new file mode 100644 index 000000000..71a325eac --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/home-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/home-03.svg b/src/components/icons/svg/untitledui-icons/home-03.svg new file mode 100644 index 000000000..f00df1d88 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/home-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/home-04.svg b/src/components/icons/svg/untitledui-icons/home-04.svg new file mode 100644 index 000000000..ba3dacf12 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/home-04.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/components/icons/svg/untitledui-icons/home-05.svg b/src/components/icons/svg/untitledui-icons/home-05.svg new file mode 100644 index 000000000..ec0fba0f9 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/home-05.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/home-line.svg b/src/components/icons/svg/untitledui-icons/home-line.svg new file mode 100644 index 000000000..bebe293c5 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/home-line.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/home-smile.svg b/src/components/icons/svg/untitledui-icons/home-smile.svg new file mode 100644 index 000000000..9c6119e4b --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/home-smile.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/horizontal-bar-chart-01.svg b/src/components/icons/svg/untitledui-icons/horizontal-bar-chart-01.svg new file mode 100644 index 000000000..0b096cae0 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/horizontal-bar-chart-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/horizontal-bar-chart-02.svg b/src/components/icons/svg/untitledui-icons/horizontal-bar-chart-02.svg new file mode 100644 index 000000000..5758afe5e --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/horizontal-bar-chart-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/horizontal-bar-chart-03.svg b/src/components/icons/svg/untitledui-icons/horizontal-bar-chart-03.svg new file mode 100644 index 000000000..ac14691e2 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/horizontal-bar-chart-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/hourglass-01.svg b/src/components/icons/svg/untitledui-icons/hourglass-01.svg new file mode 100644 index 000000000..31facb267 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/hourglass-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/hourglass-02.svg b/src/components/icons/svg/untitledui-icons/hourglass-02.svg new file mode 100644 index 000000000..5e5ddcfdd --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/hourglass-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/hourglass-03.svg b/src/components/icons/svg/untitledui-icons/hourglass-03.svg new file mode 100644 index 000000000..72570959e --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/hourglass-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/hurricane-01.svg b/src/components/icons/svg/untitledui-icons/hurricane-01.svg new file mode 100644 index 000000000..3aa5b541f --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/hurricane-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/hurricane-02.svg b/src/components/icons/svg/untitledui-icons/hurricane-02.svg new file mode 100644 index 000000000..abfc5c12d --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/hurricane-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/hurricane-03.svg b/src/components/icons/svg/untitledui-icons/hurricane-03.svg new file mode 100644 index 000000000..68e7e630f --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/hurricane-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/image-01.svg b/src/components/icons/svg/untitledui-icons/image-01.svg new file mode 100644 index 000000000..1940dd8f1 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/image-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/image-02.svg b/src/components/icons/svg/untitledui-icons/image-02.svg new file mode 100644 index 000000000..78f4f4b57 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/image-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/image-03.svg b/src/components/icons/svg/untitledui-icons/image-03.svg new file mode 100644 index 000000000..0c0c6d9c4 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/image-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/image-04.svg b/src/components/icons/svg/untitledui-icons/image-04.svg new file mode 100644 index 000000000..69634cd16 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/image-04.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/components/icons/svg/untitledui-icons/image-05.svg b/src/components/icons/svg/untitledui-icons/image-05.svg new file mode 100644 index 000000000..805a23732 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/image-05.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/image-check.svg b/src/components/icons/svg/untitledui-icons/image-check.svg new file mode 100644 index 000000000..98e3ea667 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/image-check.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/image-down.svg b/src/components/icons/svg/untitledui-icons/image-down.svg new file mode 100644 index 000000000..3ce8d8dd1 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/image-down.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/image-indent-left.svg b/src/components/icons/svg/untitledui-icons/image-indent-left.svg new file mode 100644 index 000000000..5f850f403 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/image-indent-left.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/image-indent-right.svg b/src/components/icons/svg/untitledui-icons/image-indent-right.svg new file mode 100644 index 000000000..4859e78d8 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/image-indent-right.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/image-left.svg b/src/components/icons/svg/untitledui-icons/image-left.svg new file mode 100644 index 000000000..ab45c22ba --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/image-left.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/image-plus.svg b/src/components/icons/svg/untitledui-icons/image-plus.svg new file mode 100644 index 000000000..cd47b148e --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/image-plus.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/image-right.svg b/src/components/icons/svg/untitledui-icons/image-right.svg new file mode 100644 index 000000000..89265bf5e --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/image-right.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/image-up.svg b/src/components/icons/svg/untitledui-icons/image-up.svg new file mode 100644 index 000000000..1a64aac24 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/image-up.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/image-user-check.svg b/src/components/icons/svg/untitledui-icons/image-user-check.svg new file mode 100644 index 000000000..74c03ee77 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/image-user-check.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/image-user-down.svg b/src/components/icons/svg/untitledui-icons/image-user-down.svg new file mode 100644 index 000000000..57707ba21 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/image-user-down.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/image-user-left.svg b/src/components/icons/svg/untitledui-icons/image-user-left.svg new file mode 100644 index 000000000..e8b05d50e --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/image-user-left.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/image-user-plus.svg b/src/components/icons/svg/untitledui-icons/image-user-plus.svg new file mode 100644 index 000000000..42c3285ec --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/image-user-plus.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/image-user-right.svg b/src/components/icons/svg/untitledui-icons/image-user-right.svg new file mode 100644 index 000000000..4b3dc97cf --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/image-user-right.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/image-user-up.svg b/src/components/icons/svg/untitledui-icons/image-user-up.svg new file mode 100644 index 000000000..b3f4097f7 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/image-user-up.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/image-user-x.svg b/src/components/icons/svg/untitledui-icons/image-user-x.svg new file mode 100644 index 000000000..da93bc6e0 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/image-user-x.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/image-user.svg b/src/components/icons/svg/untitledui-icons/image-user.svg new file mode 100644 index 000000000..a78fb443d --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/image-user.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/image-x.svg b/src/components/icons/svg/untitledui-icons/image-x.svg new file mode 100644 index 000000000..c3d8ea2f9 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/image-x.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/inbox-01.svg b/src/components/icons/svg/untitledui-icons/inbox-01.svg new file mode 100644 index 000000000..d107e58be --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/inbox-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/inbox-02.svg b/src/components/icons/svg/untitledui-icons/inbox-02.svg new file mode 100644 index 000000000..4659da18f --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/inbox-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/infinity.svg b/src/components/icons/svg/untitledui-icons/infinity.svg new file mode 100644 index 000000000..d37ecba7e --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/infinity.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/info-circle.svg b/src/components/icons/svg/untitledui-icons/info-circle.svg new file mode 100644 index 000000000..3b4767a52 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/info-circle.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/info-hexagon.svg b/src/components/icons/svg/untitledui-icons/info-hexagon.svg new file mode 100644 index 000000000..ba9b177f7 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/info-hexagon.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/info-octagon.svg b/src/components/icons/svg/untitledui-icons/info-octagon.svg new file mode 100644 index 000000000..1362cd703 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/info-octagon.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/info-square.svg b/src/components/icons/svg/untitledui-icons/info-square.svg new file mode 100644 index 000000000..b6efe39da --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/info-square.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/intersect-circle.svg b/src/components/icons/svg/untitledui-icons/intersect-circle.svg new file mode 100644 index 000000000..39c6f81d3 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/intersect-circle.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/components/icons/svg/untitledui-icons/intersect-square.svg b/src/components/icons/svg/untitledui-icons/intersect-square.svg new file mode 100644 index 000000000..9883dea9b --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/intersect-square.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/components/icons/svg/untitledui-icons/italic-01.svg b/src/components/icons/svg/untitledui-icons/italic-01.svg new file mode 100644 index 000000000..1c69d2c7e --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/italic-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/italic-02.svg b/src/components/icons/svg/untitledui-icons/italic-02.svg new file mode 100644 index 000000000..a5bd06822 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/italic-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/italic-square.svg b/src/components/icons/svg/untitledui-icons/italic-square.svg new file mode 100644 index 000000000..08c0028b4 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/italic-square.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/key-01.svg b/src/components/icons/svg/untitledui-icons/key-01.svg new file mode 100644 index 000000000..5db8d5f16 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/key-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/key-02.svg b/src/components/icons/svg/untitledui-icons/key-02.svg new file mode 100644 index 000000000..229d0a0a5 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/key-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/keyboard-01.svg b/src/components/icons/svg/untitledui-icons/keyboard-01.svg new file mode 100644 index 000000000..23f27a19b --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/keyboard-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/keyboard-02.svg b/src/components/icons/svg/untitledui-icons/keyboard-02.svg new file mode 100644 index 000000000..61f747eed --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/keyboard-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/laptop-01.svg b/src/components/icons/svg/untitledui-icons/laptop-01.svg new file mode 100644 index 000000000..1c65a7faa --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/laptop-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/laptop-02.svg b/src/components/icons/svg/untitledui-icons/laptop-02.svg new file mode 100644 index 000000000..e91bcbcb4 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/laptop-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/layer-single.svg b/src/components/icons/svg/untitledui-icons/layer-single.svg new file mode 100644 index 000000000..363bccdca --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/layer-single.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/layers-three-01.svg b/src/components/icons/svg/untitledui-icons/layers-three-01.svg new file mode 100644 index 000000000..4a83f6f52 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/layers-three-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/layers-three-02.svg b/src/components/icons/svg/untitledui-icons/layers-three-02.svg new file mode 100644 index 000000000..3b2794f39 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/layers-three-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/layers-two-01.svg b/src/components/icons/svg/untitledui-icons/layers-two-01.svg new file mode 100644 index 000000000..13b66559e --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/layers-two-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/layers-two-02.svg b/src/components/icons/svg/untitledui-icons/layers-two-02.svg new file mode 100644 index 000000000..d0db6fd59 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/layers-two-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/layout-alt-01.svg b/src/components/icons/svg/untitledui-icons/layout-alt-01.svg new file mode 100644 index 000000000..68d683ce7 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/layout-alt-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/layout-alt-02.svg b/src/components/icons/svg/untitledui-icons/layout-alt-02.svg new file mode 100644 index 000000000..aa4e4ca7d --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/layout-alt-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/layout-alt-03.svg b/src/components/icons/svg/untitledui-icons/layout-alt-03.svg new file mode 100644 index 000000000..e2593dc01 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/layout-alt-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/layout-alt-04.svg b/src/components/icons/svg/untitledui-icons/layout-alt-04.svg new file mode 100644 index 000000000..8b1740ecd --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/layout-alt-04.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/layout-bottom.svg b/src/components/icons/svg/untitledui-icons/layout-bottom.svg new file mode 100644 index 000000000..f27ac509c --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/layout-bottom.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/layout-grid-01.svg b/src/components/icons/svg/untitledui-icons/layout-grid-01.svg new file mode 100644 index 000000000..10ca009dc --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/layout-grid-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/layout-grid-02.svg b/src/components/icons/svg/untitledui-icons/layout-grid-02.svg new file mode 100644 index 000000000..7a39660d8 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/layout-grid-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/layout-left.svg b/src/components/icons/svg/untitledui-icons/layout-left.svg new file mode 100644 index 000000000..d087944a1 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/layout-left.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/layout-right.svg b/src/components/icons/svg/untitledui-icons/layout-right.svg new file mode 100644 index 000000000..2ee218aed --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/layout-right.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/layout-top.svg b/src/components/icons/svg/untitledui-icons/layout-top.svg new file mode 100644 index 000000000..5ac04fc3e --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/layout-top.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/left-indent-01.svg b/src/components/icons/svg/untitledui-icons/left-indent-01.svg new file mode 100644 index 000000000..3cc2df19e --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/left-indent-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/left-indent-02.svg b/src/components/icons/svg/untitledui-icons/left-indent-02.svg new file mode 100644 index 000000000..25cecb22e --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/left-indent-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/letter-spacing-01.svg b/src/components/icons/svg/untitledui-icons/letter-spacing-01.svg new file mode 100644 index 000000000..17b9f938a --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/letter-spacing-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/letter-spacing-02.svg b/src/components/icons/svg/untitledui-icons/letter-spacing-02.svg new file mode 100644 index 000000000..3c6dbaec2 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/letter-spacing-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/life-buoy-01.svg b/src/components/icons/svg/untitledui-icons/life-buoy-01.svg new file mode 100644 index 000000000..ee34589ac --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/life-buoy-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/life-buoy-02.svg b/src/components/icons/svg/untitledui-icons/life-buoy-02.svg new file mode 100644 index 000000000..28b0623e5 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/life-buoy-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/lightbulb-01.svg b/src/components/icons/svg/untitledui-icons/lightbulb-01.svg new file mode 100644 index 000000000..285f8018c --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/lightbulb-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/lightbulb-02.svg b/src/components/icons/svg/untitledui-icons/lightbulb-02.svg new file mode 100644 index 000000000..01e7e9d20 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/lightbulb-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/lightbulb-03.svg b/src/components/icons/svg/untitledui-icons/lightbulb-03.svg new file mode 100644 index 000000000..7367fd20e --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/lightbulb-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/lightbulb-04.svg b/src/components/icons/svg/untitledui-icons/lightbulb-04.svg new file mode 100644 index 000000000..a08d2a4a4 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/lightbulb-04.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/lightbulb-05.svg b/src/components/icons/svg/untitledui-icons/lightbulb-05.svg new file mode 100644 index 000000000..3ec302a0b --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/lightbulb-05.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/lightning-01.svg b/src/components/icons/svg/untitledui-icons/lightning-01.svg new file mode 100644 index 000000000..0e5bc8cc6 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/lightning-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/lightning-02.svg b/src/components/icons/svg/untitledui-icons/lightning-02.svg new file mode 100644 index 000000000..2c4a48664 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/lightning-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/line-chart-down-01.svg b/src/components/icons/svg/untitledui-icons/line-chart-down-01.svg new file mode 100644 index 000000000..82ce060fc --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/line-chart-down-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/line-chart-down-02.svg b/src/components/icons/svg/untitledui-icons/line-chart-down-02.svg new file mode 100644 index 000000000..7137f2785 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/line-chart-down-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/line-chart-down-03.svg b/src/components/icons/svg/untitledui-icons/line-chart-down-03.svg new file mode 100644 index 000000000..1ddf053db --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/line-chart-down-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/line-chart-down-04.svg b/src/components/icons/svg/untitledui-icons/line-chart-down-04.svg new file mode 100644 index 000000000..7a3de12ee --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/line-chart-down-04.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/line-chart-down-05.svg b/src/components/icons/svg/untitledui-icons/line-chart-down-05.svg new file mode 100644 index 000000000..fb89d6672 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/line-chart-down-05.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/line-chart-up-01.svg b/src/components/icons/svg/untitledui-icons/line-chart-up-01.svg new file mode 100644 index 000000000..53cac7eb1 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/line-chart-up-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/line-chart-up-02.svg b/src/components/icons/svg/untitledui-icons/line-chart-up-02.svg new file mode 100644 index 000000000..343be706c --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/line-chart-up-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/line-chart-up-03.svg b/src/components/icons/svg/untitledui-icons/line-chart-up-03.svg new file mode 100644 index 000000000..2d1110472 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/line-chart-up-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/line-chart-up-04.svg b/src/components/icons/svg/untitledui-icons/line-chart-up-04.svg new file mode 100644 index 000000000..3dfddffbc --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/line-chart-up-04.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/line-chart-up-05.svg b/src/components/icons/svg/untitledui-icons/line-chart-up-05.svg new file mode 100644 index 000000000..ca2e52d10 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/line-chart-up-05.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/line-height.svg b/src/components/icons/svg/untitledui-icons/line-height.svg new file mode 100644 index 000000000..dc96f551c --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/line-height.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/link-01.svg b/src/components/icons/svg/untitledui-icons/link-01.svg new file mode 100644 index 000000000..2effe8f75 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/link-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/link-02.svg b/src/components/icons/svg/untitledui-icons/link-02.svg new file mode 100644 index 000000000..f9f843678 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/link-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/link-03.svg b/src/components/icons/svg/untitledui-icons/link-03.svg new file mode 100644 index 000000000..afbf1cb2d --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/link-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/link-04.svg b/src/components/icons/svg/untitledui-icons/link-04.svg new file mode 100644 index 000000000..1434685e8 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/link-04.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/link-05.svg b/src/components/icons/svg/untitledui-icons/link-05.svg new file mode 100644 index 000000000..164c3a7b2 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/link-05.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/link-broken-01.svg b/src/components/icons/svg/untitledui-icons/link-broken-01.svg new file mode 100644 index 000000000..c26960c75 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/link-broken-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/link-broken-02.svg b/src/components/icons/svg/untitledui-icons/link-broken-02.svg new file mode 100644 index 000000000..c2c3d4c2c --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/link-broken-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/link-external-01.svg b/src/components/icons/svg/untitledui-icons/link-external-01.svg new file mode 100644 index 000000000..0cfd5b7d3 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/link-external-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/link-external-02.svg b/src/components/icons/svg/untitledui-icons/link-external-02.svg new file mode 100644 index 000000000..536d3c4bd --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/link-external-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/list.svg b/src/components/icons/svg/untitledui-icons/list.svg new file mode 100644 index 000000000..2340faac8 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/list.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/loading-01.svg b/src/components/icons/svg/untitledui-icons/loading-01.svg new file mode 100644 index 000000000..38faeed09 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/loading-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/loading-02.svg b/src/components/icons/svg/untitledui-icons/loading-02.svg new file mode 100644 index 000000000..8dd6a8da4 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/loading-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/loading-03.svg b/src/components/icons/svg/untitledui-icons/loading-03.svg new file mode 100644 index 000000000..8a1dba47a --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/loading-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/lock-01.svg b/src/components/icons/svg/untitledui-icons/lock-01.svg new file mode 100644 index 000000000..a2ce5159b --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/lock-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/lock-02.svg b/src/components/icons/svg/untitledui-icons/lock-02.svg new file mode 100644 index 000000000..cf2ff3b25 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/lock-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/lock-03.svg b/src/components/icons/svg/untitledui-icons/lock-03.svg new file mode 100644 index 000000000..c0f99a84c --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/lock-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/lock-04.svg b/src/components/icons/svg/untitledui-icons/lock-04.svg new file mode 100644 index 000000000..11b0d0c29 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/lock-04.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/lock-keyhole-circle.svg b/src/components/icons/svg/untitledui-icons/lock-keyhole-circle.svg new file mode 100644 index 000000000..50bef65a1 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/lock-keyhole-circle.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/components/icons/svg/untitledui-icons/lock-keyhole-square.svg b/src/components/icons/svg/untitledui-icons/lock-keyhole-square.svg new file mode 100644 index 000000000..a73345716 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/lock-keyhole-square.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/components/icons/svg/untitledui-icons/lock-unlocked-01.svg b/src/components/icons/svg/untitledui-icons/lock-unlocked-01.svg new file mode 100644 index 000000000..4b7148783 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/lock-unlocked-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/lock-unlocked-02.svg b/src/components/icons/svg/untitledui-icons/lock-unlocked-02.svg new file mode 100644 index 000000000..7fb104bf2 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/lock-unlocked-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/lock-unlocked-03.svg b/src/components/icons/svg/untitledui-icons/lock-unlocked-03.svg new file mode 100644 index 000000000..a4d9f41ce --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/lock-unlocked-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/lock-unlocked-04.svg b/src/components/icons/svg/untitledui-icons/lock-unlocked-04.svg new file mode 100644 index 000000000..6b7844bc4 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/lock-unlocked-04.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/log-in-01.svg b/src/components/icons/svg/untitledui-icons/log-in-01.svg new file mode 100644 index 000000000..9e8aba4d0 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/log-in-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/log-in-02.svg b/src/components/icons/svg/untitledui-icons/log-in-02.svg new file mode 100644 index 000000000..8d8902b87 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/log-in-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/log-in-03.svg b/src/components/icons/svg/untitledui-icons/log-in-03.svg new file mode 100644 index 000000000..32c85f259 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/log-in-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/log-in-04.svg b/src/components/icons/svg/untitledui-icons/log-in-04.svg new file mode 100644 index 000000000..ef871533e --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/log-in-04.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/log-out-01.svg b/src/components/icons/svg/untitledui-icons/log-out-01.svg new file mode 100644 index 000000000..4236cc9c8 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/log-out-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/log-out-02.svg b/src/components/icons/svg/untitledui-icons/log-out-02.svg new file mode 100644 index 000000000..e73952acb --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/log-out-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/log-out-03.svg b/src/components/icons/svg/untitledui-icons/log-out-03.svg new file mode 100644 index 000000000..fbbcf2b3b --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/log-out-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/log-out-04.svg b/src/components/icons/svg/untitledui-icons/log-out-04.svg new file mode 100644 index 000000000..6d1b42fe9 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/log-out-04.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/luggage-01.svg b/src/components/icons/svg/untitledui-icons/luggage-01.svg new file mode 100644 index 000000000..c562f448d --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/luggage-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/luggage-02.svg b/src/components/icons/svg/untitledui-icons/luggage-02.svg new file mode 100644 index 000000000..adefc4ecb --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/luggage-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/luggage-03.svg b/src/components/icons/svg/untitledui-icons/luggage-03.svg new file mode 100644 index 000000000..63678d7cb --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/luggage-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/magic-wand-01.svg b/src/components/icons/svg/untitledui-icons/magic-wand-01.svg new file mode 100644 index 000000000..b7de515ba --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/magic-wand-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/magic-wand-02.svg b/src/components/icons/svg/untitledui-icons/magic-wand-02.svg new file mode 100644 index 000000000..c2009dc96 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/magic-wand-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/mail-01.svg b/src/components/icons/svg/untitledui-icons/mail-01.svg new file mode 100644 index 000000000..b952ef651 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/mail-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/mail-02.svg b/src/components/icons/svg/untitledui-icons/mail-02.svg new file mode 100644 index 000000000..87e6192f6 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/mail-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/mail-03.svg b/src/components/icons/svg/untitledui-icons/mail-03.svg new file mode 100644 index 000000000..2df7433b1 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/mail-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/mail-04.svg b/src/components/icons/svg/untitledui-icons/mail-04.svg new file mode 100644 index 000000000..ed5752bbc --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/mail-04.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/mail-05.svg b/src/components/icons/svg/untitledui-icons/mail-05.svg new file mode 100644 index 000000000..389cf854e --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/mail-05.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/map-01.svg b/src/components/icons/svg/untitledui-icons/map-01.svg new file mode 100644 index 000000000..5b5c5b09a --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/map-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/map-02.svg b/src/components/icons/svg/untitledui-icons/map-02.svg new file mode 100644 index 000000000..69fef6e21 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/map-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/mark.svg b/src/components/icons/svg/untitledui-icons/mark.svg new file mode 100644 index 000000000..529c87204 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/mark.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/marker-pin-01.svg b/src/components/icons/svg/untitledui-icons/marker-pin-01.svg new file mode 100644 index 000000000..3671daf85 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/marker-pin-01.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/components/icons/svg/untitledui-icons/marker-pin-02.svg b/src/components/icons/svg/untitledui-icons/marker-pin-02.svg new file mode 100644 index 000000000..2799c8b66 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/marker-pin-02.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/components/icons/svg/untitledui-icons/marker-pin-03.svg b/src/components/icons/svg/untitledui-icons/marker-pin-03.svg new file mode 100644 index 000000000..ea5969c0b --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/marker-pin-03.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/components/icons/svg/untitledui-icons/marker-pin-04.svg b/src/components/icons/svg/untitledui-icons/marker-pin-04.svg new file mode 100644 index 000000000..66ed0c9f6 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/marker-pin-04.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/marker-pin-05.svg b/src/components/icons/svg/untitledui-icons/marker-pin-05.svg new file mode 100644 index 000000000..3d23c2d0b --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/marker-pin-05.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/marker-pin-06.svg b/src/components/icons/svg/untitledui-icons/marker-pin-06.svg new file mode 100644 index 000000000..1ef780f6e --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/marker-pin-06.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/maximize-01.svg b/src/components/icons/svg/untitledui-icons/maximize-01.svg new file mode 100644 index 000000000..d1f38b420 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/maximize-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/maximize-02.svg b/src/components/icons/svg/untitledui-icons/maximize-02.svg new file mode 100644 index 000000000..7245efcb6 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/maximize-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/medical-circle.svg b/src/components/icons/svg/untitledui-icons/medical-circle.svg new file mode 100644 index 000000000..0af2ea35b --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/medical-circle.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/components/icons/svg/untitledui-icons/medical-cross.svg b/src/components/icons/svg/untitledui-icons/medical-cross.svg new file mode 100644 index 000000000..bbec0ffd8 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/medical-cross.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/medical-square.svg b/src/components/icons/svg/untitledui-icons/medical-square.svg new file mode 100644 index 000000000..fb0f95896 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/medical-square.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/components/icons/svg/untitledui-icons/menu-01.svg b/src/components/icons/svg/untitledui-icons/menu-01.svg new file mode 100644 index 000000000..d2ad8982c --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/menu-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/menu-02.svg b/src/components/icons/svg/untitledui-icons/menu-02.svg new file mode 100644 index 000000000..388cd5cc9 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/menu-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/menu-03.svg b/src/components/icons/svg/untitledui-icons/menu-03.svg new file mode 100644 index 000000000..906d7202b --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/menu-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/menu-04.svg b/src/components/icons/svg/untitledui-icons/menu-04.svg new file mode 100644 index 000000000..e1423a533 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/menu-04.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/menu-05.svg b/src/components/icons/svg/untitledui-icons/menu-05.svg new file mode 100644 index 000000000..dacc1b000 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/menu-05.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/message-alert-circle.svg b/src/components/icons/svg/untitledui-icons/message-alert-circle.svg new file mode 100644 index 000000000..a80145b81 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/message-alert-circle.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/message-alert-square.svg b/src/components/icons/svg/untitledui-icons/message-alert-square.svg new file mode 100644 index 000000000..3cf438df9 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/message-alert-square.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/message-chat-circle.svg b/src/components/icons/svg/untitledui-icons/message-chat-circle.svg new file mode 100644 index 000000000..79246074d --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/message-chat-circle.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/message-chat-square.svg b/src/components/icons/svg/untitledui-icons/message-chat-square.svg new file mode 100644 index 000000000..72ae9d4f3 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/message-chat-square.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/message-check-circle.svg b/src/components/icons/svg/untitledui-icons/message-check-circle.svg new file mode 100644 index 000000000..379548dad --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/message-check-circle.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/message-check-square.svg b/src/components/icons/svg/untitledui-icons/message-check-square.svg new file mode 100644 index 000000000..77320853a --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/message-check-square.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/message-circle-01.svg b/src/components/icons/svg/untitledui-icons/message-circle-01.svg new file mode 100644 index 000000000..62674f38e --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/message-circle-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/message-circle-02.svg b/src/components/icons/svg/untitledui-icons/message-circle-02.svg new file mode 100644 index 000000000..d8325e2f6 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/message-circle-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/message-dots-circle.svg b/src/components/icons/svg/untitledui-icons/message-dots-circle.svg new file mode 100644 index 000000000..0aab82e7b --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/message-dots-circle.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/message-dots-square.svg b/src/components/icons/svg/untitledui-icons/message-dots-square.svg new file mode 100644 index 000000000..257058cfa --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/message-dots-square.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/message-heart-circle.svg b/src/components/icons/svg/untitledui-icons/message-heart-circle.svg new file mode 100644 index 000000000..001dadf46 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/message-heart-circle.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/components/icons/svg/untitledui-icons/message-heart-square.svg b/src/components/icons/svg/untitledui-icons/message-heart-square.svg new file mode 100644 index 000000000..ec5c05c71 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/message-heart-square.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/components/icons/svg/untitledui-icons/message-notification-circle.svg b/src/components/icons/svg/untitledui-icons/message-notification-circle.svg new file mode 100644 index 000000000..70eb9f690 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/message-notification-circle.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/message-notification-square.svg b/src/components/icons/svg/untitledui-icons/message-notification-square.svg new file mode 100644 index 000000000..1a84a5e2c --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/message-notification-square.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/message-plus-circle.svg b/src/components/icons/svg/untitledui-icons/message-plus-circle.svg new file mode 100644 index 000000000..d4062ee84 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/message-plus-circle.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/message-plus-square.svg b/src/components/icons/svg/untitledui-icons/message-plus-square.svg new file mode 100644 index 000000000..923c7018f --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/message-plus-square.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/message-question-circle.svg b/src/components/icons/svg/untitledui-icons/message-question-circle.svg new file mode 100644 index 000000000..7830d40a8 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/message-question-circle.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/message-question-square.svg b/src/components/icons/svg/untitledui-icons/message-question-square.svg new file mode 100644 index 000000000..644ce96f0 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/message-question-square.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/message-smile-circle.svg b/src/components/icons/svg/untitledui-icons/message-smile-circle.svg new file mode 100644 index 000000000..484ffe38e --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/message-smile-circle.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/message-smile-square.svg b/src/components/icons/svg/untitledui-icons/message-smile-square.svg new file mode 100644 index 000000000..8d45619ee --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/message-smile-square.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/message-square-01.svg b/src/components/icons/svg/untitledui-icons/message-square-01.svg new file mode 100644 index 000000000..e2d822cf9 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/message-square-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/message-square-02.svg b/src/components/icons/svg/untitledui-icons/message-square-02.svg new file mode 100644 index 000000000..b7174a912 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/message-square-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/message-text-circle-01.svg b/src/components/icons/svg/untitledui-icons/message-text-circle-01.svg new file mode 100644 index 000000000..a2a3d854c --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/message-text-circle-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/message-text-circle-02.svg b/src/components/icons/svg/untitledui-icons/message-text-circle-02.svg new file mode 100644 index 000000000..d3c148d24 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/message-text-circle-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/message-text-square-01.svg b/src/components/icons/svg/untitledui-icons/message-text-square-01.svg new file mode 100644 index 000000000..6f0220785 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/message-text-square-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/message-text-square-02.svg b/src/components/icons/svg/untitledui-icons/message-text-square-02.svg new file mode 100644 index 000000000..815d25aeb --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/message-text-square-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/message-x-circle.svg b/src/components/icons/svg/untitledui-icons/message-x-circle.svg new file mode 100644 index 000000000..8ccc54b12 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/message-x-circle.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/message-x-square.svg b/src/components/icons/svg/untitledui-icons/message-x-square.svg new file mode 100644 index 000000000..8d9d64cff --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/message-x-square.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/microphone-01.svg b/src/components/icons/svg/untitledui-icons/microphone-01.svg new file mode 100644 index 000000000..8fd506dfa --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/microphone-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/microphone-02.svg b/src/components/icons/svg/untitledui-icons/microphone-02.svg new file mode 100644 index 000000000..2eda93ca0 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/microphone-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/microphone-off-01.svg b/src/components/icons/svg/untitledui-icons/microphone-off-01.svg new file mode 100644 index 000000000..1dbf8fa27 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/microphone-off-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/microphone-off-02.svg b/src/components/icons/svg/untitledui-icons/microphone-off-02.svg new file mode 100644 index 000000000..21abb9169 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/microphone-off-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/microscope.svg b/src/components/icons/svg/untitledui-icons/microscope.svg new file mode 100644 index 000000000..0e9a8946d --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/microscope.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/minimize-01.svg b/src/components/icons/svg/untitledui-icons/minimize-01.svg new file mode 100644 index 000000000..6fc875cab --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/minimize-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/minimize-02.svg b/src/components/icons/svg/untitledui-icons/minimize-02.svg new file mode 100644 index 000000000..5d2915c22 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/minimize-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/minus-circle.svg b/src/components/icons/svg/untitledui-icons/minus-circle.svg new file mode 100644 index 000000000..9e5b4f87c --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/minus-circle.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/minus-square.svg b/src/components/icons/svg/untitledui-icons/minus-square.svg new file mode 100644 index 000000000..c0ca78b4f --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/minus-square.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/minus.svg b/src/components/icons/svg/untitledui-icons/minus.svg new file mode 100644 index 000000000..85a81679e --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/minus.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/modem-01.svg b/src/components/icons/svg/untitledui-icons/modem-01.svg new file mode 100644 index 000000000..40c9ced1f --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/modem-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/modem-02.svg b/src/components/icons/svg/untitledui-icons/modem-02.svg new file mode 100644 index 000000000..56c2499ad --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/modem-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/monitor-01.svg b/src/components/icons/svg/untitledui-icons/monitor-01.svg new file mode 100644 index 000000000..accd66897 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/monitor-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/monitor-02.svg b/src/components/icons/svg/untitledui-icons/monitor-02.svg new file mode 100644 index 000000000..6aeb7404f --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/monitor-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/monitor-03.svg b/src/components/icons/svg/untitledui-icons/monitor-03.svg new file mode 100644 index 000000000..c971a0433 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/monitor-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/monitor-04.svg b/src/components/icons/svg/untitledui-icons/monitor-04.svg new file mode 100644 index 000000000..17039ff91 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/monitor-04.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/monitor-05.svg b/src/components/icons/svg/untitledui-icons/monitor-05.svg new file mode 100644 index 000000000..96734b6d1 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/monitor-05.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/moon-01.svg b/src/components/icons/svg/untitledui-icons/moon-01.svg new file mode 100644 index 000000000..11d3047a5 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/moon-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/moon-02.svg b/src/components/icons/svg/untitledui-icons/moon-02.svg new file mode 100644 index 000000000..18081c02b --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/moon-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/moon-eclipse.svg b/src/components/icons/svg/untitledui-icons/moon-eclipse.svg new file mode 100644 index 000000000..a878e9f01 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/moon-eclipse.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/moon-star.svg b/src/components/icons/svg/untitledui-icons/moon-star.svg new file mode 100644 index 000000000..b3af22d87 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/moon-star.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/components/icons/svg/untitledui-icons/mouse.svg b/src/components/icons/svg/untitledui-icons/mouse.svg new file mode 100644 index 000000000..ddbf76e82 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/mouse.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/move.svg b/src/components/icons/svg/untitledui-icons/move.svg new file mode 100644 index 000000000..96112986b --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/move.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/music-note-01.svg b/src/components/icons/svg/untitledui-icons/music-note-01.svg new file mode 100644 index 000000000..d6eb8890b --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/music-note-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/music-note-02.svg b/src/components/icons/svg/untitledui-icons/music-note-02.svg new file mode 100644 index 000000000..ff994413b --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/music-note-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/music-note-plus.svg b/src/components/icons/svg/untitledui-icons/music-note-plus.svg new file mode 100644 index 000000000..6d67db5ff --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/music-note-plus.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/navigation-pointer-01.svg b/src/components/icons/svg/untitledui-icons/navigation-pointer-01.svg new file mode 100644 index 000000000..d31a0cc49 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/navigation-pointer-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/navigation-pointer-02.svg b/src/components/icons/svg/untitledui-icons/navigation-pointer-02.svg new file mode 100644 index 000000000..e9a8c255b --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/navigation-pointer-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/navigation-pointer-off-01.svg b/src/components/icons/svg/untitledui-icons/navigation-pointer-off-01.svg new file mode 100644 index 000000000..5d9be5853 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/navigation-pointer-off-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/navigation-pointer-off-02.svg b/src/components/icons/svg/untitledui-icons/navigation-pointer-off-02.svg new file mode 100644 index 000000000..de2720eae --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/navigation-pointer-off-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/notification-box.svg b/src/components/icons/svg/untitledui-icons/notification-box.svg new file mode 100644 index 000000000..7f6ba915c --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/notification-box.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/notification-message.svg b/src/components/icons/svg/untitledui-icons/notification-message.svg new file mode 100644 index 000000000..1a84a5e2c --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/notification-message.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/notification-text.svg b/src/components/icons/svg/untitledui-icons/notification-text.svg new file mode 100644 index 000000000..8a8c595bd --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/notification-text.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/octagon.svg b/src/components/icons/svg/untitledui-icons/octagon.svg new file mode 100644 index 000000000..9343148cf --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/octagon.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/package-check.svg b/src/components/icons/svg/untitledui-icons/package-check.svg new file mode 100644 index 000000000..916afa33f --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/package-check.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/package-minus.svg b/src/components/icons/svg/untitledui-icons/package-minus.svg new file mode 100644 index 000000000..8a8dcf398 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/package-minus.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/package-plus.svg b/src/components/icons/svg/untitledui-icons/package-plus.svg new file mode 100644 index 000000000..60f1405a8 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/package-plus.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/package-search.svg b/src/components/icons/svg/untitledui-icons/package-search.svg new file mode 100644 index 000000000..f21fa7acd --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/package-search.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/package-x.svg b/src/components/icons/svg/untitledui-icons/package-x.svg new file mode 100644 index 000000000..28d645729 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/package-x.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/package.svg b/src/components/icons/svg/untitledui-icons/package.svg new file mode 100644 index 000000000..0733e47c9 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/package.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/components/icons/svg/untitledui-icons/paint-pour.svg b/src/components/icons/svg/untitledui-icons/paint-pour.svg new file mode 100644 index 000000000..351ada154 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/paint-pour.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/paint.svg b/src/components/icons/svg/untitledui-icons/paint.svg new file mode 100644 index 000000000..57dc7b77b --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/paint.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/palette.svg b/src/components/icons/svg/untitledui-icons/palette.svg new file mode 100644 index 000000000..b86e1e529 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/palette.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/components/icons/svg/untitledui-icons/paperclip.svg b/src/components/icons/svg/untitledui-icons/paperclip.svg new file mode 100644 index 000000000..73903f2be --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/paperclip.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/paragraph-spacing.svg b/src/components/icons/svg/untitledui-icons/paragraph-spacing.svg new file mode 100644 index 000000000..140e00a8c --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/paragraph-spacing.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/paragraph-wrap.svg b/src/components/icons/svg/untitledui-icons/paragraph-wrap.svg new file mode 100644 index 000000000..3e5d02b77 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/paragraph-wrap.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/passcode-lock.svg b/src/components/icons/svg/untitledui-icons/passcode-lock.svg new file mode 100644 index 000000000..b755b291f --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/passcode-lock.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/passcode.svg b/src/components/icons/svg/untitledui-icons/passcode.svg new file mode 100644 index 000000000..556608bf4 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/passcode.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/passport.svg b/src/components/icons/svg/untitledui-icons/passport.svg new file mode 100644 index 000000000..6154e612e --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/passport.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/pause-circle.svg b/src/components/icons/svg/untitledui-icons/pause-circle.svg new file mode 100644 index 000000000..c73abfc1d --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/pause-circle.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/pause-square.svg b/src/components/icons/svg/untitledui-icons/pause-square.svg new file mode 100644 index 000000000..b4c90607a --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/pause-square.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/pen-tool-01.svg b/src/components/icons/svg/untitledui-icons/pen-tool-01.svg new file mode 100644 index 000000000..c59a18a7f --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/pen-tool-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/pen-tool-02.svg b/src/components/icons/svg/untitledui-icons/pen-tool-02.svg new file mode 100644 index 000000000..c729036e1 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/pen-tool-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/pen-tool-minus.svg b/src/components/icons/svg/untitledui-icons/pen-tool-minus.svg new file mode 100644 index 000000000..5e597528f --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/pen-tool-minus.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/pen-tool-plus.svg b/src/components/icons/svg/untitledui-icons/pen-tool-plus.svg new file mode 100644 index 000000000..96a2b53c9 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/pen-tool-plus.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/pencil-01.svg b/src/components/icons/svg/untitledui-icons/pencil-01.svg new file mode 100644 index 000000000..c5d914459 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/pencil-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/pencil-02.svg b/src/components/icons/svg/untitledui-icons/pencil-02.svg new file mode 100644 index 000000000..da8f48f09 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/pencil-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/pencil-line.svg b/src/components/icons/svg/untitledui-icons/pencil-line.svg new file mode 100644 index 000000000..f385ce278 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/pencil-line.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/pentagon.svg b/src/components/icons/svg/untitledui-icons/pentagon.svg new file mode 100644 index 000000000..d48f7dfc6 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/pentagon.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/percent-01.svg b/src/components/icons/svg/untitledui-icons/percent-01.svg new file mode 100644 index 000000000..1b58d64dd --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/percent-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/percent-02.svg b/src/components/icons/svg/untitledui-icons/percent-02.svg new file mode 100644 index 000000000..dbb3c7431 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/percent-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/percent-03.svg b/src/components/icons/svg/untitledui-icons/percent-03.svg new file mode 100644 index 000000000..af999935f --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/percent-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/perspective-01.svg b/src/components/icons/svg/untitledui-icons/perspective-01.svg new file mode 100644 index 000000000..9ea0dd96c --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/perspective-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/perspective-02.svg b/src/components/icons/svg/untitledui-icons/perspective-02.svg new file mode 100644 index 000000000..b57b8c6c8 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/perspective-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/phone-01.svg b/src/components/icons/svg/untitledui-icons/phone-01.svg new file mode 100644 index 000000000..dfb60354f --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/phone-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/phone-02.svg b/src/components/icons/svg/untitledui-icons/phone-02.svg new file mode 100644 index 000000000..2bdcd6762 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/phone-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/phone-call-01.svg b/src/components/icons/svg/untitledui-icons/phone-call-01.svg new file mode 100644 index 000000000..6448d008b --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/phone-call-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/phone-call-02.svg b/src/components/icons/svg/untitledui-icons/phone-call-02.svg new file mode 100644 index 000000000..ed750793d --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/phone-call-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/phone-hang-up.svg b/src/components/icons/svg/untitledui-icons/phone-hang-up.svg new file mode 100644 index 000000000..d8c76de0f --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/phone-hang-up.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/phone-incoming-01.svg b/src/components/icons/svg/untitledui-icons/phone-incoming-01.svg new file mode 100644 index 000000000..2562586a3 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/phone-incoming-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/phone-incoming-02.svg b/src/components/icons/svg/untitledui-icons/phone-incoming-02.svg new file mode 100644 index 000000000..fc6feb418 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/phone-incoming-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/phone-outgoing-01.svg b/src/components/icons/svg/untitledui-icons/phone-outgoing-01.svg new file mode 100644 index 000000000..f8ba2734a --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/phone-outgoing-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/phone-outgoing-02.svg b/src/components/icons/svg/untitledui-icons/phone-outgoing-02.svg new file mode 100644 index 000000000..598e30ed4 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/phone-outgoing-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/phone-pause.svg b/src/components/icons/svg/untitledui-icons/phone-pause.svg new file mode 100644 index 000000000..a0a5dbd0c --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/phone-pause.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/phone-plus.svg b/src/components/icons/svg/untitledui-icons/phone-plus.svg new file mode 100644 index 000000000..44cd2ade4 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/phone-plus.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/phone-x.svg b/src/components/icons/svg/untitledui-icons/phone-x.svg new file mode 100644 index 000000000..fbc103419 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/phone-x.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/phone.svg b/src/components/icons/svg/untitledui-icons/phone.svg new file mode 100644 index 000000000..369255802 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/phone.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/pie-chart-01.svg b/src/components/icons/svg/untitledui-icons/pie-chart-01.svg new file mode 100644 index 000000000..b392e2a9f --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/pie-chart-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/pie-chart-02.svg b/src/components/icons/svg/untitledui-icons/pie-chart-02.svg new file mode 100644 index 000000000..6b5842470 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/pie-chart-02.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/components/icons/svg/untitledui-icons/pie-chart-03.svg b/src/components/icons/svg/untitledui-icons/pie-chart-03.svg new file mode 100644 index 000000000..8e2de1aaa --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/pie-chart-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/pie-chart-04.svg b/src/components/icons/svg/untitledui-icons/pie-chart-04.svg new file mode 100644 index 000000000..ed374a0dc --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/pie-chart-04.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/piggy-bank-01.svg b/src/components/icons/svg/untitledui-icons/piggy-bank-01.svg new file mode 100644 index 000000000..e29d0cd7b --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/piggy-bank-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/piggy-bank-02.svg b/src/components/icons/svg/untitledui-icons/piggy-bank-02.svg new file mode 100644 index 000000000..02fd2a6e1 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/piggy-bank-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/pilcrow-01.svg b/src/components/icons/svg/untitledui-icons/pilcrow-01.svg new file mode 100644 index 000000000..091acdab1 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/pilcrow-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/pilcrow-02.svg b/src/components/icons/svg/untitledui-icons/pilcrow-02.svg new file mode 100644 index 000000000..5409a5f25 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/pilcrow-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/pilcrow-square.svg b/src/components/icons/svg/untitledui-icons/pilcrow-square.svg new file mode 100644 index 000000000..502c0a1c9 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/pilcrow-square.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/pin-01.svg b/src/components/icons/svg/untitledui-icons/pin-01.svg new file mode 100644 index 000000000..183e6918d --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/pin-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/pin-02.svg b/src/components/icons/svg/untitledui-icons/pin-02.svg new file mode 100644 index 000000000..023e6e4fb --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/pin-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/placeholder.svg b/src/components/icons/svg/untitledui-icons/placeholder.svg new file mode 100644 index 000000000..d6777fbb2 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/placeholder.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/plane.svg b/src/components/icons/svg/untitledui-icons/plane.svg new file mode 100644 index 000000000..2e496401b --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/plane.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/play-circle.svg b/src/components/icons/svg/untitledui-icons/play-circle.svg new file mode 100644 index 000000000..1da787081 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/play-circle.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/components/icons/svg/untitledui-icons/play-square.svg b/src/components/icons/svg/untitledui-icons/play-square.svg new file mode 100644 index 000000000..8f08aca73 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/play-square.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/components/icons/svg/untitledui-icons/play.svg b/src/components/icons/svg/untitledui-icons/play.svg new file mode 100644 index 000000000..ddb2d95f9 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/play.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/plus-circle.svg b/src/components/icons/svg/untitledui-icons/plus-circle.svg new file mode 100644 index 000000000..c11c012a0 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/plus-circle.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/plus-square.svg b/src/components/icons/svg/untitledui-icons/plus-square.svg new file mode 100644 index 000000000..f20012912 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/plus-square.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/plus.svg b/src/components/icons/svg/untitledui-icons/plus.svg new file mode 100644 index 000000000..eef1e5b88 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/plus.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/podcast.svg b/src/components/icons/svg/untitledui-icons/podcast.svg new file mode 100644 index 000000000..f8e86cbc7 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/podcast.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/power-01.svg b/src/components/icons/svg/untitledui-icons/power-01.svg new file mode 100644 index 000000000..2b14b40e5 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/power-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/power-02.svg b/src/components/icons/svg/untitledui-icons/power-02.svg new file mode 100644 index 000000000..f1cba2cee --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/power-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/power-03.svg b/src/components/icons/svg/untitledui-icons/power-03.svg new file mode 100644 index 000000000..4c6326cea --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/power-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/presentation-chart-01.svg b/src/components/icons/svg/untitledui-icons/presentation-chart-01.svg new file mode 100644 index 000000000..a92059084 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/presentation-chart-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/presentation-chart-02.svg b/src/components/icons/svg/untitledui-icons/presentation-chart-02.svg new file mode 100644 index 000000000..37a5873c8 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/presentation-chart-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/presentation-chart-03.svg b/src/components/icons/svg/untitledui-icons/presentation-chart-03.svg new file mode 100644 index 000000000..ae5311b68 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/presentation-chart-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/printer.svg b/src/components/icons/svg/untitledui-icons/printer.svg new file mode 100644 index 000000000..e9eca3927 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/printer.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/puzzle-piece-01.svg b/src/components/icons/svg/untitledui-icons/puzzle-piece-01.svg new file mode 100644 index 000000000..58a90331e --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/puzzle-piece-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/puzzle-piece-02.svg b/src/components/icons/svg/untitledui-icons/puzzle-piece-02.svg new file mode 100644 index 000000000..62160dc4d --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/puzzle-piece-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/qr-code-01.svg b/src/components/icons/svg/untitledui-icons/qr-code-01.svg new file mode 100644 index 000000000..c8ad5d3b5 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/qr-code-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/qr-code-02.svg b/src/components/icons/svg/untitledui-icons/qr-code-02.svg new file mode 100644 index 000000000..4aa662571 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/qr-code-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/receipt-check.svg b/src/components/icons/svg/untitledui-icons/receipt-check.svg new file mode 100644 index 000000000..c62a824b6 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/receipt-check.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/receipt.svg b/src/components/icons/svg/untitledui-icons/receipt.svg new file mode 100644 index 000000000..08a3c3579 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/receipt.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/recording-01.svg b/src/components/icons/svg/untitledui-icons/recording-01.svg new file mode 100644 index 000000000..21f1c36f2 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/recording-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/recording-02.svg b/src/components/icons/svg/untitledui-icons/recording-02.svg new file mode 100644 index 000000000..09fdffa78 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/recording-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/recording-03.svg b/src/components/icons/svg/untitledui-icons/recording-03.svg new file mode 100644 index 000000000..2735639f4 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/recording-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/reflect-01.svg b/src/components/icons/svg/untitledui-icons/reflect-01.svg new file mode 100644 index 000000000..e2df6b24f --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/reflect-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/reflect-02.svg b/src/components/icons/svg/untitledui-icons/reflect-02.svg new file mode 100644 index 000000000..f0f428958 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/reflect-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/refresh-ccw-01.svg b/src/components/icons/svg/untitledui-icons/refresh-ccw-01.svg new file mode 100644 index 000000000..706c677c3 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/refresh-ccw-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/refresh-ccw-02.svg b/src/components/icons/svg/untitledui-icons/refresh-ccw-02.svg new file mode 100644 index 000000000..9dc1e9353 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/refresh-ccw-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/refresh-ccw-03.svg b/src/components/icons/svg/untitledui-icons/refresh-ccw-03.svg new file mode 100644 index 000000000..99362d7ea --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/refresh-ccw-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/refresh-ccw-04.svg b/src/components/icons/svg/untitledui-icons/refresh-ccw-04.svg new file mode 100644 index 000000000..686a1ae37 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/refresh-ccw-04.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/refresh-ccw-05.svg b/src/components/icons/svg/untitledui-icons/refresh-ccw-05.svg new file mode 100644 index 000000000..686afca32 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/refresh-ccw-05.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/refresh-cw-01.svg b/src/components/icons/svg/untitledui-icons/refresh-cw-01.svg new file mode 100644 index 000000000..de4886a48 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/refresh-cw-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/refresh-cw-02.svg b/src/components/icons/svg/untitledui-icons/refresh-cw-02.svg new file mode 100644 index 000000000..4203204e7 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/refresh-cw-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/refresh-cw-03.svg b/src/components/icons/svg/untitledui-icons/refresh-cw-03.svg new file mode 100644 index 000000000..9d75afc65 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/refresh-cw-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/refresh-cw-04.svg b/src/components/icons/svg/untitledui-icons/refresh-cw-04.svg new file mode 100644 index 000000000..f9d7b47a9 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/refresh-cw-04.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/refresh-cw-05.svg b/src/components/icons/svg/untitledui-icons/refresh-cw-05.svg new file mode 100644 index 000000000..5a56911c5 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/refresh-cw-05.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/repeat-01.svg b/src/components/icons/svg/untitledui-icons/repeat-01.svg new file mode 100644 index 000000000..237eed0d1 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/repeat-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/repeat-02.svg b/src/components/icons/svg/untitledui-icons/repeat-02.svg new file mode 100644 index 000000000..0937f8a11 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/repeat-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/repeat-03.svg b/src/components/icons/svg/untitledui-icons/repeat-03.svg new file mode 100644 index 000000000..1e4af86f5 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/repeat-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/repeat-04.svg b/src/components/icons/svg/untitledui-icons/repeat-04.svg new file mode 100644 index 000000000..a6095fc2e --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/repeat-04.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/reverse-left.svg b/src/components/icons/svg/untitledui-icons/reverse-left.svg new file mode 100644 index 000000000..cf77bbe82 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/reverse-left.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/reverse-right.svg b/src/components/icons/svg/untitledui-icons/reverse-right.svg new file mode 100644 index 000000000..9f06bfffa --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/reverse-right.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/right-indent-01.svg b/src/components/icons/svg/untitledui-icons/right-indent-01.svg new file mode 100644 index 000000000..a5d1fa2f0 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/right-indent-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/right-indent-02.svg b/src/components/icons/svg/untitledui-icons/right-indent-02.svg new file mode 100644 index 000000000..37ac205c3 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/right-indent-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/rocket-01.svg b/src/components/icons/svg/untitledui-icons/rocket-01.svg new file mode 100644 index 000000000..6c187aa97 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/rocket-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/rocket-02.svg b/src/components/icons/svg/untitledui-icons/rocket-02.svg new file mode 100644 index 000000000..9a7614e45 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/rocket-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/roller-brush.svg b/src/components/icons/svg/untitledui-icons/roller-brush.svg new file mode 100644 index 000000000..1709076d3 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/roller-brush.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/route.svg b/src/components/icons/svg/untitledui-icons/route.svg new file mode 100644 index 000000000..4dad0eb6c --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/route.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/rows-01.svg b/src/components/icons/svg/untitledui-icons/rows-01.svg new file mode 100644 index 000000000..8e05dde82 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/rows-01.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/components/icons/svg/untitledui-icons/rows-02.svg b/src/components/icons/svg/untitledui-icons/rows-02.svg new file mode 100644 index 000000000..7ca6ab87c --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/rows-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/rows-03.svg b/src/components/icons/svg/untitledui-icons/rows-03.svg new file mode 100644 index 000000000..83b10a6a1 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/rows-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/rss-01.svg b/src/components/icons/svg/untitledui-icons/rss-01.svg new file mode 100644 index 000000000..4ab1083af --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/rss-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/rss-02.svg b/src/components/icons/svg/untitledui-icons/rss-02.svg new file mode 100644 index 000000000..3b181fa23 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/rss-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/ruler.svg b/src/components/icons/svg/untitledui-icons/ruler.svg new file mode 100644 index 000000000..3b1052c1b --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/ruler.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/safe.svg b/src/components/icons/svg/untitledui-icons/safe.svg new file mode 100644 index 000000000..7396f3551 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/safe.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/sale-01.svg b/src/components/icons/svg/untitledui-icons/sale-01.svg new file mode 100644 index 000000000..7001e800c --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/sale-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/sale-02.svg b/src/components/icons/svg/untitledui-icons/sale-02.svg new file mode 100644 index 000000000..ebfc22124 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/sale-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/sale-03.svg b/src/components/icons/svg/untitledui-icons/sale-03.svg new file mode 100644 index 000000000..94c651869 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/sale-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/sale-04.svg b/src/components/icons/svg/untitledui-icons/sale-04.svg new file mode 100644 index 000000000..9ec28a10d --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/sale-04.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/save-01.svg b/src/components/icons/svg/untitledui-icons/save-01.svg new file mode 100644 index 000000000..ac941770c --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/save-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/save-02.svg b/src/components/icons/svg/untitledui-icons/save-02.svg new file mode 100644 index 000000000..1c5a2b87a --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/save-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/save-03.svg b/src/components/icons/svg/untitledui-icons/save-03.svg new file mode 100644 index 000000000..a4a7bc216 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/save-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/scale-01.svg b/src/components/icons/svg/untitledui-icons/scale-01.svg new file mode 100644 index 000000000..613c6ea8d --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/scale-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/scale-02.svg b/src/components/icons/svg/untitledui-icons/scale-02.svg new file mode 100644 index 000000000..0629a19ca --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/scale-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/scale-03.svg b/src/components/icons/svg/untitledui-icons/scale-03.svg new file mode 100644 index 000000000..4c78cf5dc --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/scale-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/scales-01.svg b/src/components/icons/svg/untitledui-icons/scales-01.svg new file mode 100644 index 000000000..279457262 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/scales-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/scales-02.svg b/src/components/icons/svg/untitledui-icons/scales-02.svg new file mode 100644 index 000000000..f375fdba3 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/scales-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/scan.svg b/src/components/icons/svg/untitledui-icons/scan.svg new file mode 100644 index 000000000..e149495a8 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/scan.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/scissors-01.svg b/src/components/icons/svg/untitledui-icons/scissors-01.svg new file mode 100644 index 000000000..bdd55df95 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/scissors-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/scissors-02.svg b/src/components/icons/svg/untitledui-icons/scissors-02.svg new file mode 100644 index 000000000..bbca3ae15 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/scissors-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/scissors-cut-01.svg b/src/components/icons/svg/untitledui-icons/scissors-cut-01.svg new file mode 100644 index 000000000..d73b4828a --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/scissors-cut-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/scissors-cut-02.svg b/src/components/icons/svg/untitledui-icons/scissors-cut-02.svg new file mode 100644 index 000000000..cb78196b6 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/scissors-cut-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/search-lg.svg b/src/components/icons/svg/untitledui-icons/search-lg.svg new file mode 100644 index 000000000..22367983d --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/search-lg.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/search-md.svg b/src/components/icons/svg/untitledui-icons/search-md.svg new file mode 100644 index 000000000..78f9672ad --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/search-md.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/search-refraction.svg b/src/components/icons/svg/untitledui-icons/search-refraction.svg new file mode 100644 index 000000000..67210eb32 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/search-refraction.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/search-sm.svg b/src/components/icons/svg/untitledui-icons/search-sm.svg new file mode 100644 index 000000000..f89fa0cdd --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/search-sm.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/send-01.svg b/src/components/icons/svg/untitledui-icons/send-01.svg new file mode 100644 index 000000000..dfe5ee5b0 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/send-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/send-02.svg b/src/components/icons/svg/untitledui-icons/send-02.svg new file mode 100644 index 000000000..868b3bdfd --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/send-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/send-03.svg b/src/components/icons/svg/untitledui-icons/send-03.svg new file mode 100644 index 000000000..3f6eb2e18 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/send-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/server-01.svg b/src/components/icons/svg/untitledui-icons/server-01.svg new file mode 100644 index 000000000..ce6350d0d --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/server-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/server-02.svg b/src/components/icons/svg/untitledui-icons/server-02.svg new file mode 100644 index 000000000..5c39307df --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/server-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/server-03.svg b/src/components/icons/svg/untitledui-icons/server-03.svg new file mode 100644 index 000000000..3a8dbbd24 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/server-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/server-04.svg b/src/components/icons/svg/untitledui-icons/server-04.svg new file mode 100644 index 000000000..b47a9de92 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/server-04.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/server-05.svg b/src/components/icons/svg/untitledui-icons/server-05.svg new file mode 100644 index 000000000..d99cce427 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/server-05.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/server-06.svg b/src/components/icons/svg/untitledui-icons/server-06.svg new file mode 100644 index 000000000..58c2fef80 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/server-06.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/settings-01.svg b/src/components/icons/svg/untitledui-icons/settings-01.svg new file mode 100644 index 000000000..36be926cd --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/settings-01.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/components/icons/svg/untitledui-icons/settings-02.svg b/src/components/icons/svg/untitledui-icons/settings-02.svg new file mode 100644 index 000000000..dda0723d5 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/settings-02.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/components/icons/svg/untitledui-icons/settings-03.svg b/src/components/icons/svg/untitledui-icons/settings-03.svg new file mode 100644 index 000000000..f400cac0a --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/settings-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/settings-04.svg b/src/components/icons/svg/untitledui-icons/settings-04.svg new file mode 100644 index 000000000..4988409ac --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/settings-04.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/share-01.svg b/src/components/icons/svg/untitledui-icons/share-01.svg new file mode 100644 index 000000000..55074289d --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/share-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/share-02.svg b/src/components/icons/svg/untitledui-icons/share-02.svg new file mode 100644 index 000000000..4e38523df --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/share-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/share-03.svg b/src/components/icons/svg/untitledui-icons/share-03.svg new file mode 100644 index 000000000..536d3c4bd --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/share-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/share-04.svg b/src/components/icons/svg/untitledui-icons/share-04.svg new file mode 100644 index 000000000..0cfd5b7d3 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/share-04.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/share-05.svg b/src/components/icons/svg/untitledui-icons/share-05.svg new file mode 100644 index 000000000..a014f1822 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/share-05.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/share-06.svg b/src/components/icons/svg/untitledui-icons/share-06.svg new file mode 100644 index 000000000..d96d05c1c --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/share-06.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/share-07.svg b/src/components/icons/svg/untitledui-icons/share-07.svg new file mode 100644 index 000000000..3ebadfba4 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/share-07.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/shield-01.svg b/src/components/icons/svg/untitledui-icons/shield-01.svg new file mode 100644 index 000000000..2c90d164c --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/shield-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/shield-02.svg b/src/components/icons/svg/untitledui-icons/shield-02.svg new file mode 100644 index 000000000..23701b6dd --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/shield-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/shield-03.svg b/src/components/icons/svg/untitledui-icons/shield-03.svg new file mode 100644 index 000000000..bf22f4416 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/shield-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/shield-dollar.svg b/src/components/icons/svg/untitledui-icons/shield-dollar.svg new file mode 100644 index 000000000..a331cf455 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/shield-dollar.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/shield-off.svg b/src/components/icons/svg/untitledui-icons/shield-off.svg new file mode 100644 index 000000000..b496c4380 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/shield-off.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/shield-plus.svg b/src/components/icons/svg/untitledui-icons/shield-plus.svg new file mode 100644 index 000000000..e4b969511 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/shield-plus.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/shield-tick.svg b/src/components/icons/svg/untitledui-icons/shield-tick.svg new file mode 100644 index 000000000..dae050688 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/shield-tick.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/shield-zap.svg b/src/components/icons/svg/untitledui-icons/shield-zap.svg new file mode 100644 index 000000000..9ac32b234 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/shield-zap.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/shopping-bag-01.svg b/src/components/icons/svg/untitledui-icons/shopping-bag-01.svg new file mode 100644 index 000000000..ca0527937 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/shopping-bag-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/shopping-bag-02.svg b/src/components/icons/svg/untitledui-icons/shopping-bag-02.svg new file mode 100644 index 000000000..e48315eba --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/shopping-bag-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/shopping-bag-03.svg b/src/components/icons/svg/untitledui-icons/shopping-bag-03.svg new file mode 100644 index 000000000..09c3b9f62 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/shopping-bag-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/shopping-cart-01.svg b/src/components/icons/svg/untitledui-icons/shopping-cart-01.svg new file mode 100644 index 000000000..dc9a0a679 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/shopping-cart-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/shopping-cart-02.svg b/src/components/icons/svg/untitledui-icons/shopping-cart-02.svg new file mode 100644 index 000000000..254f1c288 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/shopping-cart-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/shopping-cart-03.svg b/src/components/icons/svg/untitledui-icons/shopping-cart-03.svg new file mode 100644 index 000000000..489177079 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/shopping-cart-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/shuffle-01.svg b/src/components/icons/svg/untitledui-icons/shuffle-01.svg new file mode 100644 index 000000000..8f3ba5fd9 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/shuffle-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/shuffle-02.svg b/src/components/icons/svg/untitledui-icons/shuffle-02.svg new file mode 100644 index 000000000..d2fcfde78 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/shuffle-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/signal-01.svg b/src/components/icons/svg/untitledui-icons/signal-01.svg new file mode 100644 index 000000000..f67806f43 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/signal-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/signal-02.svg b/src/components/icons/svg/untitledui-icons/signal-02.svg new file mode 100644 index 000000000..f6f1c3b0d --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/signal-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/signal-03.svg b/src/components/icons/svg/untitledui-icons/signal-03.svg new file mode 100644 index 000000000..e4c82c65d --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/signal-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/simcard.svg b/src/components/icons/svg/untitledui-icons/simcard.svg new file mode 100644 index 000000000..33676e5fa --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/simcard.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/components/icons/svg/untitledui-icons/skew.svg b/src/components/icons/svg/untitledui-icons/skew.svg new file mode 100644 index 000000000..fb9cbee7a --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/skew.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/skip-back.svg b/src/components/icons/svg/untitledui-icons/skip-back.svg new file mode 100644 index 000000000..cbd0c9c29 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/skip-back.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/skip-forward.svg b/src/components/icons/svg/untitledui-icons/skip-forward.svg new file mode 100644 index 000000000..f4e784fb0 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/skip-forward.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/slash-circle-01.svg b/src/components/icons/svg/untitledui-icons/slash-circle-01.svg new file mode 100644 index 000000000..56641fd05 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/slash-circle-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/slash-circle-02.svg b/src/components/icons/svg/untitledui-icons/slash-circle-02.svg new file mode 100644 index 000000000..0c6be2bf3 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/slash-circle-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/slash-divider.svg b/src/components/icons/svg/untitledui-icons/slash-divider.svg new file mode 100644 index 000000000..603fc2b94 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/slash-divider.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/slash-octagon.svg b/src/components/icons/svg/untitledui-icons/slash-octagon.svg new file mode 100644 index 000000000..f77ff6887 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/slash-octagon.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/sliders-01.svg b/src/components/icons/svg/untitledui-icons/sliders-01.svg new file mode 100644 index 000000000..d493fd576 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/sliders-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/sliders-02.svg b/src/components/icons/svg/untitledui-icons/sliders-02.svg new file mode 100644 index 000000000..7bc08c20a --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/sliders-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/sliders-03.svg b/src/components/icons/svg/untitledui-icons/sliders-03.svg new file mode 100644 index 000000000..f400cac0a --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/sliders-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/sliders-04.svg b/src/components/icons/svg/untitledui-icons/sliders-04.svg new file mode 100644 index 000000000..4988409ac --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/sliders-04.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/snowflake-01.svg b/src/components/icons/svg/untitledui-icons/snowflake-01.svg new file mode 100644 index 000000000..cfddec9e9 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/snowflake-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/snowflake-02.svg b/src/components/icons/svg/untitledui-icons/snowflake-02.svg new file mode 100644 index 000000000..b574f1fdc --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/snowflake-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/spacing-height-01.svg b/src/components/icons/svg/untitledui-icons/spacing-height-01.svg new file mode 100644 index 000000000..fadafab68 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/spacing-height-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/spacing-height-02.svg b/src/components/icons/svg/untitledui-icons/spacing-height-02.svg new file mode 100644 index 000000000..6b9170ce7 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/spacing-height-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/spacing-width-01.svg b/src/components/icons/svg/untitledui-icons/spacing-width-01.svg new file mode 100644 index 000000000..b6ad2caf7 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/spacing-width-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/spacing-width-02.svg b/src/components/icons/svg/untitledui-icons/spacing-width-02.svg new file mode 100644 index 000000000..99bb4c631 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/spacing-width-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/speaker-01.svg b/src/components/icons/svg/untitledui-icons/speaker-01.svg new file mode 100644 index 000000000..5799371e2 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/speaker-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/speaker-02.svg b/src/components/icons/svg/untitledui-icons/speaker-02.svg new file mode 100644 index 000000000..6d865efc6 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/speaker-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/speaker-03.svg b/src/components/icons/svg/untitledui-icons/speaker-03.svg new file mode 100644 index 000000000..27a408d8d --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/speaker-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/speedometer-01.svg b/src/components/icons/svg/untitledui-icons/speedometer-01.svg new file mode 100644 index 000000000..47bef7029 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/speedometer-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/speedometer-02.svg b/src/components/icons/svg/untitledui-icons/speedometer-02.svg new file mode 100644 index 000000000..7ae41af9f --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/speedometer-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/speedometer-03.svg b/src/components/icons/svg/untitledui-icons/speedometer-03.svg new file mode 100644 index 000000000..ac86debd5 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/speedometer-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/speedometer-04.svg b/src/components/icons/svg/untitledui-icons/speedometer-04.svg new file mode 100644 index 000000000..d3b6f4604 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/speedometer-04.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/square.svg b/src/components/icons/svg/untitledui-icons/square.svg new file mode 100644 index 000000000..d81418fb9 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/square.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/stand.svg b/src/components/icons/svg/untitledui-icons/stand.svg new file mode 100644 index 000000000..b17d1df84 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/stand.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/star-01.svg b/src/components/icons/svg/untitledui-icons/star-01.svg new file mode 100644 index 000000000..5ba9f7355 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/star-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/star-02.svg b/src/components/icons/svg/untitledui-icons/star-02.svg new file mode 100644 index 000000000..7749f11c2 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/star-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/star-03.svg b/src/components/icons/svg/untitledui-icons/star-03.svg new file mode 100644 index 000000000..fbff5bd4e --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/star-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/star-04.svg b/src/components/icons/svg/untitledui-icons/star-04.svg new file mode 100644 index 000000000..642e9cb4a --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/star-04.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/star-05.svg b/src/components/icons/svg/untitledui-icons/star-05.svg new file mode 100644 index 000000000..04757b518 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/star-05.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/star-06.svg b/src/components/icons/svg/untitledui-icons/star-06.svg new file mode 100644 index 000000000..1e07d6443 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/star-06.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/star-07.svg b/src/components/icons/svg/untitledui-icons/star-07.svg new file mode 100644 index 000000000..665fb46b8 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/star-07.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/stars-01.svg b/src/components/icons/svg/untitledui-icons/stars-01.svg new file mode 100644 index 000000000..11c0be9f4 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/stars-01.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/components/icons/svg/untitledui-icons/stars-02.svg b/src/components/icons/svg/untitledui-icons/stars-02.svg new file mode 100644 index 000000000..324aa94aa --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/stars-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/stars-03.svg b/src/components/icons/svg/untitledui-icons/stars-03.svg new file mode 100644 index 000000000..1971f5243 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/stars-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/sticker-circle.svg b/src/components/icons/svg/untitledui-icons/sticker-circle.svg new file mode 100644 index 000000000..40b8d6c79 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/sticker-circle.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/components/icons/svg/untitledui-icons/sticker-square.svg b/src/components/icons/svg/untitledui-icons/sticker-square.svg new file mode 100644 index 000000000..f3e85ca54 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/sticker-square.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/stop-circle.svg b/src/components/icons/svg/untitledui-icons/stop-circle.svg new file mode 100644 index 000000000..cbddaa187 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/stop-circle.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/components/icons/svg/untitledui-icons/stop-square.svg b/src/components/icons/svg/untitledui-icons/stop-square.svg new file mode 100644 index 000000000..46556f3b6 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/stop-square.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/components/icons/svg/untitledui-icons/stop.svg b/src/components/icons/svg/untitledui-icons/stop.svg new file mode 100644 index 000000000..d81418fb9 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/stop.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/strikethrough-01.svg b/src/components/icons/svg/untitledui-icons/strikethrough-01.svg new file mode 100644 index 000000000..6a819e932 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/strikethrough-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/strikethrough-02.svg b/src/components/icons/svg/untitledui-icons/strikethrough-02.svg new file mode 100644 index 000000000..1956bf82b --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/strikethrough-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/strikethrough-square.svg b/src/components/icons/svg/untitledui-icons/strikethrough-square.svg new file mode 100644 index 000000000..fb5fdc51e --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/strikethrough-square.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/subscript.svg b/src/components/icons/svg/untitledui-icons/subscript.svg new file mode 100644 index 000000000..ffe2999d7 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/subscript.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/sun-setting-01.svg b/src/components/icons/svg/untitledui-icons/sun-setting-01.svg new file mode 100644 index 000000000..0b8102c8e --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/sun-setting-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/sun-setting-02.svg b/src/components/icons/svg/untitledui-icons/sun-setting-02.svg new file mode 100644 index 000000000..92a438ace --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/sun-setting-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/sun-setting-03.svg b/src/components/icons/svg/untitledui-icons/sun-setting-03.svg new file mode 100644 index 000000000..5b711af52 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/sun-setting-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/sun.svg b/src/components/icons/svg/untitledui-icons/sun.svg new file mode 100644 index 000000000..4e58895f2 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/sun.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/sunrise.svg b/src/components/icons/svg/untitledui-icons/sunrise.svg new file mode 100644 index 000000000..2c0d5bcd9 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/sunrise.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/sunset.svg b/src/components/icons/svg/untitledui-icons/sunset.svg new file mode 100644 index 000000000..654ba4c74 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/sunset.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/switch-horizontal-01.svg b/src/components/icons/svg/untitledui-icons/switch-horizontal-01.svg new file mode 100644 index 000000000..2a7e982b7 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/switch-horizontal-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/switch-horizontal-02.svg b/src/components/icons/svg/untitledui-icons/switch-horizontal-02.svg new file mode 100644 index 000000000..70835a34d --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/switch-horizontal-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/switch-vertical-01.svg b/src/components/icons/svg/untitledui-icons/switch-vertical-01.svg new file mode 100644 index 000000000..0cdd56abd --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/switch-vertical-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/switch-vertical-02.svg b/src/components/icons/svg/untitledui-icons/switch-vertical-02.svg new file mode 100644 index 000000000..a120cbc71 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/switch-vertical-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/table.svg b/src/components/icons/svg/untitledui-icons/table.svg new file mode 100644 index 000000000..ae115d515 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/table.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/tablet-01.svg b/src/components/icons/svg/untitledui-icons/tablet-01.svg new file mode 100644 index 000000000..054586acc --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/tablet-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/tablet-02.svg b/src/components/icons/svg/untitledui-icons/tablet-02.svg new file mode 100644 index 000000000..5cf516c9b --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/tablet-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/tag-01.svg b/src/components/icons/svg/untitledui-icons/tag-01.svg new file mode 100644 index 000000000..3a8ffe073 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/tag-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/tag-02.svg b/src/components/icons/svg/untitledui-icons/tag-02.svg new file mode 100644 index 000000000..82335b4e4 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/tag-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/tag-03.svg b/src/components/icons/svg/untitledui-icons/tag-03.svg new file mode 100644 index 000000000..bb16476d8 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/tag-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/target-01.svg b/src/components/icons/svg/untitledui-icons/target-01.svg new file mode 100644 index 000000000..4a09b8adc --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/target-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/target-02.svg b/src/components/icons/svg/untitledui-icons/target-02.svg new file mode 100644 index 000000000..f593a5240 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/target-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/target-03.svg b/src/components/icons/svg/untitledui-icons/target-03.svg new file mode 100644 index 000000000..99a916fb1 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/target-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/target-04.svg b/src/components/icons/svg/untitledui-icons/target-04.svg new file mode 100644 index 000000000..ebd4a1215 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/target-04.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/target-05.svg b/src/components/icons/svg/untitledui-icons/target-05.svg new file mode 100644 index 000000000..68776d310 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/target-05.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/components/icons/svg/untitledui-icons/telescope.svg b/src/components/icons/svg/untitledui-icons/telescope.svg new file mode 100644 index 000000000..154db764b --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/telescope.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/terminal-browser.svg b/src/components/icons/svg/untitledui-icons/terminal-browser.svg new file mode 100644 index 000000000..d183324df --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/terminal-browser.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/terminal-circle.svg b/src/components/icons/svg/untitledui-icons/terminal-circle.svg new file mode 100644 index 000000000..a6a0fcef7 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/terminal-circle.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/terminal-square.svg b/src/components/icons/svg/untitledui-icons/terminal-square.svg new file mode 100644 index 000000000..f56b954e0 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/terminal-square.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/terminal.svg b/src/components/icons/svg/untitledui-icons/terminal.svg new file mode 100644 index 000000000..8ba2ad631 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/terminal.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/text-input.svg b/src/components/icons/svg/untitledui-icons/text-input.svg new file mode 100644 index 000000000..6bf721cc3 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/text-input.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/thermometer-01.svg b/src/components/icons/svg/untitledui-icons/thermometer-01.svg new file mode 100644 index 000000000..69a19bad6 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/thermometer-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/thermometer-02.svg b/src/components/icons/svg/untitledui-icons/thermometer-02.svg new file mode 100644 index 000000000..fe4f04ce7 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/thermometer-02.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/components/icons/svg/untitledui-icons/thermometer-03.svg b/src/components/icons/svg/untitledui-icons/thermometer-03.svg new file mode 100644 index 000000000..b8956904a --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/thermometer-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/thermometer-cold.svg b/src/components/icons/svg/untitledui-icons/thermometer-cold.svg new file mode 100644 index 000000000..d7d924b71 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/thermometer-cold.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/thermometer-warm.svg b/src/components/icons/svg/untitledui-icons/thermometer-warm.svg new file mode 100644 index 000000000..c87c2f9b7 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/thermometer-warm.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/thumbs-down.svg b/src/components/icons/svg/untitledui-icons/thumbs-down.svg new file mode 100644 index 000000000..2065c9f46 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/thumbs-down.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/thumbs-up.svg b/src/components/icons/svg/untitledui-icons/thumbs-up.svg new file mode 100644 index 000000000..d8927ef9c --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/thumbs-up.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/ticket-01.svg b/src/components/icons/svg/untitledui-icons/ticket-01.svg new file mode 100644 index 000000000..c81e8ea5c --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/ticket-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/ticket-02.svg b/src/components/icons/svg/untitledui-icons/ticket-02.svg new file mode 100644 index 000000000..1302fd518 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/ticket-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/toggle-01-left.svg b/src/components/icons/svg/untitledui-icons/toggle-01-left.svg new file mode 100644 index 000000000..bf8d6f53e --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/toggle-01-left.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/toggle-01-right.svg b/src/components/icons/svg/untitledui-icons/toggle-01-right.svg new file mode 100644 index 000000000..40a2c8660 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/toggle-01-right.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/toggle-02-left.svg b/src/components/icons/svg/untitledui-icons/toggle-02-left.svg new file mode 100644 index 000000000..50a9a7c7b --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/toggle-02-left.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/toggle-02-right.svg b/src/components/icons/svg/untitledui-icons/toggle-02-right.svg new file mode 100644 index 000000000..47ac14620 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/toggle-02-right.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/toggle-03-left.svg b/src/components/icons/svg/untitledui-icons/toggle-03-left.svg new file mode 100644 index 000000000..4ef171ac7 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/toggle-03-left.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/components/icons/svg/untitledui-icons/toggle-03-right.svg b/src/components/icons/svg/untitledui-icons/toggle-03-right.svg new file mode 100644 index 000000000..653ae1404 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/toggle-03-right.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/components/icons/svg/untitledui-icons/tool-01.svg b/src/components/icons/svg/untitledui-icons/tool-01.svg new file mode 100644 index 000000000..1702abb9e --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/tool-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/tool-02.svg b/src/components/icons/svg/untitledui-icons/tool-02.svg new file mode 100644 index 000000000..09aef685d --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/tool-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/train.svg b/src/components/icons/svg/untitledui-icons/train.svg new file mode 100644 index 000000000..64c41a241 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/train.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/tram.svg b/src/components/icons/svg/untitledui-icons/tram.svg new file mode 100644 index 000000000..715392dcc --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/tram.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/transform.svg b/src/components/icons/svg/untitledui-icons/transform.svg new file mode 100644 index 000000000..26d24178a --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/transform.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/translate-01.svg b/src/components/icons/svg/untitledui-icons/translate-01.svg new file mode 100644 index 000000000..6e0759ad2 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/translate-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/translate-02.svg b/src/components/icons/svg/untitledui-icons/translate-02.svg new file mode 100644 index 000000000..0d2b47a05 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/translate-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/trash-01.svg b/src/components/icons/svg/untitledui-icons/trash-01.svg new file mode 100644 index 000000000..fa4c44339 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/trash-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/trash-02.svg b/src/components/icons/svg/untitledui-icons/trash-02.svg new file mode 100644 index 000000000..4e928ac41 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/trash-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/trash-03.svg b/src/components/icons/svg/untitledui-icons/trash-03.svg new file mode 100644 index 000000000..f1741002f --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/trash-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/trash-04.svg b/src/components/icons/svg/untitledui-icons/trash-04.svg new file mode 100644 index 000000000..1c198aafd --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/trash-04.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/trend-down-01.svg b/src/components/icons/svg/untitledui-icons/trend-down-01.svg new file mode 100644 index 000000000..a7f60dc3c --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/trend-down-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/trend-down-02.svg b/src/components/icons/svg/untitledui-icons/trend-down-02.svg new file mode 100644 index 000000000..e98b69535 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/trend-down-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/trend-up-01.svg b/src/components/icons/svg/untitledui-icons/trend-up-01.svg new file mode 100644 index 000000000..e2b3f7fa6 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/trend-up-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/trend-up-02.svg b/src/components/icons/svg/untitledui-icons/trend-up-02.svg new file mode 100644 index 000000000..7ffe13f9d --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/trend-up-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/triangle.svg b/src/components/icons/svg/untitledui-icons/triangle.svg new file mode 100644 index 000000000..d89d7a7a6 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/triangle.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/trophy-01.svg b/src/components/icons/svg/untitledui-icons/trophy-01.svg new file mode 100644 index 000000000..7abed748d --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/trophy-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/trophy-02.svg b/src/components/icons/svg/untitledui-icons/trophy-02.svg new file mode 100644 index 000000000..9048f2507 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/trophy-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/truck-01.svg b/src/components/icons/svg/untitledui-icons/truck-01.svg new file mode 100644 index 000000000..0dd26d2c4 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/truck-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/truck-02.svg b/src/components/icons/svg/untitledui-icons/truck-02.svg new file mode 100644 index 000000000..97aa2802a --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/truck-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/tv-01.svg b/src/components/icons/svg/untitledui-icons/tv-01.svg new file mode 100644 index 000000000..2fdfa6ff3 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/tv-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/tv-02.svg b/src/components/icons/svg/untitledui-icons/tv-02.svg new file mode 100644 index 000000000..2f53e7ec9 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/tv-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/tv-03.svg b/src/components/icons/svg/untitledui-icons/tv-03.svg new file mode 100644 index 000000000..8ffc6f8e6 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/tv-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/type-01.svg b/src/components/icons/svg/untitledui-icons/type-01.svg new file mode 100644 index 000000000..cc02a030f --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/type-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/type-02.svg b/src/components/icons/svg/untitledui-icons/type-02.svg new file mode 100644 index 000000000..82de13f21 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/type-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/type-square.svg b/src/components/icons/svg/untitledui-icons/type-square.svg new file mode 100644 index 000000000..773d0eb46 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/type-square.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/type-strikethrough-01.svg b/src/components/icons/svg/untitledui-icons/type-strikethrough-01.svg new file mode 100644 index 000000000..251564657 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/type-strikethrough-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/type-strikethrough-02.svg b/src/components/icons/svg/untitledui-icons/type-strikethrough-02.svg new file mode 100644 index 000000000..8e2e2896a --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/type-strikethrough-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/umbrella-01.svg b/src/components/icons/svg/untitledui-icons/umbrella-01.svg new file mode 100644 index 000000000..7f58dd883 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/umbrella-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/umbrella-02.svg b/src/components/icons/svg/untitledui-icons/umbrella-02.svg new file mode 100644 index 000000000..670a3bf22 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/umbrella-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/umbrella-03.svg b/src/components/icons/svg/untitledui-icons/umbrella-03.svg new file mode 100644 index 000000000..d23eb4161 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/umbrella-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/underline-01.svg b/src/components/icons/svg/untitledui-icons/underline-01.svg new file mode 100644 index 000000000..76d0aba93 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/underline-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/underline-02.svg b/src/components/icons/svg/untitledui-icons/underline-02.svg new file mode 100644 index 000000000..3490557ea --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/underline-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/underline-square.svg b/src/components/icons/svg/untitledui-icons/underline-square.svg new file mode 100644 index 000000000..f75dd4ec8 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/underline-square.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/upload-01.svg b/src/components/icons/svg/untitledui-icons/upload-01.svg new file mode 100644 index 000000000..e4107f216 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/upload-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/upload-02.svg b/src/components/icons/svg/untitledui-icons/upload-02.svg new file mode 100644 index 000000000..3ef9bb28b --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/upload-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/upload-03.svg b/src/components/icons/svg/untitledui-icons/upload-03.svg new file mode 100644 index 000000000..6309675bd --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/upload-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/upload-04.svg b/src/components/icons/svg/untitledui-icons/upload-04.svg new file mode 100644 index 000000000..32f992877 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/upload-04.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/upload-cloud-01.svg b/src/components/icons/svg/untitledui-icons/upload-cloud-01.svg new file mode 100644 index 000000000..03bca895b --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/upload-cloud-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/upload-cloud-02.svg b/src/components/icons/svg/untitledui-icons/upload-cloud-02.svg new file mode 100644 index 000000000..a2b7c8259 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/upload-cloud-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/usb-flash-drive.svg b/src/components/icons/svg/untitledui-icons/usb-flash-drive.svg new file mode 100644 index 000000000..637fdb8c4 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/usb-flash-drive.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/user-01.svg b/src/components/icons/svg/untitledui-icons/user-01.svg new file mode 100644 index 000000000..1edf22912 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/user-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/user-02.svg b/src/components/icons/svg/untitledui-icons/user-02.svg new file mode 100644 index 000000000..ada60e40f --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/user-02.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/components/icons/svg/untitledui-icons/user-03.svg b/src/components/icons/svg/untitledui-icons/user-03.svg new file mode 100644 index 000000000..5bd6e2ea1 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/user-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/user-check-01.svg b/src/components/icons/svg/untitledui-icons/user-check-01.svg new file mode 100644 index 000000000..ba91fd779 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/user-check-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/user-check-02.svg b/src/components/icons/svg/untitledui-icons/user-check-02.svg new file mode 100644 index 000000000..350aa5db7 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/user-check-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/user-circle.svg b/src/components/icons/svg/untitledui-icons/user-circle.svg new file mode 100644 index 000000000..3b0fa772c --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/user-circle.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/user-down-01.svg b/src/components/icons/svg/untitledui-icons/user-down-01.svg new file mode 100644 index 000000000..abd9f85cd --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/user-down-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/user-down-02.svg b/src/components/icons/svg/untitledui-icons/user-down-02.svg new file mode 100644 index 000000000..e8fdff931 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/user-down-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/user-edit.svg b/src/components/icons/svg/untitledui-icons/user-edit.svg new file mode 100644 index 000000000..6e2b5bca5 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/user-edit.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/user-left-01.svg b/src/components/icons/svg/untitledui-icons/user-left-01.svg new file mode 100644 index 000000000..e71371ba7 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/user-left-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/user-left-02.svg b/src/components/icons/svg/untitledui-icons/user-left-02.svg new file mode 100644 index 000000000..de5577612 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/user-left-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/user-minus-01.svg b/src/components/icons/svg/untitledui-icons/user-minus-01.svg new file mode 100644 index 000000000..34ee5ac74 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/user-minus-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/user-minus-02.svg b/src/components/icons/svg/untitledui-icons/user-minus-02.svg new file mode 100644 index 000000000..f6aa175c1 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/user-minus-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/user-plus-01.svg b/src/components/icons/svg/untitledui-icons/user-plus-01.svg new file mode 100644 index 000000000..7dae4b65c --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/user-plus-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/user-plus-02.svg b/src/components/icons/svg/untitledui-icons/user-plus-02.svg new file mode 100644 index 000000000..9bb08403e --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/user-plus-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/user-right-01.svg b/src/components/icons/svg/untitledui-icons/user-right-01.svg new file mode 100644 index 000000000..33fe43298 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/user-right-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/user-right-02.svg b/src/components/icons/svg/untitledui-icons/user-right-02.svg new file mode 100644 index 000000000..e182f435e --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/user-right-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/user-square.svg b/src/components/icons/svg/untitledui-icons/user-square.svg new file mode 100644 index 000000000..a78fb443d --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/user-square.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/user-up-01.svg b/src/components/icons/svg/untitledui-icons/user-up-01.svg new file mode 100644 index 000000000..224f9d00d --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/user-up-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/user-up-02.svg b/src/components/icons/svg/untitledui-icons/user-up-02.svg new file mode 100644 index 000000000..ccabbcf9e --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/user-up-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/user-x-01.svg b/src/components/icons/svg/untitledui-icons/user-x-01.svg new file mode 100644 index 000000000..eef390fb2 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/user-x-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/user-x-02.svg b/src/components/icons/svg/untitledui-icons/user-x-02.svg new file mode 100644 index 000000000..ab5870e27 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/user-x-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/users-01.svg b/src/components/icons/svg/untitledui-icons/users-01.svg new file mode 100644 index 000000000..007a85b87 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/users-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/users-02.svg b/src/components/icons/svg/untitledui-icons/users-02.svg new file mode 100644 index 000000000..9013e69db --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/users-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/users-03.svg b/src/components/icons/svg/untitledui-icons/users-03.svg new file mode 100644 index 000000000..7a4748dff --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/users-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/users-check.svg b/src/components/icons/svg/untitledui-icons/users-check.svg new file mode 100644 index 000000000..e5278aebe --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/users-check.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/users-down.svg b/src/components/icons/svg/untitledui-icons/users-down.svg new file mode 100644 index 000000000..09e07faae --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/users-down.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/users-edit.svg b/src/components/icons/svg/untitledui-icons/users-edit.svg new file mode 100644 index 000000000..de179cbc0 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/users-edit.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/users-left.svg b/src/components/icons/svg/untitledui-icons/users-left.svg new file mode 100644 index 000000000..4965579ab --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/users-left.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/users-minus.svg b/src/components/icons/svg/untitledui-icons/users-minus.svg new file mode 100644 index 000000000..e9e5b0df2 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/users-minus.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/users-plus.svg b/src/components/icons/svg/untitledui-icons/users-plus.svg new file mode 100644 index 000000000..cc508a532 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/users-plus.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/users-right.svg b/src/components/icons/svg/untitledui-icons/users-right.svg new file mode 100644 index 000000000..0c3993370 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/users-right.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/users-up.svg b/src/components/icons/svg/untitledui-icons/users-up.svg new file mode 100644 index 000000000..dccdd9b25 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/users-up.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/users-x.svg b/src/components/icons/svg/untitledui-icons/users-x.svg new file mode 100644 index 000000000..4f93df21f --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/users-x.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/variable.svg b/src/components/icons/svg/untitledui-icons/variable.svg new file mode 100644 index 000000000..d54f54ac7 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/variable.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/video-recorder-off.svg b/src/components/icons/svg/untitledui-icons/video-recorder-off.svg new file mode 100644 index 000000000..9d6743cbf --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/video-recorder-off.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/video-recorder.svg b/src/components/icons/svg/untitledui-icons/video-recorder.svg new file mode 100644 index 000000000..6ad3dd487 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/video-recorder.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/components/icons/svg/untitledui-icons/virus.svg b/src/components/icons/svg/untitledui-icons/virus.svg new file mode 100644 index 000000000..25feb263a --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/virus.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/voicemail.svg b/src/components/icons/svg/untitledui-icons/voicemail.svg new file mode 100644 index 000000000..23a579469 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/voicemail.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/volume-max.svg b/src/components/icons/svg/untitledui-icons/volume-max.svg new file mode 100644 index 000000000..ff91f659e --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/volume-max.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/volume-min.svg b/src/components/icons/svg/untitledui-icons/volume-min.svg new file mode 100644 index 000000000..dbc38e8e8 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/volume-min.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/volume-minus.svg b/src/components/icons/svg/untitledui-icons/volume-minus.svg new file mode 100644 index 000000000..54591a4f6 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/volume-minus.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/volume-plus.svg b/src/components/icons/svg/untitledui-icons/volume-plus.svg new file mode 100644 index 000000000..28f057093 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/volume-plus.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/volume-x.svg b/src/components/icons/svg/untitledui-icons/volume-x.svg new file mode 100644 index 000000000..bc0b6f081 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/volume-x.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/wallet-01.svg b/src/components/icons/svg/untitledui-icons/wallet-01.svg new file mode 100644 index 000000000..2e9ff26a8 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/wallet-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/wallet-02.svg b/src/components/icons/svg/untitledui-icons/wallet-02.svg new file mode 100644 index 000000000..ffed156cc --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/wallet-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/wallet-03.svg b/src/components/icons/svg/untitledui-icons/wallet-03.svg new file mode 100644 index 000000000..ed3af7e73 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/wallet-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/wallet-04.svg b/src/components/icons/svg/untitledui-icons/wallet-04.svg new file mode 100644 index 000000000..15d98e902 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/wallet-04.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/wallet-05.svg b/src/components/icons/svg/untitledui-icons/wallet-05.svg new file mode 100644 index 000000000..2170dd6a5 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/wallet-05.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/watch-circle.svg b/src/components/icons/svg/untitledui-icons/watch-circle.svg new file mode 100644 index 000000000..72c7ffeeb --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/watch-circle.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/watch-square.svg b/src/components/icons/svg/untitledui-icons/watch-square.svg new file mode 100644 index 000000000..46c7faac3 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/watch-square.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/waves.svg b/src/components/icons/svg/untitledui-icons/waves.svg new file mode 100644 index 000000000..b93caf18b --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/waves.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/webcam-01.svg b/src/components/icons/svg/untitledui-icons/webcam-01.svg new file mode 100644 index 000000000..ef1246595 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/webcam-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/webcam-02.svg b/src/components/icons/svg/untitledui-icons/webcam-02.svg new file mode 100644 index 000000000..43314f4ca --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/webcam-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/wifi-off.svg b/src/components/icons/svg/untitledui-icons/wifi-off.svg new file mode 100644 index 000000000..af38307f4 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/wifi-off.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/wifi.svg b/src/components/icons/svg/untitledui-icons/wifi.svg new file mode 100644 index 000000000..8520d55e5 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/wifi.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/wind-01.svg b/src/components/icons/svg/untitledui-icons/wind-01.svg new file mode 100644 index 000000000..90068c807 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/wind-01.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/wind-02.svg b/src/components/icons/svg/untitledui-icons/wind-02.svg new file mode 100644 index 000000000..3e1e86c36 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/wind-02.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/wind-03.svg b/src/components/icons/svg/untitledui-icons/wind-03.svg new file mode 100644 index 000000000..a36e6215a --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/wind-03.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/x-circle.svg b/src/components/icons/svg/untitledui-icons/x-circle.svg new file mode 100644 index 000000000..f77a87015 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/x-circle.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/x-close.svg b/src/components/icons/svg/untitledui-icons/x-close.svg new file mode 100644 index 000000000..433d4af28 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/x-close.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/x-square.svg b/src/components/icons/svg/untitledui-icons/x-square.svg new file mode 100644 index 000000000..d40bfbda1 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/x-square.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/x.svg b/src/components/icons/svg/untitledui-icons/x.svg new file mode 100644 index 000000000..23af3f694 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/x.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/youtube.svg b/src/components/icons/svg/untitledui-icons/youtube.svg new file mode 100644 index 000000000..2e261a94e --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/youtube.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/components/icons/svg/untitledui-icons/zap-circle.svg b/src/components/icons/svg/untitledui-icons/zap-circle.svg new file mode 100644 index 000000000..d8dc3629c --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/zap-circle.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/components/icons/svg/untitledui-icons/zap-fast.svg b/src/components/icons/svg/untitledui-icons/zap-fast.svg new file mode 100644 index 000000000..c476562c7 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/zap-fast.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/zap-off.svg b/src/components/icons/svg/untitledui-icons/zap-off.svg new file mode 100644 index 000000000..5a5dd8559 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/zap-off.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/zap-square.svg b/src/components/icons/svg/untitledui-icons/zap-square.svg new file mode 100644 index 000000000..8da222ac4 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/zap-square.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/components/icons/svg/untitledui-icons/zap.svg b/src/components/icons/svg/untitledui-icons/zap.svg new file mode 100644 index 000000000..0e5bc8cc6 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/zap.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/zoom-in.svg b/src/components/icons/svg/untitledui-icons/zoom-in.svg new file mode 100644 index 000000000..86accbcb6 --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/zoom-in.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/svg/untitledui-icons/zoom-out.svg b/src/components/icons/svg/untitledui-icons/zoom-out.svg new file mode 100644 index 000000000..caf22ce0a --- /dev/null +++ b/src/components/icons/svg/untitledui-icons/zoom-out.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/switch-horizontal-01.tsx b/src/components/icons/switch-horizontal-01.tsx new file mode 100644 index 000000000..e13b0ae64 --- /dev/null +++ b/src/components/icons/switch-horizontal-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const SwitchHorizontal01 = createIcon({ + displayName: "SwitchHorizontal01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default SwitchHorizontal01; diff --git a/src/components/icons/switch-horizontal-02.tsx b/src/components/icons/switch-horizontal-02.tsx new file mode 100644 index 000000000..9ccc62a8d --- /dev/null +++ b/src/components/icons/switch-horizontal-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const SwitchHorizontal02 = createIcon({ + displayName: "SwitchHorizontal02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default SwitchHorizontal02; diff --git a/src/components/icons/switch-vertical-01.tsx b/src/components/icons/switch-vertical-01.tsx new file mode 100644 index 000000000..43ad396b6 --- /dev/null +++ b/src/components/icons/switch-vertical-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const SwitchVertical01 = createIcon({ + displayName: "SwitchVertical01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default SwitchVertical01; diff --git a/src/components/icons/switch-vertical-02.tsx b/src/components/icons/switch-vertical-02.tsx new file mode 100644 index 000000000..ee2f11784 --- /dev/null +++ b/src/components/icons/switch-vertical-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const SwitchVertical02 = createIcon({ + displayName: "SwitchVertical02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default SwitchVertical02; diff --git a/src/components/icons/table.tsx b/src/components/icons/table.tsx new file mode 100644 index 000000000..07e70f8b7 --- /dev/null +++ b/src/components/icons/table.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Table = createIcon({ + displayName: "Table", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Table; diff --git a/src/components/icons/tablet-01.tsx b/src/components/icons/tablet-01.tsx new file mode 100644 index 000000000..621b54132 --- /dev/null +++ b/src/components/icons/tablet-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Tablet01 = createIcon({ + displayName: "Tablet01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Tablet01; diff --git a/src/components/icons/tablet-02.tsx b/src/components/icons/tablet-02.tsx new file mode 100644 index 000000000..e6c629712 --- /dev/null +++ b/src/components/icons/tablet-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Tablet02 = createIcon({ + displayName: "Tablet02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Tablet02; diff --git a/src/components/icons/tag-01.tsx b/src/components/icons/tag-01.tsx new file mode 100644 index 000000000..44fd097be --- /dev/null +++ b/src/components/icons/tag-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Tag01 = createIcon({ + displayName: "Tag01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Tag01; diff --git a/src/components/icons/tag-02.tsx b/src/components/icons/tag-02.tsx new file mode 100644 index 000000000..8d0badd0c --- /dev/null +++ b/src/components/icons/tag-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Tag02 = createIcon({ + displayName: "Tag02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Tag02; diff --git a/src/components/icons/tag-03.tsx b/src/components/icons/tag-03.tsx new file mode 100644 index 000000000..6f711deed --- /dev/null +++ b/src/components/icons/tag-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Tag03 = createIcon({ + displayName: "Tag03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Tag03; diff --git a/src/components/icons/target-01.tsx b/src/components/icons/target-01.tsx new file mode 100644 index 000000000..356f5ed60 --- /dev/null +++ b/src/components/icons/target-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Target01 = createIcon({ + displayName: "Target01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Target01; diff --git a/src/components/icons/target-02.tsx b/src/components/icons/target-02.tsx new file mode 100644 index 000000000..8ba498575 --- /dev/null +++ b/src/components/icons/target-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Target02 = createIcon({ + displayName: "Target02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Target02; diff --git a/src/components/icons/target-03.tsx b/src/components/icons/target-03.tsx new file mode 100644 index 000000000..08530a89a --- /dev/null +++ b/src/components/icons/target-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Target03 = createIcon({ + displayName: "Target03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Target03; diff --git a/src/components/icons/target-04.tsx b/src/components/icons/target-04.tsx new file mode 100644 index 000000000..162d88a9c --- /dev/null +++ b/src/components/icons/target-04.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Target04 = createIcon({ + displayName: "Target04", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Target04; diff --git a/src/components/icons/target-05.tsx b/src/components/icons/target-05.tsx new file mode 100644 index 000000000..2f49790b8 --- /dev/null +++ b/src/components/icons/target-05.tsx @@ -0,0 +1,35 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Target05 = createIcon({ + displayName: "Target05", + viewBox: "0 0 24 24", + path: [ + , + , + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Target05; diff --git a/src/components/icons/telescope.tsx b/src/components/icons/telescope.tsx new file mode 100644 index 000000000..005343719 --- /dev/null +++ b/src/components/icons/telescope.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Telescope = createIcon({ + displayName: "Telescope", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Telescope; diff --git a/src/components/icons/terminal-browser.tsx b/src/components/icons/terminal-browser.tsx new file mode 100644 index 000000000..42417a20b --- /dev/null +++ b/src/components/icons/terminal-browser.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const TerminalBrowser = createIcon({ + displayName: "TerminalBrowser", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default TerminalBrowser; diff --git a/src/components/icons/terminal-circle.tsx b/src/components/icons/terminal-circle.tsx new file mode 100644 index 000000000..0fa217d57 --- /dev/null +++ b/src/components/icons/terminal-circle.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const TerminalCircle = createIcon({ + displayName: "TerminalCircle", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default TerminalCircle; diff --git a/src/components/icons/terminal-square.tsx b/src/components/icons/terminal-square.tsx new file mode 100644 index 000000000..6d7a9e14e --- /dev/null +++ b/src/components/icons/terminal-square.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const TerminalSquare = createIcon({ + displayName: "TerminalSquare", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default TerminalSquare; diff --git a/src/components/icons/terminal.tsx b/src/components/icons/terminal.tsx new file mode 100644 index 000000000..6a9930e0d --- /dev/null +++ b/src/components/icons/terminal.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Terminal = createIcon({ + displayName: "Terminal", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Terminal; diff --git a/src/components/icons/text-input.tsx b/src/components/icons/text-input.tsx new file mode 100644 index 000000000..5ea09ec53 --- /dev/null +++ b/src/components/icons/text-input.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const TextInput = createIcon({ + displayName: "TextInput", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default TextInput; diff --git a/src/components/icons/thermometer-01.tsx b/src/components/icons/thermometer-01.tsx new file mode 100644 index 000000000..b61548cbb --- /dev/null +++ b/src/components/icons/thermometer-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Thermometer01 = createIcon({ + displayName: "Thermometer01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Thermometer01; diff --git a/src/components/icons/thermometer-02.tsx b/src/components/icons/thermometer-02.tsx new file mode 100644 index 000000000..cedb6a0bc --- /dev/null +++ b/src/components/icons/thermometer-02.tsx @@ -0,0 +1,27 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Thermometer02 = createIcon({ + displayName: "Thermometer02", + viewBox: "0 0 24 24", + path: [ + , + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Thermometer02; diff --git a/src/components/icons/thermometer-03.tsx b/src/components/icons/thermometer-03.tsx new file mode 100644 index 000000000..0952f1eea --- /dev/null +++ b/src/components/icons/thermometer-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Thermometer03 = createIcon({ + displayName: "Thermometer03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Thermometer03; diff --git a/src/components/icons/thermometer-cold.tsx b/src/components/icons/thermometer-cold.tsx new file mode 100644 index 000000000..2ecd44725 --- /dev/null +++ b/src/components/icons/thermometer-cold.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ThermometerCold = createIcon({ + displayName: "ThermometerCold", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ThermometerCold; diff --git a/src/components/icons/thermometer-warm.tsx b/src/components/icons/thermometer-warm.tsx new file mode 100644 index 000000000..6d325eed2 --- /dev/null +++ b/src/components/icons/thermometer-warm.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ThermometerWarm = createIcon({ + displayName: "ThermometerWarm", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ThermometerWarm; diff --git a/src/components/icons/thumbs-down.tsx b/src/components/icons/thumbs-down.tsx new file mode 100644 index 000000000..de72d2611 --- /dev/null +++ b/src/components/icons/thumbs-down.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ThumbsDown = createIcon({ + displayName: "ThumbsDown", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ThumbsDown; diff --git a/src/components/icons/thumbs-up.tsx b/src/components/icons/thumbs-up.tsx new file mode 100644 index 000000000..f21f8c552 --- /dev/null +++ b/src/components/icons/thumbs-up.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ThumbsUp = createIcon({ + displayName: "ThumbsUp", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ThumbsUp; diff --git a/src/components/icons/ticket-01.tsx b/src/components/icons/ticket-01.tsx new file mode 100644 index 000000000..843b8944a --- /dev/null +++ b/src/components/icons/ticket-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Ticket01 = createIcon({ + displayName: "Ticket01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Ticket01; diff --git a/src/components/icons/ticket-02.tsx b/src/components/icons/ticket-02.tsx new file mode 100644 index 000000000..280debb63 --- /dev/null +++ b/src/components/icons/ticket-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Ticket02 = createIcon({ + displayName: "Ticket02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Ticket02; diff --git a/src/components/icons/toggle-01-left.tsx b/src/components/icons/toggle-01-left.tsx new file mode 100644 index 000000000..08f4169f2 --- /dev/null +++ b/src/components/icons/toggle-01-left.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Toggle01Left = createIcon({ + displayName: "Toggle01Left", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Toggle01Left; diff --git a/src/components/icons/toggle-01-right.tsx b/src/components/icons/toggle-01-right.tsx new file mode 100644 index 000000000..a045c501d --- /dev/null +++ b/src/components/icons/toggle-01-right.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Toggle01Right = createIcon({ + displayName: "Toggle01Right", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Toggle01Right; diff --git a/src/components/icons/toggle-02-left.tsx b/src/components/icons/toggle-02-left.tsx new file mode 100644 index 000000000..0a19fb2a4 --- /dev/null +++ b/src/components/icons/toggle-02-left.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Toggle02Left = createIcon({ + displayName: "Toggle02Left", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Toggle02Left; diff --git a/src/components/icons/toggle-02-right.tsx b/src/components/icons/toggle-02-right.tsx new file mode 100644 index 000000000..955223395 --- /dev/null +++ b/src/components/icons/toggle-02-right.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Toggle02Right = createIcon({ + displayName: "Toggle02Right", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Toggle02Right; diff --git a/src/components/icons/toggle-03-left.tsx b/src/components/icons/toggle-03-left.tsx new file mode 100644 index 000000000..feca40f17 --- /dev/null +++ b/src/components/icons/toggle-03-left.tsx @@ -0,0 +1,27 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Toggle03Left = createIcon({ + displayName: "Toggle03Left", + viewBox: "0 0 24 24", + path: [ + , + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Toggle03Left; diff --git a/src/components/icons/toggle-03-right.tsx b/src/components/icons/toggle-03-right.tsx new file mode 100644 index 000000000..975857d6c --- /dev/null +++ b/src/components/icons/toggle-03-right.tsx @@ -0,0 +1,27 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Toggle03Right = createIcon({ + displayName: "Toggle03Right", + viewBox: "0 0 24 24", + path: [ + , + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Toggle03Right; diff --git a/src/components/icons/tool-01.tsx b/src/components/icons/tool-01.tsx new file mode 100644 index 000000000..0d8d66f98 --- /dev/null +++ b/src/components/icons/tool-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Tool01 = createIcon({ + displayName: "Tool01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Tool01; diff --git a/src/components/icons/tool-02.tsx b/src/components/icons/tool-02.tsx new file mode 100644 index 000000000..210bce5df --- /dev/null +++ b/src/components/icons/tool-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Tool02 = createIcon({ + displayName: "Tool02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Tool02; diff --git a/src/components/icons/train.tsx b/src/components/icons/train.tsx new file mode 100644 index 000000000..73c129ea8 --- /dev/null +++ b/src/components/icons/train.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Train = createIcon({ + displayName: "Train", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Train; diff --git a/src/components/icons/tram.tsx b/src/components/icons/tram.tsx new file mode 100644 index 000000000..83111c0ec --- /dev/null +++ b/src/components/icons/tram.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Tram = createIcon({ + displayName: "Tram", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Tram; diff --git a/src/components/icons/transform.tsx b/src/components/icons/transform.tsx new file mode 100644 index 000000000..bcb921dac --- /dev/null +++ b/src/components/icons/transform.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Transform = createIcon({ + displayName: "Transform", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Transform; diff --git a/src/components/icons/translate-01.tsx b/src/components/icons/translate-01.tsx new file mode 100644 index 000000000..1c30501bd --- /dev/null +++ b/src/components/icons/translate-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Translate01 = createIcon({ + displayName: "Translate01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Translate01; diff --git a/src/components/icons/translate-02.tsx b/src/components/icons/translate-02.tsx new file mode 100644 index 000000000..f807a7886 --- /dev/null +++ b/src/components/icons/translate-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Translate02 = createIcon({ + displayName: "Translate02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Translate02; diff --git a/src/components/icons/trash-01.tsx b/src/components/icons/trash-01.tsx new file mode 100644 index 000000000..7f6b09a2a --- /dev/null +++ b/src/components/icons/trash-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Trash01 = createIcon({ + displayName: "Trash01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Trash01; diff --git a/src/components/icons/trash-02.tsx b/src/components/icons/trash-02.tsx new file mode 100644 index 000000000..5ae3efa4a --- /dev/null +++ b/src/components/icons/trash-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Trash02 = createIcon({ + displayName: "Trash02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Trash02; diff --git a/src/components/icons/trash-03.tsx b/src/components/icons/trash-03.tsx new file mode 100644 index 000000000..750030df8 --- /dev/null +++ b/src/components/icons/trash-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Trash03 = createIcon({ + displayName: "Trash03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Trash03; diff --git a/src/components/icons/trash-04.tsx b/src/components/icons/trash-04.tsx new file mode 100644 index 000000000..3f8955b17 --- /dev/null +++ b/src/components/icons/trash-04.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Trash04 = createIcon({ + displayName: "Trash04", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Trash04; diff --git a/src/components/icons/trend-down-01.tsx b/src/components/icons/trend-down-01.tsx new file mode 100644 index 000000000..22a9db495 --- /dev/null +++ b/src/components/icons/trend-down-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const TrendDown01 = createIcon({ + displayName: "TrendDown01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default TrendDown01; diff --git a/src/components/icons/trend-down-02.tsx b/src/components/icons/trend-down-02.tsx new file mode 100644 index 000000000..3b8fd5797 --- /dev/null +++ b/src/components/icons/trend-down-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const TrendDown02 = createIcon({ + displayName: "TrendDown02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default TrendDown02; diff --git a/src/components/icons/trend-up-01.tsx b/src/components/icons/trend-up-01.tsx new file mode 100644 index 000000000..13043932d --- /dev/null +++ b/src/components/icons/trend-up-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const TrendUp01 = createIcon({ + displayName: "TrendUp01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default TrendUp01; diff --git a/src/components/icons/trend-up-02.tsx b/src/components/icons/trend-up-02.tsx new file mode 100644 index 000000000..4e16a9ed4 --- /dev/null +++ b/src/components/icons/trend-up-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const TrendUp02 = createIcon({ + displayName: "TrendUp02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default TrendUp02; diff --git a/src/components/icons/triangle.tsx b/src/components/icons/triangle.tsx new file mode 100644 index 000000000..4d3531040 --- /dev/null +++ b/src/components/icons/triangle.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Triangle = createIcon({ + displayName: "Triangle", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Triangle; diff --git a/src/components/icons/trophy-01.tsx b/src/components/icons/trophy-01.tsx new file mode 100644 index 000000000..59e45c271 --- /dev/null +++ b/src/components/icons/trophy-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Trophy01 = createIcon({ + displayName: "Trophy01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Trophy01; diff --git a/src/components/icons/trophy-02.tsx b/src/components/icons/trophy-02.tsx new file mode 100644 index 000000000..7575848da --- /dev/null +++ b/src/components/icons/trophy-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Trophy02 = createIcon({ + displayName: "Trophy02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Trophy02; diff --git a/src/components/icons/truck-01.tsx b/src/components/icons/truck-01.tsx new file mode 100644 index 000000000..6867c9b59 --- /dev/null +++ b/src/components/icons/truck-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Truck01 = createIcon({ + displayName: "Truck01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Truck01; diff --git a/src/components/icons/truck-02.tsx b/src/components/icons/truck-02.tsx new file mode 100644 index 000000000..b8cdffbf0 --- /dev/null +++ b/src/components/icons/truck-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Truck02 = createIcon({ + displayName: "Truck02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Truck02; diff --git a/src/components/icons/tv-01.tsx b/src/components/icons/tv-01.tsx new file mode 100644 index 000000000..39ba76e84 --- /dev/null +++ b/src/components/icons/tv-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Tv01 = createIcon({ + displayName: "Tv01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Tv01; diff --git a/src/components/icons/tv-02.tsx b/src/components/icons/tv-02.tsx new file mode 100644 index 000000000..03d71714a --- /dev/null +++ b/src/components/icons/tv-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Tv02 = createIcon({ + displayName: "Tv02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Tv02; diff --git a/src/components/icons/tv-03.tsx b/src/components/icons/tv-03.tsx new file mode 100644 index 000000000..7b4261bb7 --- /dev/null +++ b/src/components/icons/tv-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Tv03 = createIcon({ + displayName: "Tv03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Tv03; diff --git a/src/components/icons/type-01.tsx b/src/components/icons/type-01.tsx new file mode 100644 index 000000000..8bde43370 --- /dev/null +++ b/src/components/icons/type-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Type01 = createIcon({ + displayName: "Type01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Type01; diff --git a/src/components/icons/type-02.tsx b/src/components/icons/type-02.tsx new file mode 100644 index 000000000..d57be1760 --- /dev/null +++ b/src/components/icons/type-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Type02 = createIcon({ + displayName: "Type02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Type02; diff --git a/src/components/icons/type-square.tsx b/src/components/icons/type-square.tsx new file mode 100644 index 000000000..264634bd4 --- /dev/null +++ b/src/components/icons/type-square.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const TypeSquare = createIcon({ + displayName: "TypeSquare", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default TypeSquare; diff --git a/src/components/icons/type-strikethrough-01.tsx b/src/components/icons/type-strikethrough-01.tsx new file mode 100644 index 000000000..10dcc3aa3 --- /dev/null +++ b/src/components/icons/type-strikethrough-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const TypeStrikethrough01 = createIcon({ + displayName: "TypeStrikethrough01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default TypeStrikethrough01; diff --git a/src/components/icons/type-strikethrough-02.tsx b/src/components/icons/type-strikethrough-02.tsx new file mode 100644 index 000000000..5482cce63 --- /dev/null +++ b/src/components/icons/type-strikethrough-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const TypeStrikethrough02 = createIcon({ + displayName: "TypeStrikethrough02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default TypeStrikethrough02; diff --git a/src/components/icons/umbrella-01.tsx b/src/components/icons/umbrella-01.tsx new file mode 100644 index 000000000..a6b427243 --- /dev/null +++ b/src/components/icons/umbrella-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Umbrella01 = createIcon({ + displayName: "Umbrella01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Umbrella01; diff --git a/src/components/icons/umbrella-02.tsx b/src/components/icons/umbrella-02.tsx new file mode 100644 index 000000000..471a5597f --- /dev/null +++ b/src/components/icons/umbrella-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Umbrella02 = createIcon({ + displayName: "Umbrella02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Umbrella02; diff --git a/src/components/icons/umbrella-03.tsx b/src/components/icons/umbrella-03.tsx new file mode 100644 index 000000000..a34ec1100 --- /dev/null +++ b/src/components/icons/umbrella-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Umbrella03 = createIcon({ + displayName: "Umbrella03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Umbrella03; diff --git a/src/components/icons/underline-01.tsx b/src/components/icons/underline-01.tsx new file mode 100644 index 000000000..e4e68d81b --- /dev/null +++ b/src/components/icons/underline-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Underline01 = createIcon({ + displayName: "Underline01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Underline01; diff --git a/src/components/icons/underline-02.tsx b/src/components/icons/underline-02.tsx new file mode 100644 index 000000000..9d1ef8162 --- /dev/null +++ b/src/components/icons/underline-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Underline02 = createIcon({ + displayName: "Underline02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Underline02; diff --git a/src/components/icons/underline-square.tsx b/src/components/icons/underline-square.tsx new file mode 100644 index 000000000..adfe8b56a --- /dev/null +++ b/src/components/icons/underline-square.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const UnderlineSquare = createIcon({ + displayName: "UnderlineSquare", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default UnderlineSquare; diff --git a/src/components/icons/upload-01.tsx b/src/components/icons/upload-01.tsx new file mode 100644 index 000000000..63ecdc46e --- /dev/null +++ b/src/components/icons/upload-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Upload01 = createIcon({ + displayName: "Upload01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Upload01; diff --git a/src/components/icons/upload-02.tsx b/src/components/icons/upload-02.tsx new file mode 100644 index 000000000..7d35bfb16 --- /dev/null +++ b/src/components/icons/upload-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Upload02 = createIcon({ + displayName: "Upload02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Upload02; diff --git a/src/components/icons/upload-03.tsx b/src/components/icons/upload-03.tsx new file mode 100644 index 000000000..98334dabd --- /dev/null +++ b/src/components/icons/upload-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Upload03 = createIcon({ + displayName: "Upload03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Upload03; diff --git a/src/components/icons/upload-04.tsx b/src/components/icons/upload-04.tsx new file mode 100644 index 000000000..16b3855e4 --- /dev/null +++ b/src/components/icons/upload-04.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Upload04 = createIcon({ + displayName: "Upload04", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Upload04; diff --git a/src/components/icons/upload-cloud-01.tsx b/src/components/icons/upload-cloud-01.tsx new file mode 100644 index 000000000..42f4c48c6 --- /dev/null +++ b/src/components/icons/upload-cloud-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const UploadCloud01 = createIcon({ + displayName: "UploadCloud01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default UploadCloud01; diff --git a/src/components/icons/upload-cloud-02.tsx b/src/components/icons/upload-cloud-02.tsx new file mode 100644 index 000000000..c81c2d6f0 --- /dev/null +++ b/src/components/icons/upload-cloud-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const UploadCloud02 = createIcon({ + displayName: "UploadCloud02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default UploadCloud02; diff --git a/src/components/icons/usb-flash-drive.tsx b/src/components/icons/usb-flash-drive.tsx new file mode 100644 index 000000000..075cd8511 --- /dev/null +++ b/src/components/icons/usb-flash-drive.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const UsbFlashDrive = createIcon({ + displayName: "UsbFlashDrive", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default UsbFlashDrive; diff --git a/src/components/icons/user-01.tsx b/src/components/icons/user-01.tsx new file mode 100644 index 000000000..de84d9291 --- /dev/null +++ b/src/components/icons/user-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const User01 = createIcon({ + displayName: "User01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default User01; diff --git a/src/components/icons/user-02.tsx b/src/components/icons/user-02.tsx new file mode 100644 index 000000000..fe90ef991 --- /dev/null +++ b/src/components/icons/user-02.tsx @@ -0,0 +1,27 @@ +import { createIcon } from "@chakra-ui/icons"; + +const User02 = createIcon({ + displayName: "User02", + viewBox: "0 0 24 24", + path: [ + , + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default User02; diff --git a/src/components/icons/user-03.tsx b/src/components/icons/user-03.tsx new file mode 100644 index 000000000..1871a763a --- /dev/null +++ b/src/components/icons/user-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const User03 = createIcon({ + displayName: "User03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default User03; diff --git a/src/components/icons/user-check-01.tsx b/src/components/icons/user-check-01.tsx new file mode 100644 index 000000000..9417f8e13 --- /dev/null +++ b/src/components/icons/user-check-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const UserCheck01 = createIcon({ + displayName: "UserCheck01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default UserCheck01; diff --git a/src/components/icons/user-check-02.tsx b/src/components/icons/user-check-02.tsx new file mode 100644 index 000000000..fa7cb8211 --- /dev/null +++ b/src/components/icons/user-check-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const UserCheck02 = createIcon({ + displayName: "UserCheck02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default UserCheck02; diff --git a/src/components/icons/user-circle.tsx b/src/components/icons/user-circle.tsx new file mode 100644 index 000000000..b8b963080 --- /dev/null +++ b/src/components/icons/user-circle.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const UserCircle = createIcon({ + displayName: "UserCircle", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default UserCircle; diff --git a/src/components/icons/user-down-01.tsx b/src/components/icons/user-down-01.tsx new file mode 100644 index 000000000..214f58938 --- /dev/null +++ b/src/components/icons/user-down-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const UserDown01 = createIcon({ + displayName: "UserDown01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default UserDown01; diff --git a/src/components/icons/user-down-02.tsx b/src/components/icons/user-down-02.tsx new file mode 100644 index 000000000..7b488f263 --- /dev/null +++ b/src/components/icons/user-down-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const UserDown02 = createIcon({ + displayName: "UserDown02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default UserDown02; diff --git a/src/components/icons/user-edit.tsx b/src/components/icons/user-edit.tsx new file mode 100644 index 000000000..e47f400c2 --- /dev/null +++ b/src/components/icons/user-edit.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const UserEdit = createIcon({ + displayName: "UserEdit", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default UserEdit; diff --git a/src/components/icons/user-left-01.tsx b/src/components/icons/user-left-01.tsx new file mode 100644 index 000000000..ecb3f138b --- /dev/null +++ b/src/components/icons/user-left-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const UserLeft01 = createIcon({ + displayName: "UserLeft01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default UserLeft01; diff --git a/src/components/icons/user-left-02.tsx b/src/components/icons/user-left-02.tsx new file mode 100644 index 000000000..3d0c8b252 --- /dev/null +++ b/src/components/icons/user-left-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const UserLeft02 = createIcon({ + displayName: "UserLeft02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default UserLeft02; diff --git a/src/components/icons/user-minus-01.tsx b/src/components/icons/user-minus-01.tsx new file mode 100644 index 000000000..edc39f55f --- /dev/null +++ b/src/components/icons/user-minus-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const UserMinus01 = createIcon({ + displayName: "UserMinus01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default UserMinus01; diff --git a/src/components/icons/user-minus-02.tsx b/src/components/icons/user-minus-02.tsx new file mode 100644 index 000000000..bff30a95f --- /dev/null +++ b/src/components/icons/user-minus-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const UserMinus02 = createIcon({ + displayName: "UserMinus02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default UserMinus02; diff --git a/src/components/icons/user-plus-01.tsx b/src/components/icons/user-plus-01.tsx new file mode 100644 index 000000000..984488057 --- /dev/null +++ b/src/components/icons/user-plus-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const UserPlus01 = createIcon({ + displayName: "UserPlus01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default UserPlus01; diff --git a/src/components/icons/user-plus-02.tsx b/src/components/icons/user-plus-02.tsx new file mode 100644 index 000000000..7a43c8643 --- /dev/null +++ b/src/components/icons/user-plus-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const UserPlus02 = createIcon({ + displayName: "UserPlus02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default UserPlus02; diff --git a/src/components/icons/user-right-01.tsx b/src/components/icons/user-right-01.tsx new file mode 100644 index 000000000..3ee1dd7b6 --- /dev/null +++ b/src/components/icons/user-right-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const UserRight01 = createIcon({ + displayName: "UserRight01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default UserRight01; diff --git a/src/components/icons/user-right-02.tsx b/src/components/icons/user-right-02.tsx new file mode 100644 index 000000000..7609e1f1d --- /dev/null +++ b/src/components/icons/user-right-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const UserRight02 = createIcon({ + displayName: "UserRight02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default UserRight02; diff --git a/src/components/icons/user-square.tsx b/src/components/icons/user-square.tsx new file mode 100644 index 000000000..880e91789 --- /dev/null +++ b/src/components/icons/user-square.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const UserSquare = createIcon({ + displayName: "UserSquare", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default UserSquare; diff --git a/src/components/icons/user-up-01.tsx b/src/components/icons/user-up-01.tsx new file mode 100644 index 000000000..150c4b99d --- /dev/null +++ b/src/components/icons/user-up-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const UserUp01 = createIcon({ + displayName: "UserUp01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default UserUp01; diff --git a/src/components/icons/user-up-02.tsx b/src/components/icons/user-up-02.tsx new file mode 100644 index 000000000..6efa28e96 --- /dev/null +++ b/src/components/icons/user-up-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const UserUp02 = createIcon({ + displayName: "UserUp02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default UserUp02; diff --git a/src/components/icons/user-x-01.tsx b/src/components/icons/user-x-01.tsx new file mode 100644 index 000000000..d72eab405 --- /dev/null +++ b/src/components/icons/user-x-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const UserX01 = createIcon({ + displayName: "UserX01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default UserX01; diff --git a/src/components/icons/user-x-02.tsx b/src/components/icons/user-x-02.tsx new file mode 100644 index 000000000..8862aabf6 --- /dev/null +++ b/src/components/icons/user-x-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const UserX02 = createIcon({ + displayName: "UserX02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default UserX02; diff --git a/src/components/icons/users-01.tsx b/src/components/icons/users-01.tsx new file mode 100644 index 000000000..7bc9cef05 --- /dev/null +++ b/src/components/icons/users-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Users01 = createIcon({ + displayName: "Users01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Users01; diff --git a/src/components/icons/users-02.tsx b/src/components/icons/users-02.tsx new file mode 100644 index 000000000..0fcbb459a --- /dev/null +++ b/src/components/icons/users-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Users02 = createIcon({ + displayName: "Users02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Users02; diff --git a/src/components/icons/users-03.tsx b/src/components/icons/users-03.tsx new file mode 100644 index 000000000..bfe2dd71e --- /dev/null +++ b/src/components/icons/users-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Users03 = createIcon({ + displayName: "Users03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Users03; diff --git a/src/components/icons/users-check.tsx b/src/components/icons/users-check.tsx new file mode 100644 index 000000000..4b81bd850 --- /dev/null +++ b/src/components/icons/users-check.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const UsersCheck = createIcon({ + displayName: "UsersCheck", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default UsersCheck; diff --git a/src/components/icons/users-down.tsx b/src/components/icons/users-down.tsx new file mode 100644 index 000000000..8c97a99bf --- /dev/null +++ b/src/components/icons/users-down.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const UsersDown = createIcon({ + displayName: "UsersDown", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default UsersDown; diff --git a/src/components/icons/users-edit.tsx b/src/components/icons/users-edit.tsx new file mode 100644 index 000000000..89eb58d02 --- /dev/null +++ b/src/components/icons/users-edit.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const UsersEdit = createIcon({ + displayName: "UsersEdit", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default UsersEdit; diff --git a/src/components/icons/users-left.tsx b/src/components/icons/users-left.tsx new file mode 100644 index 000000000..b265493a6 --- /dev/null +++ b/src/components/icons/users-left.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const UsersLeft = createIcon({ + displayName: "UsersLeft", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default UsersLeft; diff --git a/src/components/icons/users-minus.tsx b/src/components/icons/users-minus.tsx new file mode 100644 index 000000000..1771f5316 --- /dev/null +++ b/src/components/icons/users-minus.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const UsersMinus = createIcon({ + displayName: "UsersMinus", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default UsersMinus; diff --git a/src/components/icons/users-plus.tsx b/src/components/icons/users-plus.tsx new file mode 100644 index 000000000..48922b02c --- /dev/null +++ b/src/components/icons/users-plus.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const UsersPlus = createIcon({ + displayName: "UsersPlus", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default UsersPlus; diff --git a/src/components/icons/users-right.tsx b/src/components/icons/users-right.tsx new file mode 100644 index 000000000..651d08faa --- /dev/null +++ b/src/components/icons/users-right.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const UsersRight = createIcon({ + displayName: "UsersRight", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default UsersRight; diff --git a/src/components/icons/users-up.tsx b/src/components/icons/users-up.tsx new file mode 100644 index 000000000..fcb5d9ede --- /dev/null +++ b/src/components/icons/users-up.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const UsersUp = createIcon({ + displayName: "UsersUp", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default UsersUp; diff --git a/src/components/icons/users-x.tsx b/src/components/icons/users-x.tsx new file mode 100644 index 000000000..350bb7c2b --- /dev/null +++ b/src/components/icons/users-x.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const UsersX = createIcon({ + displayName: "UsersX", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default UsersX; diff --git a/src/components/icons/variable.tsx b/src/components/icons/variable.tsx new file mode 100644 index 000000000..7fe16a888 --- /dev/null +++ b/src/components/icons/variable.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Variable = createIcon({ + displayName: "Variable", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Variable; diff --git a/src/components/icons/video-recorder-off.tsx b/src/components/icons/video-recorder-off.tsx new file mode 100644 index 000000000..bf13d61b2 --- /dev/null +++ b/src/components/icons/video-recorder-off.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const VideoRecorderOff = createIcon({ + displayName: "VideoRecorderOff", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default VideoRecorderOff; diff --git a/src/components/icons/video-recorder.tsx b/src/components/icons/video-recorder.tsx new file mode 100644 index 000000000..4dda49839 --- /dev/null +++ b/src/components/icons/video-recorder.tsx @@ -0,0 +1,27 @@ +import { createIcon } from "@chakra-ui/icons"; + +const VideoRecorder = createIcon({ + displayName: "VideoRecorder", + viewBox: "0 0 24 24", + path: [ + , + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default VideoRecorder; diff --git a/src/components/icons/virus.tsx b/src/components/icons/virus.tsx new file mode 100644 index 000000000..4d3daf302 --- /dev/null +++ b/src/components/icons/virus.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Virus = createIcon({ + displayName: "Virus", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Virus; diff --git a/src/components/icons/voicemail.tsx b/src/components/icons/voicemail.tsx new file mode 100644 index 000000000..6f6da26f1 --- /dev/null +++ b/src/components/icons/voicemail.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Voicemail = createIcon({ + displayName: "Voicemail", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Voicemail; diff --git a/src/components/icons/volume-max.tsx b/src/components/icons/volume-max.tsx new file mode 100644 index 000000000..dac70e066 --- /dev/null +++ b/src/components/icons/volume-max.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const VolumeMax = createIcon({ + displayName: "VolumeMax", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default VolumeMax; diff --git a/src/components/icons/volume-min.tsx b/src/components/icons/volume-min.tsx new file mode 100644 index 000000000..66261362b --- /dev/null +++ b/src/components/icons/volume-min.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const VolumeMin = createIcon({ + displayName: "VolumeMin", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default VolumeMin; diff --git a/src/components/icons/volume-minus.tsx b/src/components/icons/volume-minus.tsx new file mode 100644 index 000000000..310cc7da8 --- /dev/null +++ b/src/components/icons/volume-minus.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const VolumeMinus = createIcon({ + displayName: "VolumeMinus", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default VolumeMinus; diff --git a/src/components/icons/volume-plus.tsx b/src/components/icons/volume-plus.tsx new file mode 100644 index 000000000..966629b52 --- /dev/null +++ b/src/components/icons/volume-plus.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const VolumePlus = createIcon({ + displayName: "VolumePlus", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default VolumePlus; diff --git a/src/components/icons/volume-x.tsx b/src/components/icons/volume-x.tsx new file mode 100644 index 000000000..a6568e861 --- /dev/null +++ b/src/components/icons/volume-x.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const VolumeX = createIcon({ + displayName: "VolumeX", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default VolumeX; diff --git a/src/components/icons/wallet-01.tsx b/src/components/icons/wallet-01.tsx new file mode 100644 index 000000000..0bd67dfea --- /dev/null +++ b/src/components/icons/wallet-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Wallet01 = createIcon({ + displayName: "Wallet01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Wallet01; diff --git a/src/components/icons/wallet-02.tsx b/src/components/icons/wallet-02.tsx new file mode 100644 index 000000000..b8559b8a7 --- /dev/null +++ b/src/components/icons/wallet-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Wallet02 = createIcon({ + displayName: "Wallet02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Wallet02; diff --git a/src/components/icons/wallet-03.tsx b/src/components/icons/wallet-03.tsx new file mode 100644 index 000000000..5ce038653 --- /dev/null +++ b/src/components/icons/wallet-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Wallet03 = createIcon({ + displayName: "Wallet03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Wallet03; diff --git a/src/components/icons/wallet-04.tsx b/src/components/icons/wallet-04.tsx new file mode 100644 index 000000000..f800b7c9b --- /dev/null +++ b/src/components/icons/wallet-04.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Wallet04 = createIcon({ + displayName: "Wallet04", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Wallet04; diff --git a/src/components/icons/wallet-05.tsx b/src/components/icons/wallet-05.tsx new file mode 100644 index 000000000..e23b65a43 --- /dev/null +++ b/src/components/icons/wallet-05.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Wallet05 = createIcon({ + displayName: "Wallet05", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Wallet05; diff --git a/src/components/icons/watch-circle.tsx b/src/components/icons/watch-circle.tsx new file mode 100644 index 000000000..71e7a55a7 --- /dev/null +++ b/src/components/icons/watch-circle.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const WatchCircle = createIcon({ + displayName: "WatchCircle", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default WatchCircle; diff --git a/src/components/icons/watch-square.tsx b/src/components/icons/watch-square.tsx new file mode 100644 index 000000000..a35f3358e --- /dev/null +++ b/src/components/icons/watch-square.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const WatchSquare = createIcon({ + displayName: "WatchSquare", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default WatchSquare; diff --git a/src/components/icons/waves.tsx b/src/components/icons/waves.tsx new file mode 100644 index 000000000..7629fe398 --- /dev/null +++ b/src/components/icons/waves.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Waves = createIcon({ + displayName: "Waves", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Waves; diff --git a/src/components/icons/webcam-01.tsx b/src/components/icons/webcam-01.tsx new file mode 100644 index 000000000..e92932835 --- /dev/null +++ b/src/components/icons/webcam-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Webcam01 = createIcon({ + displayName: "Webcam01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Webcam01; diff --git a/src/components/icons/webcam-02.tsx b/src/components/icons/webcam-02.tsx new file mode 100644 index 000000000..e354eeb40 --- /dev/null +++ b/src/components/icons/webcam-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Webcam02 = createIcon({ + displayName: "Webcam02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Webcam02; diff --git a/src/components/icons/wifi-off.tsx b/src/components/icons/wifi-off.tsx new file mode 100644 index 000000000..7f922c033 --- /dev/null +++ b/src/components/icons/wifi-off.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const WifiOff = createIcon({ + displayName: "WifiOff", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default WifiOff; diff --git a/src/components/icons/wifi.tsx b/src/components/icons/wifi.tsx new file mode 100644 index 000000000..2b8ad15fe --- /dev/null +++ b/src/components/icons/wifi.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Wifi = createIcon({ + displayName: "Wifi", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Wifi; diff --git a/src/components/icons/wind-01.tsx b/src/components/icons/wind-01.tsx new file mode 100644 index 000000000..143297b01 --- /dev/null +++ b/src/components/icons/wind-01.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Wind01 = createIcon({ + displayName: "Wind01", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Wind01; diff --git a/src/components/icons/wind-02.tsx b/src/components/icons/wind-02.tsx new file mode 100644 index 000000000..7a48e1c2c --- /dev/null +++ b/src/components/icons/wind-02.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Wind02 = createIcon({ + displayName: "Wind02", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Wind02; diff --git a/src/components/icons/wind-03.tsx b/src/components/icons/wind-03.tsx new file mode 100644 index 000000000..d6954b47f --- /dev/null +++ b/src/components/icons/wind-03.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Wind03 = createIcon({ + displayName: "Wind03", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Wind03; diff --git a/src/components/icons/x-circle.tsx b/src/components/icons/x-circle.tsx new file mode 100644 index 000000000..61891e92f --- /dev/null +++ b/src/components/icons/x-circle.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const XCircle = createIcon({ + displayName: "XCircle", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default XCircle; diff --git a/src/components/icons/x-close.tsx b/src/components/icons/x-close.tsx new file mode 100644 index 000000000..1276e0d60 --- /dev/null +++ b/src/components/icons/x-close.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const XClose = createIcon({ + displayName: "XClose", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default XClose; diff --git a/src/components/icons/x-square.tsx b/src/components/icons/x-square.tsx new file mode 100644 index 000000000..fd59ae983 --- /dev/null +++ b/src/components/icons/x-square.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const XSquare = createIcon({ + displayName: "XSquare", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default XSquare; diff --git a/src/components/icons/x.tsx b/src/components/icons/x.tsx new file mode 100644 index 000000000..28b1ee8f9 --- /dev/null +++ b/src/components/icons/x.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const X = createIcon({ + displayName: "X", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default X; diff --git a/src/components/icons/youtube.tsx b/src/components/icons/youtube.tsx new file mode 100644 index 000000000..fc91cfc88 --- /dev/null +++ b/src/components/icons/youtube.tsx @@ -0,0 +1,27 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Youtube = createIcon({ + displayName: "Youtube", + viewBox: "0 0 24 24", + path: [ + , + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Youtube; diff --git a/src/components/icons/zap-circle.tsx b/src/components/icons/zap-circle.tsx new file mode 100644 index 000000000..66c023730 --- /dev/null +++ b/src/components/icons/zap-circle.tsx @@ -0,0 +1,27 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ZapCircle = createIcon({ + displayName: "ZapCircle", + viewBox: "0 0 24 24", + path: [ + , + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ZapCircle; diff --git a/src/components/icons/zap-fast.tsx b/src/components/icons/zap-fast.tsx new file mode 100644 index 000000000..85c8e8826 --- /dev/null +++ b/src/components/icons/zap-fast.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ZapFast = createIcon({ + displayName: "ZapFast", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ZapFast; diff --git a/src/components/icons/zap-off.tsx b/src/components/icons/zap-off.tsx new file mode 100644 index 000000000..b2ac2f3b4 --- /dev/null +++ b/src/components/icons/zap-off.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ZapOff = createIcon({ + displayName: "ZapOff", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ZapOff; diff --git a/src/components/icons/zap-square.tsx b/src/components/icons/zap-square.tsx new file mode 100644 index 000000000..b5abeb8ce --- /dev/null +++ b/src/components/icons/zap-square.tsx @@ -0,0 +1,27 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ZapSquare = createIcon({ + displayName: "ZapSquare", + viewBox: "0 0 24 24", + path: [ + , + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ZapSquare; diff --git a/src/components/icons/zap.tsx b/src/components/icons/zap.tsx new file mode 100644 index 000000000..c2e94a39d --- /dev/null +++ b/src/components/icons/zap.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const Zap = createIcon({ + displayName: "Zap", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default Zap; diff --git a/src/components/icons/zoom-in.tsx b/src/components/icons/zoom-in.tsx new file mode 100644 index 000000000..8c68bcd00 --- /dev/null +++ b/src/components/icons/zoom-in.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ZoomIn = createIcon({ + displayName: "ZoomIn", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ZoomIn; diff --git a/src/components/icons/zoom-out.tsx b/src/components/icons/zoom-out.tsx new file mode 100644 index 000000000..44ed11a46 --- /dev/null +++ b/src/components/icons/zoom-out.tsx @@ -0,0 +1,19 @@ +import { createIcon } from "@chakra-ui/icons"; + +const ZoomOut = createIcon({ + displayName: "ZoomOut", + viewBox: "0 0 24 24", + path: [ + , + ], + defaultProps: { boxSize: 4 }, +}); + +export default ZoomOut; diff --git a/src/components/inline-invoice-card.tsx b/src/components/inline-invoice-card.tsx index 5fc5297c3..5205a0c4a 100644 --- a/src/components/inline-invoice-card.tsx +++ b/src/components/inline-invoice-card.tsx @@ -5,7 +5,7 @@ import { requestProvider } from "webln"; import { Box, Button, ButtonGroup, IconButton, Text } from "@chakra-ui/react"; import { parsePaymentRequest, readablizeSats } from "../helpers/bolt11"; -import { ClipboardIcon } from "./icons"; +import { CopyToClipboardIcon } from "./icons"; export type InvoiceButtonProps = { paymentRequest: string; @@ -61,7 +61,12 @@ export const InlineInvoiceCard = ({ paymentRequest }: InvoiceButtonProps) => { - } title="Copy to clipboard" aria-label="copy invoice" variant="outline" /> + } + title="Copy to clipboard" + aria-label="copy invoice" + variant="outline" + /> diff --git a/src/components/layout/account-switcher.tsx b/src/components/layout/account-switcher.tsx index 55256f9ae..57b7da8d1 100644 --- a/src/components/layout/account-switcher.tsx +++ b/src/components/layout/account-switcher.tsx @@ -6,7 +6,7 @@ import { getUserDisplayName } from "../../helpers/user-metadata"; import useSubject from "../../hooks/use-subject"; import { useUserMetadata } from "../../hooks/use-user-metadata"; import accountService, { Account } from "../../services/account"; -import { AddIcon, ArrowDownSIcon, ArrowUpSIcon } from "../icons"; +import { AddIcon, ChevronDownIcon, ChevronUpIcon } from "../icons"; import { UserAvatar } from "../user-avatar"; import AccountInfoBadge from "../account-info-badge"; import { useCurrentAccount } from "../../hooks/use-current-account"; @@ -71,7 +71,7 @@ export default function AccountSwitcher() { {getUserDisplayName(metadata, account.pubkey)} - {isOpen ? : } + {isOpen ? : } {isOpen && ( diff --git a/src/components/layout/desktop-side-nav.tsx b/src/components/layout/desktop-side-nav.tsx index c6adf4ff6..4a6041b76 100644 --- a/src/components/layout/desktop-side-nav.tsx +++ b/src/components/layout/desktop-side-nav.tsx @@ -49,7 +49,7 @@ export default function DesktopSideNav(props: Omit) { <> {account && ( - )} diff --git a/src/components/note/note-menu.tsx b/src/components/note/note-menu.tsx index ae046bc2b..088cc5257 100644 --- a/src/components/note/note-menu.tsx +++ b/src/components/note/note-menu.tsx @@ -8,12 +8,12 @@ import { NostrEvent } from "../../types/nostr-event"; import { CustomMenuIconButton, MenuIconButtonProps } from "../menu-icon-button"; import { - ClipboardIcon, + BroadcastEventIcon, + CopyToClipboardIcon, CodeIcon, ExternalLinkIcon, LikeIcon, MuteIcon, - RelayIcon, RepostIcon, TrashIcon, UnmuteIcon, @@ -72,7 +72,7 @@ export const NoteMenu = ({ event, ...props }: { event: NostrEvent } & Omit {noteId && ( - copyToClipboard(noteId)} icon={}> + copyToClipboard(noteId)} icon={}> Copy Note ID )} @@ -81,7 +81,7 @@ export const NoteMenu = ({ event, ...props }: { event: NostrEvent } & Omit )} - }> + }> Broadcast }> diff --git a/src/components/pagination-controls.tsx b/src/components/pagination-controls.tsx index 064aa27b0..4137010f5 100644 --- a/src/components/pagination-controls.tsx +++ b/src/components/pagination-controls.tsx @@ -1,7 +1,7 @@ import { Button, ButtonGroup, ButtonProps, IconButton } from "@chakra-ui/react"; import { useMemo } from "react"; import { usePaginatedList } from "../hooks/use-paginated-list"; -import { ArrowLeftSIcon, ArrowRightSIcon } from "./icons"; +import { ChevronLeftIcon, ChevronRightIcon } from "./icons"; const range = (start: number, end: number) => { let length = end - start + 1; @@ -116,7 +116,7 @@ export const PaginationControls = ({ return ( } + icon={} aria-label="previous" title="previous" size={buttonSize} @@ -125,7 +125,7 @@ export const PaginationControls = ({ /> {renderPageButtons()} } + icon={} aria-label="next" title="next" size={buttonSize} diff --git a/src/components/post-modal/index.tsx b/src/components/post-modal/index.tsx index 704673853..7b485405e 100644 --- a/src/components/post-modal/index.tsx +++ b/src/components/post-modal/index.tsx @@ -22,7 +22,7 @@ import dayjs from "dayjs"; import { useForm } from "react-hook-form"; import { Kind } from "nostr-tools"; -import { ArrowDownSIcon, ArrowUpSIcon, ImageIcon } from "../icons"; +import { ChevronDownIcon, ChevronUpIcon, UploadImageIcon } from "../icons"; import NostrPublishAction from "../../classes/nostr-publish-action"; import { useWriteRelayUrls } from "../../hooks/use-client-relays"; import { useSigningContext } from "../../providers/signing-provider"; @@ -204,7 +204,7 @@ export default function PostModal({ }} /> } + icon={} aria-label="Upload Image" title="Upload Image" onClick={() => imageUploadRef.current?.click()} @@ -212,7 +212,7 @@ export default function PostModal({ /> diff --git a/src/views/emoji-packs/emoji-pack.tsx b/src/views/emoji-packs/emoji-pack.tsx index 62505aa0f..2aa712b8c 100644 --- a/src/views/emoji-packs/emoji-pack.tsx +++ b/src/views/emoji-packs/emoji-pack.tsx @@ -21,7 +21,7 @@ import { } from "@chakra-ui/react"; import { UserLink } from "../../components/user-link"; -import { ArrowLeftSIcon } from "../../components/icons"; +import { ChevronLeftIcon } from "../../components/icons"; import { useCurrentAccount } from "../../hooks/use-current-account"; import { useDeleteEventContext } from "../../providers/delete-event-provider"; import useReplaceableEvent from "../../hooks/use-replaceable-event"; @@ -123,7 +123,7 @@ function EmojiPackPage({ pack }: { pack: NostrEvent }) { return ( - diff --git a/src/views/goals/goal-details.tsx b/src/views/goals/goal-details.tsx index fb142f470..af38fc8b9 100644 --- a/src/views/goals/goal-details.tsx +++ b/src/views/goals/goal-details.tsx @@ -2,7 +2,7 @@ import { useNavigate, useParams } from "react-router-dom"; import { nip19 } from "nostr-tools"; import { Button, ButtonGroup, Divider, Flex, Heading, Spacer, Spinner } from "@chakra-ui/react"; -import { ArrowLeftSIcon } from "../../components/icons"; +import { ChevronLeftIcon } from "../../components/icons"; import GoalMenu from "./components/goal-menu"; import { getGoalAmount, getGoalName } from "../../helpers/nostr/goal"; import GoalProgress from "./components/goal-progress"; @@ -36,7 +36,7 @@ export default function GoalDetailsView() { return ( - diff --git a/src/views/lists/list-details.tsx b/src/views/lists/list-details.tsx index ffff03761..79abe003e 100644 --- a/src/views/lists/list-details.tsx +++ b/src/views/lists/list-details.tsx @@ -3,7 +3,7 @@ import { Kind, nip19 } from "nostr-tools"; import { UserLink } from "../../components/user-link"; import { Button, Flex, Heading, SimpleGrid, Spacer } from "@chakra-ui/react"; -import { ArrowLeftSIcon } from "../../components/icons"; +import { ChevronLeftIcon } from "../../components/icons"; import { useCurrentAccount } from "../../hooks/use-current-account"; import { useDeleteEventContext } from "../../providers/delete-event-provider"; import { parseCoordinate } from "../../helpers/nostr/events"; @@ -69,7 +69,7 @@ export default function ListDetailsView() { return ( - diff --git a/src/views/messages/chat.tsx b/src/views/messages/chat.tsx index 7a26372f9..854593e6d 100644 --- a/src/views/messages/chat.tsx +++ b/src/views/messages/chat.tsx @@ -4,7 +4,7 @@ import dayjs from "dayjs"; import { Kind } from "nostr-tools"; import { Navigate, useNavigate, useParams } from "react-router-dom"; -import { ArrowLeftSIcon } from "../../components/icons"; +import { ChevronLeftIcon } from "../../components/icons"; import { UserAvatar } from "../../components/user-avatar"; import { UserLink } from "../../components/user-link"; import { normalizeToHex } from "../../helpers/nip19"; @@ -74,7 +74,7 @@ function DirectMessageChatPage({ pubkey }: { pubkey: string }) { - } aria-label="Back" onClick={() => navigate(-1)} /> + } aria-label="Back" onClick={() => navigate(-1)} /> diff --git a/src/views/note/components/reply-form.tsx b/src/views/note/components/reply-form.tsx index 2da3cddec..19392b261 100644 --- a/src/views/note/components/reply-form.tsx +++ b/src/views/note/components/reply-form.tsx @@ -25,7 +25,7 @@ import { useContextEmojis } from "../../../providers/emoji-provider"; import UserDirectoryProvider from "../../../providers/user-directory-provider"; import { TrustProvider } from "../../../providers/trust"; import { nostrBuildUploadImage } from "../../../helpers/nostr-build"; -import { ImageIcon } from "../../../components/icons"; +import { UploadImageIcon } from "../../../components/icons"; export type ReplyFormProps = { item: ThreadItem; @@ -123,7 +123,7 @@ export default function ReplyForm({ item, onCancel, onSubmitted }: ReplyFormProp }} /> } + icon={} aria-label="Upload Image" title="Upload Image" onClick={() => imageUploadRef.current?.click()} diff --git a/src/views/note/components/thread-post.tsx b/src/views/note/components/thread-post.tsx index 259cf43fb..4e4f8373f 100644 --- a/src/views/note/components/thread-post.tsx +++ b/src/views/note/components/thread-post.tsx @@ -1,7 +1,7 @@ import { useState } from "react"; import { Alert, AlertIcon, Button, ButtonGroup, Flex, useDisclosure } from "@chakra-ui/react"; -import { ArrowDownSIcon, ArrowUpSIcon, ReplyIcon } from "../../../components/icons"; +import { ChevronDownIcon, ChevronUpIcon, ReplyIcon } from "../../../components/icons"; import { Note } from "../../../components/note"; import { countReplies, ThreadItem } from "../../../helpers/thread"; import { TrustProvider } from "../../../providers/trust"; @@ -65,7 +65,7 @@ export const ThreadPost = ({ post, initShowReplies, focusId }: ThreadItemProps) {replies.length > 0 && ( )} diff --git a/src/views/relays/popular.tsx b/src/views/relays/popular.tsx index 741b1d696..d3bd02221 100644 --- a/src/views/relays/popular.tsx +++ b/src/views/relays/popular.tsx @@ -24,7 +24,7 @@ import RequireCurrentAccount from "../../providers/require-current-account"; import userRelaysService from "../../services/user-relays"; import { NostrEvent } from "../../types/nostr-event"; import { RelayFavicon } from "../../components/relay-favicon"; -import { ArrowLeftSIcon } from "../../components/icons"; +import { ChevronLeftIcon } from "../../components/icons"; import { UserAvatar } from "../../components/user-avatar"; import { RelayMetadata, RelayPaidTag } from "./components/relay-card"; @@ -84,7 +84,7 @@ function PopularRelaysPage() { return ( - Popular Relays diff --git a/src/views/relays/reviews.tsx b/src/views/relays/reviews.tsx index 052a373ae..86bd91deb 100644 --- a/src/views/relays/reviews.tsx +++ b/src/views/relays/reviews.tsx @@ -10,7 +10,7 @@ import IntersectionObserverProvider from "../../providers/intersection-observer" import PeopleListProvider, { usePeopleListContext } from "../../providers/people-list-provider"; import PeopleListSelection from "../../components/people-list-selection/people-list-selection"; import VerticalPageLayout from "../../components/vertical-page-layout"; -import { ArrowLeftSIcon } from "../../components/icons"; +import { ChevronLeftIcon } from "../../components/icons"; function RelayReviewsPage() { const navigate = useNavigate(); @@ -36,7 +36,7 @@ function RelayReviewsPage() { - diff --git a/src/views/search/index.tsx b/src/views/search/index.tsx index 38982a4a1..f8a3c5dd8 100644 --- a/src/views/search/index.tsx +++ b/src/views/search/index.tsx @@ -4,7 +4,7 @@ import { Kind } from "nostr-tools"; import { useSearchParams, useNavigate } from "react-router-dom"; import { useAsync } from "react-use"; -import { ClipboardIcon, QrCodeIcon } from "../../components/icons"; +import { CopyToClipboardIcon, QrCodeIcon } from "../../components/icons"; import QrScannerModal from "../../components/qr-scanner-modal"; import { safeDecode } from "../../helpers/nip19"; import { getMatchHashtag } from "../../helpers/regexp"; @@ -146,7 +146,7 @@ export function SearchPage() { } aria-label="Qr Scanner" /> {!!navigator.clipboard.readText && ( - } aria-label="Read clipboard" /> + } aria-label="Read clipboard" /> )} setSearchInput(e.target.value)} /> diff --git a/src/views/streams/components/stream-sats-per-minute.tsx b/src/views/streams/components/stream-sats-per-minute.tsx index 19cafd963..89ff474d2 100644 --- a/src/views/streams/components/stream-sats-per-minute.tsx +++ b/src/views/streams/components/stream-sats-per-minute.tsx @@ -22,7 +22,7 @@ import { useInterval } from "react-use"; import useUserLNURLMetadata from "../../../hooks/use-user-lnurl-metadata"; import { parsePaymentRequest } from "../../../helpers/bolt11"; -import { PlayIcon, StopIcon } from "../../../components/icons"; +import { V4VStreamIcon, V4VStopIcon } from "../../../components/icons"; export default function StreamSatsPerMinute({ pubkey, ...props }: { pubkey: string } & FlexProps) { const [enabled, setEnabled] = useState(false); @@ -90,7 +90,7 @@ export default function StreamSatsPerMinute({ pubkey, ...props }: { pubkey: stri @@ -148,7 +148,7 @@ function MobileStreamPage({ stream }: { stream: ParsedStream }) { return ( - diff --git a/src/views/tools/network.tsx b/src/views/tools/network.tsx index 417b1507a..351db0e52 100644 --- a/src/views/tools/network.tsx +++ b/src/views/tools/network.tsx @@ -6,7 +6,7 @@ import RequireCurrentAccount from "../../providers/require-current-account"; import { useNetworkConnectionCount } from "../../hooks/use-user-network"; import { UserAvatarLink } from "../../components/user-avatar-link"; import { UserLink } from "../../components/user-link"; -import { ArrowLeftSIcon } from "../../components/icons"; +import { ChevronLeftIcon } from "../../components/icons"; import { useNavigate } from "react-router-dom"; import VerticalPageLayout from "../../components/vertical-page-layout"; @@ -36,7 +36,7 @@ function NetworkPage() { return ( - : } + icon={expanded.isOpen ? : } aria-label="expand" onClick={expanded.onToggle} top="2" diff --git a/src/views/user/components/user-profile-menu.tsx b/src/views/user/components/user-profile-menu.tsx index 85ffa594c..c165f8a08 100644 --- a/src/views/user/components/user-profile-menu.tsx +++ b/src/views/user/components/user-profile-menu.tsx @@ -5,8 +5,8 @@ import { useCopyToClipboard } from "react-use"; import { CustomMenuIconButton, MenuIconButtonProps } from "../../../components/menu-icon-button"; import { - MessagesIcon, - ClipboardIcon, + DirectMessagesIcon, + CopyToClipboardIcon, CodeIcon, ExternalLinkIcon, MuteIcon, @@ -63,13 +63,13 @@ export const UserProfileMenu = ({ {isMuted ? "Unmute User" : "Mute User"} )} - } as={RouterLink} to={`/dm/${nip19.npubEncode(pubkey)}`}> + } as={RouterLink} to={`/dm/${nip19.npubEncode(pubkey)}`}> Direct messages } onClick={() => loginAsUser()}> Login as {truncatedId(getUserDisplayName(metadata, pubkey))} - copyToClipboard("nostr:" + sharableId)} icon={}> + copyToClipboard("nostr:" + sharableId)} icon={}> Copy share link }> diff --git a/yarn.lock b/yarn.lock index 17a5a8ce9..511efc7d2 100644 --- a/yarn.lock +++ b/yarn.lock @@ -3153,6 +3153,11 @@ camelcase@^5.0.0, camelcase@^5.3.1: resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== +camelcase@^8.0.0: + version "8.0.0" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-8.0.0.tgz#c0d36d418753fb6ad9c5e0437579745c1c14a534" + integrity sha512-8WB3Jcas3swSvjIeA2yvCJ+Miyz5l1ZmB6HFb9R1317dt9LCQoswg/BGrmAmkWVEszSrrg4RwmO46qIm2OEnSA== + caniuse-lite@^1.0.30001538: version "1.0.30001538" resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001538.tgz#9dbc6b9af1ff06b5eb12350c2012b3af56744f3f"