diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md
index 67345e7..332bfe8 100644
--- a/.github/CONTRIBUTING.md
+++ b/.github/CONTRIBUTING.md
@@ -24,4 +24,4 @@ Make your changes and check that they resolve the problem with an example in Sto
You also need to inform Yarn workspaces that a particular package has changed for proper versioning. Run `yarn version check -i` to mark the appropriate type of change for those packages.
-Lastly, run `yarn build` to ensure that the build runs successfully before submitting the pull request.
\ No newline at end of file
+Lastly, run `yarn build` to ensure that the build runs successfully before submitting the pull request.
diff --git a/.github/workflows/check-code.yml b/.github/workflows/check-code.yml
index 466d6c2..02dbb54 100644
--- a/.github/workflows/check-code.yml
+++ b/.github/workflows/check-code.yml
@@ -22,10 +22,9 @@ jobs:
- name: Run lint
run: yarn lint
-
+
- name: Check formatting
run: yarn format:check
- name: Run typecheck
run: yarn typecheck
-
diff --git a/.npmignore b/.npmignore
new file mode 100644
index 0000000..dd11e14
--- /dev/null
+++ b/.npmignore
@@ -0,0 +1 @@
+assets/images
\ No newline at end of file
diff --git a/.storybook/main.ts b/.storybook/main.ts
index 6c833b3..771c296 100644
--- a/.storybook/main.ts
+++ b/.storybook/main.ts
@@ -1,6 +1,7 @@
import type { StorybookConfig } from "@storybook/react-webpack5";
const config: StorybookConfig = {
+ staticDirs: ['../src/assets/images'],
stories: ["../src/**/*.mdx", "../src/**/*.stories.@(js|jsx|mjs|ts|tsx)"],
addons: [
"@storybook/addon-webpack5-compiler-swc",
diff --git a/README.md b/README.md
index 777acec..1737139 100644
--- a/README.md
+++ b/README.md
@@ -9,7 +9,9 @@ To install the BDP-UI library, you can use the following command:
```bash
yarn add @bitcoin-dev-project/bdp-ui
```
-or
+
+or
+
```bash
npm i @bitcoin-dev-project/bdp-ui
```
@@ -19,10 +21,12 @@ npm i @bitcoin-dev-project/bdp-ui
Once installed, you can import the components or icons you need from the library:
## CSS workaround
+
Kindly import the css file to your global entry point.
Usually, that is `app/layout.tsx`
_note: import the css before your global css so if there are any conflicts your css takes precedence_
+
```tsx
// app/layout.tsx
...
@@ -33,6 +37,7 @@ import "./globals.css";
If you use tailwind for styling, also point your tailwind config to the library
i.e
+
```tsx
// tailwind.config.ts
...
@@ -47,31 +52,29 @@ const config: Config = {
```
### Components
+
Here is how you can import and use components
```jsx
-import { Button } from '@bitcoin-dev-project/bdp-ui';
+import { Button } from "@bitcoin-dev-project/bdp-ui";
function App() {
- return (
-
- );
+ return ;
}
```
### Icons
+
Here is how you can import icons
```jsx
-import { GithubIcon } from '@bitcoin-dev-project/bdp-ui/icons';
+import { GithubIcon } from "@bitcoin-dev-project/bdp-ui/icons";
function App() {
- return (
-
- );
+ return ;
}
```
## License
-This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details
+This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details
diff --git a/dist/icons.d.mts b/dist/icons.d.mts
index 3eec5d9..902925b 100644
--- a/dist/icons.d.mts
+++ b/dist/icons.d.mts
@@ -1,88 +1,247 @@
-import * as React from 'react';
-import { SVGProps } from 'react';
-
-declare const AppsIcon: ({ width, height, ...props }: SVGProps) => React.JSX.Element;
-
-declare const ArrowLeft: ({ width, height, pathProps, ...props }: SVGProps & {
- pathProps?: SVGProps;
+import * as React from "react";
+import { SVGProps } from "react";
+
+declare const AppsIcon: ({
+ width,
+ height,
+ ...props
+}: SVGProps) => React.JSX.Element;
+
+declare const ArrowLeft: ({
+ width,
+ height,
+ pathProps,
+ ...props
+}: SVGProps & {
+ pathProps?: SVGProps;
}) => React.JSX.Element;
-declare const ArrowLinkRight: ({ width, height, pathProps, ...props }: SVGProps & {
- pathProps?: SVGProps;
+declare const ArrowLinkRight: ({
+ width,
+ height,
+ pathProps,
+ ...props
+}: SVGProps & {
+ pathProps?: SVGProps;
}) => React.JSX.Element;
-declare const ArrowLinkUpRight: ({ width, height, pathProps, ...props }: SVGProps & {
- pathProps?: SVGProps;
+declare const ArrowLinkUpRight: ({
+ width,
+ height,
+ pathProps,
+ ...props
+}: SVGProps & {
+ pathProps?: SVGProps;
}) => React.JSX.Element;
-declare const ArrowRight: ({ width, height, pathProps, ...props }: SVGProps & {
- pathProps?: SVGProps;
+declare const ArrowRight: ({
+ width,
+ height,
+ pathProps,
+ ...props
+}: SVGProps & {
+ pathProps?: SVGProps;
}) => React.JSX.Element;
-declare const ArrowUp: ({ width, height, pathProps, ...props }: SVGProps & {
- pathProps?: SVGProps;
+declare const ArrowUp: ({
+ width,
+ height,
+ pathProps,
+ ...props
+}: SVGProps & {
+ pathProps?: SVGProps;
}) => React.JSX.Element;
-declare const AuthorIcon: ({ width, height, ...props }: SVGProps) => React.JSX.Element;
-
-declare const BitcoinIcon: ({ width, height, ...props }: SVGProps) => React.JSX.Element;
-
-declare const BookmarkIcon: ({ width, height, ...props }: SVGProps) => React.JSX.Element;
-
-declare const CalendarIcon: ({ width, height, pathProps, ...props }: SVGProps & {
- pathProps?: SVGProps;
+declare const AuthorIcon: ({
+ width,
+ height,
+ ...props
+}: SVGProps) => React.JSX.Element;
+
+declare const BitcoinIcon: ({
+ width,
+ height,
+ ...props
+}: SVGProps) => React.JSX.Element;
+
+declare const BookmarkIcon: ({
+ width,
+ height,
+ ...props
+}: SVGProps) => React.JSX.Element;
+
+declare const CalendarIcon: ({
+ width,
+ height,
+ pathProps,
+ ...props
+}: SVGProps & {
+ pathProps?: SVGProps;
}) => React.JSX.Element;
-declare const CloseIconOutlined: ({ width, height, ...props }: SVGProps) => React.JSX.Element;
-
-declare const DateIcon: ({ width, height, ...props }: SVGProps) => React.JSX.Element;
-
-declare const DayIcon: ({ width, height, ...props }: SVGProps) => React.JSX.Element;
-
-declare const DiceIcon: ({ width, height, pathProps, ...props }: SVGProps & {
- pathProps?: SVGProps;
+declare const CloseIconOutlined: ({
+ width,
+ height,
+ ...props
+}: SVGProps) => React.JSX.Element;
+
+declare const DateIcon: ({
+ width,
+ height,
+ ...props
+}: SVGProps) => React.JSX.Element;
+
+declare const DayIcon: ({
+ width,
+ height,
+ ...props
+}: SVGProps) => React.JSX.Element;
+
+declare const DiceIcon: ({
+ width,
+ height,
+ pathProps,
+ ...props
+}: SVGProps & {
+ pathProps?: SVGProps;
}) => React.JSX.Element;
-declare const DiscordIcon: ({ width, height, pathProps, ...props }: SVGProps & {
- pathProps?: SVGProps;
+declare const DiscordIcon: ({
+ width,
+ height,
+ pathProps,
+ ...props
+}: SVGProps & {
+ pathProps?: SVGProps;
}) => React.JSX.Element;
-declare const FilterIcon: ({ width, height, ...props }: SVGProps) => React.JSX.Element;
-
-declare const FilterCloseIcon: ({ width, height, ...props }: SVGProps) => React.JSX.Element;
-
-declare const GithubIcon: ({ width, height, ...props }: SVGProps) => React.JSX.Element;
-
-declare const LightningIconSolid: ({ width, height, pathProps, ...props }: SVGProps & {
- pathProps?: SVGProps;
+declare const FilterIcon: ({
+ width,
+ height,
+ ...props
+}: SVGProps) => React.JSX.Element;
+
+declare const FilterCloseIcon: ({
+ width,
+ height,
+ ...props
+}: SVGProps) => React.JSX.Element;
+
+declare const GithubIcon: ({
+ width,
+ height,
+ ...props
+}: SVGProps) => React.JSX.Element;
+
+declare const LightningIconSolid: ({
+ width,
+ height,
+ pathProps,
+ ...props
+}: SVGProps & {
+ pathProps?: SVGProps;
}) => React.JSX.Element;
-declare const LinkedinIcon: ({ width, height, ...props }: SVGProps) => React.JSX.Element;
-
-declare const MicIcon: ({ width, height, pathProps, ...props }: SVGProps & {
- pathProps?: SVGProps;
+declare const LinkedinIcon: ({
+ width,
+ height,
+ ...props
+}: SVGProps) => React.JSX.Element;
+
+declare const MicIcon: ({
+ width,
+ height,
+ pathProps,
+ ...props
+}: SVGProps & {
+ pathProps?: SVGProps;
}) => React.JSX.Element;
-declare const NightIcon: ({ width, height, pathProps, ...svgProps }: SVGProps & {
- pathProps?: SVGProps;
+declare const NightIcon: ({
+ width,
+ height,
+ pathProps,
+ ...svgProps
+}: SVGProps & {
+ pathProps?: SVGProps;
}) => React.JSX.Element;
-declare const NostrIcon: ({ width, height, pathProps, ...props }: SVGProps & {
- pathProps?: SVGProps;
+declare const NostrIcon: ({
+ width,
+ height,
+ pathProps,
+ ...props
+}: SVGProps & {
+ pathProps?: SVGProps;
}) => React.JSX.Element;
-declare const PlusIcon: ({ width, height, ...props }: SVGProps) => React.JSX.Element;
-
-declare const SearchIcon: ({ width, height, ...props }: SVGProps) => React.JSX.Element;
-
-declare const SortIcon: ({ width, height, ...props }: SVGProps) => React.JSX.Element;
-
-declare const SourceIcon: ({ width, height, ...props }: SVGProps) => React.JSX.Element;
-
-declare const TimeIcon: ({ width, height, ...props }: SVGProps) => React.JSX.Element;
-
-declare const TwitterXIcon: ({ width, height, pathProps, ...props }: SVGProps & {
- pathProps?: SVGProps;
+declare const PlusIcon: ({
+ width,
+ height,
+ ...props
+}: SVGProps) => React.JSX.Element;
+
+declare const SearchIcon: ({
+ width,
+ height,
+ ...props
+}: SVGProps) => React.JSX.Element;
+
+declare const SortIcon: ({
+ width,
+ height,
+ ...props
+}: SVGProps) => React.JSX.Element;
+
+declare const SourceIcon: ({
+ width,
+ height,
+ ...props
+}: SVGProps) => React.JSX.Element;
+
+declare const TimeIcon: ({
+ width,
+ height,
+ ...props
+}: SVGProps) => React.JSX.Element;
+
+declare const TwitterXIcon: ({
+ width,
+ height,
+ pathProps,
+ ...props
+}: SVGProps & {
+ pathProps?: SVGProps;
}) => React.JSX.Element;
-export { AppsIcon, ArrowLeft, ArrowLinkRight, ArrowLinkUpRight, ArrowRight, ArrowUp, AuthorIcon, BitcoinIcon, BookmarkIcon, CalendarIcon, CloseIconOutlined, DateIcon, DayIcon, DiceIcon, DiscordIcon, FilterCloseIcon, FilterIcon, GithubIcon, LightningIconSolid, LinkedinIcon, MicIcon, NightIcon, NostrIcon, PlusIcon, SearchIcon, SortIcon, SourceIcon, TimeIcon, TwitterXIcon };
+export {
+ AppsIcon,
+ ArrowLeft,
+ ArrowLinkRight,
+ ArrowLinkUpRight,
+ ArrowRight,
+ ArrowUp,
+ AuthorIcon,
+ BitcoinIcon,
+ BookmarkIcon,
+ CalendarIcon,
+ CloseIconOutlined,
+ DateIcon,
+ DayIcon,
+ DiceIcon,
+ DiscordIcon,
+ FilterCloseIcon,
+ FilterIcon,
+ GithubIcon,
+ LightningIconSolid,
+ LinkedinIcon,
+ MicIcon,
+ NightIcon,
+ NostrIcon,
+ PlusIcon,
+ SearchIcon,
+ SortIcon,
+ SourceIcon,
+ TimeIcon,
+ TwitterXIcon,
+};
diff --git a/dist/icons.d.ts b/dist/icons.d.ts
index 3eec5d9..902925b 100644
--- a/dist/icons.d.ts
+++ b/dist/icons.d.ts
@@ -1,88 +1,247 @@
-import * as React from 'react';
-import { SVGProps } from 'react';
-
-declare const AppsIcon: ({ width, height, ...props }: SVGProps) => React.JSX.Element;
-
-declare const ArrowLeft: ({ width, height, pathProps, ...props }: SVGProps & {
- pathProps?: SVGProps;
+import * as React from "react";
+import { SVGProps } from "react";
+
+declare const AppsIcon: ({
+ width,
+ height,
+ ...props
+}: SVGProps) => React.JSX.Element;
+
+declare const ArrowLeft: ({
+ width,
+ height,
+ pathProps,
+ ...props
+}: SVGProps & {
+ pathProps?: SVGProps;
}) => React.JSX.Element;
-declare const ArrowLinkRight: ({ width, height, pathProps, ...props }: SVGProps & {
- pathProps?: SVGProps;
+declare const ArrowLinkRight: ({
+ width,
+ height,
+ pathProps,
+ ...props
+}: SVGProps & {
+ pathProps?: SVGProps;
}) => React.JSX.Element;
-declare const ArrowLinkUpRight: ({ width, height, pathProps, ...props }: SVGProps & {
- pathProps?: SVGProps;
+declare const ArrowLinkUpRight: ({
+ width,
+ height,
+ pathProps,
+ ...props
+}: SVGProps & {
+ pathProps?: SVGProps;
}) => React.JSX.Element;
-declare const ArrowRight: ({ width, height, pathProps, ...props }: SVGProps & {
- pathProps?: SVGProps;
+declare const ArrowRight: ({
+ width,
+ height,
+ pathProps,
+ ...props
+}: SVGProps & {
+ pathProps?: SVGProps;
}) => React.JSX.Element;
-declare const ArrowUp: ({ width, height, pathProps, ...props }: SVGProps & {
- pathProps?: SVGProps;
+declare const ArrowUp: ({
+ width,
+ height,
+ pathProps,
+ ...props
+}: SVGProps & {
+ pathProps?: SVGProps;
}) => React.JSX.Element;
-declare const AuthorIcon: ({ width, height, ...props }: SVGProps) => React.JSX.Element;
-
-declare const BitcoinIcon: ({ width, height, ...props }: SVGProps) => React.JSX.Element;
-
-declare const BookmarkIcon: ({ width, height, ...props }: SVGProps) => React.JSX.Element;
-
-declare const CalendarIcon: ({ width, height, pathProps, ...props }: SVGProps & {
- pathProps?: SVGProps;
+declare const AuthorIcon: ({
+ width,
+ height,
+ ...props
+}: SVGProps) => React.JSX.Element;
+
+declare const BitcoinIcon: ({
+ width,
+ height,
+ ...props
+}: SVGProps) => React.JSX.Element;
+
+declare const BookmarkIcon: ({
+ width,
+ height,
+ ...props
+}: SVGProps) => React.JSX.Element;
+
+declare const CalendarIcon: ({
+ width,
+ height,
+ pathProps,
+ ...props
+}: SVGProps & {
+ pathProps?: SVGProps;
}) => React.JSX.Element;
-declare const CloseIconOutlined: ({ width, height, ...props }: SVGProps) => React.JSX.Element;
-
-declare const DateIcon: ({ width, height, ...props }: SVGProps) => React.JSX.Element;
-
-declare const DayIcon: ({ width, height, ...props }: SVGProps) => React.JSX.Element;
-
-declare const DiceIcon: ({ width, height, pathProps, ...props }: SVGProps & {
- pathProps?: SVGProps;
+declare const CloseIconOutlined: ({
+ width,
+ height,
+ ...props
+}: SVGProps) => React.JSX.Element;
+
+declare const DateIcon: ({
+ width,
+ height,
+ ...props
+}: SVGProps) => React.JSX.Element;
+
+declare const DayIcon: ({
+ width,
+ height,
+ ...props
+}: SVGProps) => React.JSX.Element;
+
+declare const DiceIcon: ({
+ width,
+ height,
+ pathProps,
+ ...props
+}: SVGProps & {
+ pathProps?: SVGProps;
}) => React.JSX.Element;
-declare const DiscordIcon: ({ width, height, pathProps, ...props }: SVGProps & {
- pathProps?: SVGProps;
+declare const DiscordIcon: ({
+ width,
+ height,
+ pathProps,
+ ...props
+}: SVGProps & {
+ pathProps?: SVGProps;
}) => React.JSX.Element;
-declare const FilterIcon: ({ width, height, ...props }: SVGProps) => React.JSX.Element;
-
-declare const FilterCloseIcon: ({ width, height, ...props }: SVGProps) => React.JSX.Element;
-
-declare const GithubIcon: ({ width, height, ...props }: SVGProps) => React.JSX.Element;
-
-declare const LightningIconSolid: ({ width, height, pathProps, ...props }: SVGProps & {
- pathProps?: SVGProps;
+declare const FilterIcon: ({
+ width,
+ height,
+ ...props
+}: SVGProps) => React.JSX.Element;
+
+declare const FilterCloseIcon: ({
+ width,
+ height,
+ ...props
+}: SVGProps) => React.JSX.Element;
+
+declare const GithubIcon: ({
+ width,
+ height,
+ ...props
+}: SVGProps) => React.JSX.Element;
+
+declare const LightningIconSolid: ({
+ width,
+ height,
+ pathProps,
+ ...props
+}: SVGProps & {
+ pathProps?: SVGProps;
}) => React.JSX.Element;
-declare const LinkedinIcon: ({ width, height, ...props }: SVGProps) => React.JSX.Element;
-
-declare const MicIcon: ({ width, height, pathProps, ...props }: SVGProps & {
- pathProps?: SVGProps;
+declare const LinkedinIcon: ({
+ width,
+ height,
+ ...props
+}: SVGProps) => React.JSX.Element;
+
+declare const MicIcon: ({
+ width,
+ height,
+ pathProps,
+ ...props
+}: SVGProps & {
+ pathProps?: SVGProps;
}) => React.JSX.Element;
-declare const NightIcon: ({ width, height, pathProps, ...svgProps }: SVGProps & {
- pathProps?: SVGProps;
+declare const NightIcon: ({
+ width,
+ height,
+ pathProps,
+ ...svgProps
+}: SVGProps & {
+ pathProps?: SVGProps;
}) => React.JSX.Element;
-declare const NostrIcon: ({ width, height, pathProps, ...props }: SVGProps & {
- pathProps?: SVGProps;
+declare const NostrIcon: ({
+ width,
+ height,
+ pathProps,
+ ...props
+}: SVGProps & {
+ pathProps?: SVGProps;
}) => React.JSX.Element;
-declare const PlusIcon: ({ width, height, ...props }: SVGProps) => React.JSX.Element;
-
-declare const SearchIcon: ({ width, height, ...props }: SVGProps) => React.JSX.Element;
-
-declare const SortIcon: ({ width, height, ...props }: SVGProps) => React.JSX.Element;
-
-declare const SourceIcon: ({ width, height, ...props }: SVGProps) => React.JSX.Element;
-
-declare const TimeIcon: ({ width, height, ...props }: SVGProps) => React.JSX.Element;
-
-declare const TwitterXIcon: ({ width, height, pathProps, ...props }: SVGProps & {
- pathProps?: SVGProps;
+declare const PlusIcon: ({
+ width,
+ height,
+ ...props
+}: SVGProps) => React.JSX.Element;
+
+declare const SearchIcon: ({
+ width,
+ height,
+ ...props
+}: SVGProps) => React.JSX.Element;
+
+declare const SortIcon: ({
+ width,
+ height,
+ ...props
+}: SVGProps) => React.JSX.Element;
+
+declare const SourceIcon: ({
+ width,
+ height,
+ ...props
+}: SVGProps) => React.JSX.Element;
+
+declare const TimeIcon: ({
+ width,
+ height,
+ ...props
+}: SVGProps) => React.JSX.Element;
+
+declare const TwitterXIcon: ({
+ width,
+ height,
+ pathProps,
+ ...props
+}: SVGProps & {
+ pathProps?: SVGProps;
}) => React.JSX.Element;
-export { AppsIcon, ArrowLeft, ArrowLinkRight, ArrowLinkUpRight, ArrowRight, ArrowUp, AuthorIcon, BitcoinIcon, BookmarkIcon, CalendarIcon, CloseIconOutlined, DateIcon, DayIcon, DiceIcon, DiscordIcon, FilterCloseIcon, FilterIcon, GithubIcon, LightningIconSolid, LinkedinIcon, MicIcon, NightIcon, NostrIcon, PlusIcon, SearchIcon, SortIcon, SourceIcon, TimeIcon, TwitterXIcon };
+export {
+ AppsIcon,
+ ArrowLeft,
+ ArrowLinkRight,
+ ArrowLinkUpRight,
+ ArrowRight,
+ ArrowUp,
+ AuthorIcon,
+ BitcoinIcon,
+ BookmarkIcon,
+ CalendarIcon,
+ CloseIconOutlined,
+ DateIcon,
+ DayIcon,
+ DiceIcon,
+ DiscordIcon,
+ FilterCloseIcon,
+ FilterIcon,
+ GithubIcon,
+ LightningIconSolid,
+ LinkedinIcon,
+ MicIcon,
+ NightIcon,
+ NostrIcon,
+ PlusIcon,
+ SearchIcon,
+ SortIcon,
+ SourceIcon,
+ TimeIcon,
+ TwitterXIcon,
+};
diff --git a/dist/icons.js b/dist/icons.js
index 3b12541..cfa284b 100644
--- a/dist/icons.js
+++ b/dist/icons.js
@@ -10,22 +10,31 @@ var __export = (target, all) => {
__defProp(target, name, { get: all[name], enumerable: true });
};
var __copyProps = (to, from, except, desc) => {
- if (from && typeof from === "object" || typeof from === "function") {
+ if ((from && typeof from === "object") || typeof from === "function") {
for (let key of __getOwnPropNames(from))
if (!__hasOwnProp.call(to, key) && key !== except)
- __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
+ __defProp(to, key, {
+ get: () => from[key],
+ enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable,
+ });
}
return to;
};
-var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
- // If the importer is in node compatibility mode or this is not an ESM
- // file that has been converted to a CommonJS file using a Babel-
- // compatible transform (i.e. "__esModule" has not been set), then set
- // "default" to the CommonJS "module.exports" for node compatibility.
- isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
- mod
-));
-var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
+var __toESM = (mod, isNodeMode, target) => (
+ (target = mod != null ? __create(__getProtoOf(mod)) : {}),
+ __copyProps(
+ // If the importer is in node compatibility mode or this is not an ESM
+ // file that has been converted to a CommonJS file using a Babel-
+ // compatible transform (i.e. "__esModule" has not been set), then set
+ // "default" to the CommonJS "module.exports" for node compatibility.
+ isNodeMode || !mod || !mod.__esModule
+ ? __defProp(target, "default", { value: mod, enumerable: true })
+ : target,
+ mod,
+ )
+);
+var __toCommonJS = (mod) =>
+ __copyProps(__defProp({}, "__esModule", { value: true }), mod);
// src/icons.ts
var icons_exports = {};
@@ -58,7 +67,7 @@ __export(icons_exports, {
SortIcon: () => SortIcon_default,
SourceIcon: () => SourceIcon_default,
TimeIcon: () => TimeIcon_default,
- TwitterXIcon: () => TwitterXIcon_default
+ TwitterXIcon: () => TwitterXIcon_default,
});
module.exports = __toCommonJS(icons_exports);
@@ -69,16 +78,16 @@ var AppsIcon = ({
// eslint-disable-next-line @typescript-eslint/no-unused-vars
height,
...props
-}) => (
+}) =>
// height is destructed and unused, scaling is defined by width
- /* @__PURE__ */ React.createElement("svg", { width, viewBox: "0 0 22 22", fill: "none", ...props }, /* @__PURE__ */ React.createElement(
- "path",
- {
+ /* @__PURE__ */ React.createElement(
+ "svg",
+ { width, viewBox: "0 0 22 22", fill: "none", ...props },
+ /* @__PURE__ */ React.createElement("path", {
d: "M5.50228 18.3326C4.99811 18.3326 4.56667 18.1533 4.20795 17.7945C3.84922 17.4358 3.66956 17.0041 3.66895 16.4993C3.66895 15.9951 3.84861 15.5637 4.20795 15.205C4.56728 14.8462 4.99872 14.6666 5.50228 14.666C6.00645 14.666 6.4382 14.8456 6.79753 15.205C7.15686 15.5643 7.33622 15.9957 7.33561 16.4993C7.33561 17.0035 7.15625 17.4352 6.79753 17.7945C6.43881 18.1539 6.00706 18.3332 5.50228 18.3326ZM11.0023 18.3326C10.4981 18.3326 10.0667 18.1533 9.70795 17.7945C9.34923 17.4358 9.16956 17.0041 9.16895 16.4993C9.16895 15.9951 9.34861 15.5637 9.70795 15.205C10.0673 14.8462 10.4987 14.6666 11.0023 14.666C11.5064 14.666 11.9382 14.8456 12.2975 15.205C12.6569 15.5643 12.8362 15.9957 12.8356 16.4993C12.8356 17.0035 12.6563 17.4352 12.2975 17.7945C11.9388 18.1539 11.5071 18.3332 11.0023 18.3326ZM16.5023 18.3326C15.9981 18.3326 15.5667 18.1533 15.2079 17.7945C14.8492 17.4358 14.6696 17.0041 14.6689 16.4993C14.6689 15.9951 14.8486 15.5637 15.2079 15.205C15.5673 14.8462 15.9987 14.6666 16.5023 14.666C17.0064 14.666 17.4382 14.8456 17.7975 15.205C18.1569 15.5643 18.3362 15.9957 18.3356 16.4993C18.3356 17.0035 18.1563 17.4352 17.7975 17.7945C17.4388 18.1539 17.0071 18.3332 16.5023 18.3326ZM5.50228 12.8326C4.99811 12.8326 4.56667 12.6533 4.20795 12.2945C3.84922 11.9358 3.66956 11.5041 3.66895 10.9993C3.66895 10.4951 3.84861 10.0637 4.20795 9.70496C4.56728 9.34623 4.99872 9.16657 5.50228 9.16596C6.00645 9.16596 6.4382 9.34562 6.79753 9.70496C7.15686 10.0643 7.33622 10.4957 7.33561 10.9993C7.33561 11.5035 7.15625 11.9352 6.79753 12.2945C6.43881 12.6539 6.00706 12.8332 5.50228 12.8326ZM11.0023 12.8326C10.4981 12.8326 10.0667 12.6533 9.70795 12.2945C9.34923 11.9358 9.16956 11.5041 9.16895 10.9993C9.16895 10.4951 9.34861 10.0637 9.70795 9.70496C10.0673 9.34623 10.4987 9.16657 11.0023 9.16596C11.5064 9.16596 11.9382 9.34562 12.2975 9.70496C12.6569 10.0643 12.8362 10.4957 12.8356 10.9993C12.8356 11.5035 12.6563 11.9352 12.2975 12.2945C11.9388 12.6539 11.5071 12.8332 11.0023 12.8326ZM16.5023 12.8326C15.9981 12.8326 15.5667 12.6533 15.2079 12.2945C14.8492 11.9358 14.6696 11.5041 14.6689 10.9993C14.6689 10.4951 14.8486 10.0637 15.2079 9.70496C15.5673 9.34623 15.9987 9.16657 16.5023 9.16596C17.0064 9.16596 17.4382 9.34562 17.7975 9.70496C18.1569 10.0643 18.3362 10.4957 18.3356 10.9993C18.3356 11.5035 18.1563 11.9352 17.7975 12.2945C17.4388 12.6539 17.0071 12.8332 16.5023 12.8326ZM5.50228 7.33262C4.99811 7.33262 4.56667 7.15326 4.20795 6.79454C3.84922 6.43582 3.66956 6.00407 3.66895 5.49929C3.66895 4.99512 3.84861 4.56368 4.20795 4.20495C4.56728 3.84623 4.99872 3.66657 5.50228 3.66595C6.00645 3.66595 6.4382 3.84562 6.79753 4.20495C7.15686 4.56429 7.33622 4.99573 7.33561 5.49929C7.33561 6.00346 7.15625 6.43521 6.79753 6.79454C6.43881 7.15387 6.00706 7.33323 5.50228 7.33262ZM11.0023 7.33262C10.4981 7.33262 10.0667 7.15326 9.70795 6.79454C9.34923 6.43582 9.16956 6.00407 9.16895 5.49929C9.16895 4.99512 9.34861 4.56368 9.70795 4.20495C10.0673 3.84623 10.4987 3.66657 11.0023 3.66595C11.5064 3.66595 11.9382 3.84562 12.2975 4.20495C12.6569 4.56429 12.8362 4.99573 12.8356 5.49929C12.8356 6.00346 12.6563 6.43521 12.2975 6.79454C11.9388 7.15387 11.5071 7.33323 11.0023 7.33262ZM16.5023 7.33262C15.9981 7.33262 15.5667 7.15326 15.2079 6.79454C14.8492 6.43582 14.6696 6.00407 14.6689 5.49929C14.6689 4.99512 14.8486 4.56368 15.2079 4.20495C15.5673 3.84623 15.9987 3.66657 16.5023 3.66595C17.0064 3.66595 17.4382 3.84562 17.7975 4.20495C18.1569 4.56429 18.3362 4.99573 18.3356 5.49929C18.3356 6.00346 18.1563 6.43521 17.7975 6.79454C17.4388 7.15387 17.0071 7.33323 16.5023 7.33262Z",
- fill: "currentColor"
- }
- ))
-);
+ fill: "currentColor",
+ }),
+ );
var AppsIcon_default = AppsIcon;
// src/icons/ArrowLeft.tsx
@@ -97,18 +106,15 @@ var ArrowLeft = ({
viewBox: "0 0 7 12",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
- ...props
+ ...props,
},
- /* @__PURE__ */ React2.createElement(
- "path",
- {
- fillRule: "evenodd",
- clipRule: "evenodd",
- d: "M0.354784 5.17724C0.127604 5.39365 0 5.687 0 5.99287C0 6.29873 0.127604 6.59208 0.354784 6.8085L4.92909 11.1621C5.15667 11.3785 5.46529 11.5001 5.78705 11.5C6.10882 11.4999 6.41738 11.3782 6.64485 11.1617C6.87233 10.9452 7.00008 10.6516 7 10.3454C6.99992 10.0393 6.87203 9.74573 6.64445 9.52931L2.92743 5.99287L6.64445 2.45642C6.86554 2.23884 6.98796 1.94734 6.98535 1.64471C6.98274 1.34208 6.8553 1.05254 6.63048 0.83844C6.40566 0.624342 6.10145 0.50282 5.78337 0.500049C5.4653 0.497277 5.1588 0.613478 4.9299 0.823624L0.353974 5.17647L0.354784 5.17724Z",
- fill: "currentColor",
- ...pathProps
- }
- )
+ /* @__PURE__ */ React2.createElement("path", {
+ fillRule: "evenodd",
+ clipRule: "evenodd",
+ d: "M0.354784 5.17724C0.127604 5.39365 0 5.687 0 5.99287C0 6.29873 0.127604 6.59208 0.354784 6.8085L4.92909 11.1621C5.15667 11.3785 5.46529 11.5001 5.78705 11.5C6.10882 11.4999 6.41738 11.3782 6.64485 11.1617C6.87233 10.9452 7.00008 10.6516 7 10.3454C6.99992 10.0393 6.87203 9.74573 6.64445 9.52931L2.92743 5.99287L6.64445 2.45642C6.86554 2.23884 6.98796 1.94734 6.98535 1.64471C6.98274 1.34208 6.8553 1.05254 6.63048 0.83844C6.40566 0.624342 6.10145 0.50282 5.78337 0.500049C5.4653 0.497277 5.1588 0.613478 4.9299 0.823624L0.353974 5.17647L0.354784 5.17724Z",
+ fill: "currentColor",
+ ...pathProps,
+ }),
);
};
var ArrowLeft_default = ArrowLeft;
@@ -121,7 +127,7 @@ var ArrowLinkRight = ({
height,
pathProps,
...props
-}) => (
+}) =>
// height is destructed and unused, scaling is defined by width
/* @__PURE__ */ React3.createElement(
"svg",
@@ -130,32 +136,25 @@ var ArrowLinkRight = ({
viewBox: "0 0 24 24",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
- ...props
+ ...props,
},
- /* @__PURE__ */ React3.createElement(
- "path",
- {
- d: "M20 12.5H4",
- stroke: "currentColor",
- strokeWidth: "1.5",
- strokeLinecap: "round",
- strokeLinejoin: "round",
- ...pathProps
- }
- ),
- /* @__PURE__ */ React3.createElement(
- "path",
- {
- d: "M15 17.5C15 17.5 20 13.8176 20 12.5C20 11.1824 15 7.5 15 7.5",
- stroke: "currentColor",
- strokeWidth: "1.5",
- strokeLinecap: "round",
- strokeLinejoin: "round",
- ...pathProps
- }
- )
- )
-);
+ /* @__PURE__ */ React3.createElement("path", {
+ d: "M20 12.5H4",
+ stroke: "currentColor",
+ strokeWidth: "1.5",
+ strokeLinecap: "round",
+ strokeLinejoin: "round",
+ ...pathProps,
+ }),
+ /* @__PURE__ */ React3.createElement("path", {
+ d: "M15 17.5C15 17.5 20 13.8176 20 12.5C20 11.1824 15 7.5 15 7.5",
+ stroke: "currentColor",
+ strokeWidth: "1.5",
+ strokeLinecap: "round",
+ strokeLinejoin: "round",
+ ...pathProps,
+ }),
+ );
var ArrowLinkRight_default = ArrowLinkRight;
// src/icons/ArrowLinkUpRight.tsx
@@ -166,7 +165,7 @@ var ArrowLinkUpRight = ({
height,
pathProps,
...props
-}) => (
+}) =>
// height is destructed and unused, scaling is defined by width
/* @__PURE__ */ React4.createElement(
"svg",
@@ -175,31 +174,24 @@ var ArrowLinkUpRight = ({
viewBox: "0 0 24 24",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
- ...props
+ ...props,
},
- /* @__PURE__ */ React4.createElement(
- "path",
- {
- d: "M17 7.5L6 18.5",
- stroke: "currentColor",
- strokeWidth: "1.5",
- strokeLinecap: "round",
- ...pathProps
- }
- ),
- /* @__PURE__ */ React4.createElement(
- "path",
- {
- d: "M11 6.6315C11 6.6315 16.6335 6.15661 17.4885 7.01152C18.3434 7.86644 17.8684 13.5 17.8684 13.5",
- stroke: "currentColor",
- strokeWidth: "1.5",
- strokeLinecap: "round",
- strokeLinejoin: "round",
- ...pathProps
- }
- )
- )
-);
+ /* @__PURE__ */ React4.createElement("path", {
+ d: "M17 7.5L6 18.5",
+ stroke: "currentColor",
+ strokeWidth: "1.5",
+ strokeLinecap: "round",
+ ...pathProps,
+ }),
+ /* @__PURE__ */ React4.createElement("path", {
+ d: "M11 6.6315C11 6.6315 16.6335 6.15661 17.4885 7.01152C18.3434 7.86644 17.8684 13.5 17.8684 13.5",
+ stroke: "currentColor",
+ strokeWidth: "1.5",
+ strokeLinecap: "round",
+ strokeLinejoin: "round",
+ ...pathProps,
+ }),
+ );
var ArrowLinkUpRight_default = ArrowLinkUpRight;
// src/icons/ArrowRight.tsx
@@ -218,18 +210,15 @@ var ArrowRight = ({
viewBox: "0 0 7 12",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
- ...props
+ ...props,
},
- /* @__PURE__ */ React5.createElement(
- "path",
- {
- fillRule: "evenodd",
- clipRule: "evenodd",
- d: "M6.64522 5.17724C6.8724 5.39365 7 5.687 7 5.99287C7 6.29873 6.8724 6.59208 6.64522 6.8085L2.07091 11.1621C1.84333 11.3785 1.53471 11.5001 1.21295 11.5C0.891176 11.4999 0.582617 11.3782 0.355145 11.1617C0.127674 10.9452 -7.58015e-05 10.6516 3.37439e-08 10.3454C7.5869e-05 10.0393 0.127971 9.74573 0.35555 9.52931L4.07257 5.99287L0.35555 2.45642C0.134458 2.23884 0.0120353 1.94734 0.0146483 1.64471C0.0172613 1.34208 0.144701 1.05254 0.36952 0.83844C0.594339 0.624342 0.898547 0.50282 1.21663 0.500049C1.5347 0.497277 1.8412 0.613478 2.0701 0.823624L6.64603 5.17647L6.64522 5.17724Z",
- fill: "currentColor",
- ...pathProps
- }
- )
+ /* @__PURE__ */ React5.createElement("path", {
+ fillRule: "evenodd",
+ clipRule: "evenodd",
+ d: "M6.64522 5.17724C6.8724 5.39365 7 5.687 7 5.99287C7 6.29873 6.8724 6.59208 6.64522 6.8085L2.07091 11.1621C1.84333 11.3785 1.53471 11.5001 1.21295 11.5C0.891176 11.4999 0.582617 11.3782 0.355145 11.1617C0.127674 10.9452 -7.58015e-05 10.6516 3.37439e-08 10.3454C7.5869e-05 10.0393 0.127971 9.74573 0.35555 9.52931L4.07257 5.99287L0.35555 2.45642C0.134458 2.23884 0.0120353 1.94734 0.0146483 1.64471C0.0172613 1.34208 0.144701 1.05254 0.36952 0.83844C0.594339 0.624342 0.898547 0.50282 1.21663 0.500049C1.5347 0.497277 1.8412 0.613478 2.0701 0.823624L6.64603 5.17647L6.64522 5.17724Z",
+ fill: "currentColor",
+ ...pathProps,
+ }),
);
};
var ArrowRight_default = ArrowRight;
@@ -250,18 +239,15 @@ var ArrowUp = ({
viewBox: "0 0 12 8",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
- ...props
+ ...props,
},
- /* @__PURE__ */ React6.createElement(
- "path",
- {
- fillRule: "evenodd",
- clipRule: "evenodd",
- d: "M7.2385 0.854784C7.01816 0.627604 6.71947 0.5 6.40804 0.5C6.09662 0.5 5.79793 0.627604 5.57759 0.854784L1.14482 5.42909C0.924461 5.65667 0.800708 5.96529 0.800781 6.28705C0.800855 6.60882 0.924748 6.91738 1.14521 7.14485C1.36567 7.37233 1.66463 7.50008 1.97634 7.5C2.28804 7.49992 2.58695 7.37203 2.8073 7.14445L6.40804 3.42743L10.0088 7.14445C10.2303 7.36554 10.5271 7.48796 10.8353 7.48535C11.1434 7.48274 11.4382 7.3553 11.6562 7.13048C11.8742 6.90566 11.9979 6.60145 12.0007 6.28337C12.0036 5.9653 11.8852 5.6588 11.6713 5.4299L7.23929 0.853974L7.2385 0.854784Z",
- fill: "currentColor",
- ...pathProps
- }
- )
+ /* @__PURE__ */ React6.createElement("path", {
+ fillRule: "evenodd",
+ clipRule: "evenodd",
+ d: "M7.2385 0.854784C7.01816 0.627604 6.71947 0.5 6.40804 0.5C6.09662 0.5 5.79793 0.627604 5.57759 0.854784L1.14482 5.42909C0.924461 5.65667 0.800708 5.96529 0.800781 6.28705C0.800855 6.60882 0.924748 6.91738 1.14521 7.14485C1.36567 7.37233 1.66463 7.50008 1.97634 7.5C2.28804 7.49992 2.58695 7.37203 2.8073 7.14445L6.40804 3.42743L10.0088 7.14445C10.2303 7.36554 10.5271 7.48796 10.8353 7.48535C11.1434 7.48274 11.4382 7.3553 11.6562 7.13048C11.8742 6.90566 11.9979 6.60145 12.0007 6.28337C12.0036 5.9653 11.8852 5.6588 11.6713 5.4299L7.23929 0.853974L7.2385 0.854784Z",
+ fill: "currentColor",
+ ...pathProps,
+ }),
);
};
var ArrowUp_default = ArrowUp;
@@ -273,7 +259,7 @@ var AuthorIcon = ({
// eslint-disable-next-line @typescript-eslint/no-unused-vars
height,
...props
-}) => (
+}) =>
// height is destructed and unused, scaling is defined by width
/* @__PURE__ */ React7.createElement(
"svg",
@@ -282,17 +268,13 @@ var AuthorIcon = ({
viewBox: "0 0 20 20",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
- ...props
+ ...props,
},
- /* @__PURE__ */ React7.createElement(
- "path",
- {
- d: "M10.0052 9.77354C11.8049 9.77354 13.3535 8.1664 13.3535 6.07354C13.3535 4.00639 11.7963 2.47461 10.0052 2.47461C8.21382 2.47461 6.65703 4.03997 6.65703 6.09068C6.65703 8.1664 8.21417 9.77354 10.0052 9.77354ZM4.74846 17.5246H15.262C16.5763 17.5246 17.0449 17.1482 17.0449 16.4114C17.0449 14.2518 14.3413 11.2721 10.0052 11.2721C5.66096 11.2721 2.95703 14.2518 2.95703 16.4114C2.95703 17.1482 3.42596 17.5246 4.74846 17.5246Z",
- fill: "currentColor"
- }
- )
- )
-);
+ /* @__PURE__ */ React7.createElement("path", {
+ d: "M10.0052 9.77354C11.8049 9.77354 13.3535 8.1664 13.3535 6.07354C13.3535 4.00639 11.7963 2.47461 10.0052 2.47461C8.21382 2.47461 6.65703 4.03997 6.65703 6.09068C6.65703 8.1664 8.21417 9.77354 10.0052 9.77354ZM4.74846 17.5246H15.262C16.5763 17.5246 17.0449 17.1482 17.0449 16.4114C17.0449 14.2518 14.3413 11.2721 10.0052 11.2721C5.66096 11.2721 2.95703 14.2518 2.95703 16.4114C2.95703 17.1482 3.42596 17.5246 4.74846 17.5246Z",
+ fill: "currentColor",
+ }),
+ );
var AuthorIcon_default = AuthorIcon;
// src/icons/BitcoinIcon.tsx
@@ -302,7 +284,7 @@ var BitcoinIcon = ({
// eslint-disable-next-line @typescript-eslint/no-unused-vars
height,
...props
-}) => (
+}) =>
// height is destructed and unused, scaling is defined by width
/* @__PURE__ */ React8.createElement(
"svg",
@@ -311,26 +293,19 @@ var BitcoinIcon = ({
viewBox: "0 0 18 18",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
- ...props
+ ...props,
},
- /* @__PURE__ */ React8.createElement(
- "path",
- {
- d: "M8.28312 7.967L8.23312 7.952L8.76112 5.83496L8.97312 5.88496C9.67912 6.04196 11.1981 6.38296 10.9231 7.498C10.6281 8.671 8.87412 8.144 8.28312 7.967ZM7.37012 11.405L7.45612 11.43C8.18412 11.647 10.2521 12.262 10.5321 11.097C10.8211 9.976 8.96212 9.539 8.13012 9.344C8.03912 9.322 7.96012 9.304 7.89812 9.288L7.37012 11.405Z",
- fill: "currentColor"
- }
- ),
- /* @__PURE__ */ React8.createElement(
- "path",
- {
- fillRule: "evenodd",
- clipRule: "evenodd",
- d: "M9 18C10.1819 18 11.3522 17.7672 12.4442 17.3149C13.5361 16.8626 14.5282 16.1997 15.364 15.364C16.1997 14.5282 16.8626 13.5361 17.3149 12.4442C17.7672 11.3522 18 10.1819 18 9C18 7.8181 17.7672 6.64778 17.3149 5.55585C16.8626 4.46392 16.1997 3.47177 15.364 2.63604C14.5282 1.80031 13.5361 1.13738 12.4442 0.68508C11.3522 0.23279 10.1819 0 9 0C6.61305 0 4.32387 0.94821 2.63604 2.63604C0.94821 4.32387 0 6.61305 0 9C0 11.3869 0.94821 13.6761 2.63604 15.364C4.32387 17.0518 6.61305 18 9 18ZM12.873 7.616C13.079 6.314 12.18 5.636 10.933 5.178L11.371 3.408L10.381 3.162L9.954 4.888L9.761 4.838C9.565 4.788 9.372 4.738 9.174 4.694L9.602 2.969L8.585 2.717L8.157 4.442L6.139 3.942L5.847 5.122C5.847 5.122 6.596 5.285 6.568 5.301C6.968 5.409 7.037 5.693 7.015 5.91L6.506 7.917L5.808 10.74C5.753 10.874 5.618 11.066 5.344 11C5.356 11.012 4.616 10.809 4.616 10.809L4.13 12.054L6.088 12.588L5.652 14.349L6.635 14.593L7.072 12.831C7.23 12.877 7.39 12.914 7.545 12.95C7.661 12.977 7.774 13.003 7.881 13.032L7.444 14.793L8.429 15.037L8.866 13.276C10.561 13.599 11.841 13.448 12.413 11.779C12.873 10.449 12.443 9.689 11.55 9.19C12.22 9.027 12.717 8.563 12.873 7.616Z",
- fill: "currentColor"
- }
- )
- )
-);
+ /* @__PURE__ */ React8.createElement("path", {
+ d: "M8.28312 7.967L8.23312 7.952L8.76112 5.83496L8.97312 5.88496C9.67912 6.04196 11.1981 6.38296 10.9231 7.498C10.6281 8.671 8.87412 8.144 8.28312 7.967ZM7.37012 11.405L7.45612 11.43C8.18412 11.647 10.2521 12.262 10.5321 11.097C10.8211 9.976 8.96212 9.539 8.13012 9.344C8.03912 9.322 7.96012 9.304 7.89812 9.288L7.37012 11.405Z",
+ fill: "currentColor",
+ }),
+ /* @__PURE__ */ React8.createElement("path", {
+ fillRule: "evenodd",
+ clipRule: "evenodd",
+ d: "M9 18C10.1819 18 11.3522 17.7672 12.4442 17.3149C13.5361 16.8626 14.5282 16.1997 15.364 15.364C16.1997 14.5282 16.8626 13.5361 17.3149 12.4442C17.7672 11.3522 18 10.1819 18 9C18 7.8181 17.7672 6.64778 17.3149 5.55585C16.8626 4.46392 16.1997 3.47177 15.364 2.63604C14.5282 1.80031 13.5361 1.13738 12.4442 0.68508C11.3522 0.23279 10.1819 0 9 0C6.61305 0 4.32387 0.94821 2.63604 2.63604C0.94821 4.32387 0 6.61305 0 9C0 11.3869 0.94821 13.6761 2.63604 15.364C4.32387 17.0518 6.61305 18 9 18ZM12.873 7.616C13.079 6.314 12.18 5.636 10.933 5.178L11.371 3.408L10.381 3.162L9.954 4.888L9.761 4.838C9.565 4.788 9.372 4.738 9.174 4.694L9.602 2.969L8.585 2.717L8.157 4.442L6.139 3.942L5.847 5.122C5.847 5.122 6.596 5.285 6.568 5.301C6.968 5.409 7.037 5.693 7.015 5.91L6.506 7.917L5.808 10.74C5.753 10.874 5.618 11.066 5.344 11C5.356 11.012 4.616 10.809 4.616 10.809L4.13 12.054L6.088 12.588L5.652 14.349L6.635 14.593L7.072 12.831C7.23 12.877 7.39 12.914 7.545 12.95C7.661 12.977 7.774 13.003 7.881 13.032L7.444 14.793L8.429 15.037L8.866 13.276C10.561 13.599 11.841 13.448 12.413 11.779C12.873 10.449 12.443 9.689 11.55 9.19C12.22 9.027 12.717 8.563 12.873 7.616Z",
+ fill: "currentColor",
+ }),
+ );
var BitcoinIcon_default = BitcoinIcon;
// src/icons/BookmarkIcon.tsx
@@ -340,7 +315,7 @@ var BookmarkIcon = ({
// eslint-disable-next-line @typescript-eslint/no-unused-vars
height,
...props
-}) => (
+}) =>
// height is destructed and unused, scaling is defined by width
/* @__PURE__ */ React9.createElement(
"svg",
@@ -349,30 +324,23 @@ var BookmarkIcon = ({
viewBox: "0 0 27 27",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
- ...props
+ ...props,
},
- /* @__PURE__ */ React9.createElement(
- "path",
- {
- d: "M3.75195 20.5604V14.7496C3.75195 10.7459 3.75195 8.74403 4.96226 7.50023C6.17257 6.25644 8.12053 6.25644 12.0164 6.25644C15.9123 6.25644 17.8603 6.25644 19.0707 7.50023C20.2809 8.74403 20.2809 10.7459 20.2809 14.7496V20.5604C20.2809 23.1013 20.2809 24.3717 19.4826 24.8265C17.9365 25.7071 15.0363 22.7691 13.659 21.8845C12.8602 21.3714 12.4608 21.1149 12.0164 21.1149C11.572 21.1149 11.1726 21.3714 10.3739 21.8845C8.9966 22.7691 6.09646 25.7071 4.55035 24.8265C3.75195 24.3717 3.75195 23.1013 3.75195 20.5604Z",
- stroke: "currentColor",
- strokeWidth: "1.6529",
- strokeLinecap: "round",
- strokeLinejoin: "round"
- }
- ),
- /* @__PURE__ */ React9.createElement(
- "path",
- {
- d: "M10.3638 2.95062H12.5676C17.7621 2.95062 20.3595 2.95062 21.9732 4.56437C23.5869 6.1781 23.5869 8.77538 23.5869 13.9699V20.5815",
- stroke: "currentColor",
- strokeWidth: "1.6529",
- strokeLinecap: "round",
- strokeLinejoin: "round"
- }
- )
- )
-);
+ /* @__PURE__ */ React9.createElement("path", {
+ d: "M3.75195 20.5604V14.7496C3.75195 10.7459 3.75195 8.74403 4.96226 7.50023C6.17257 6.25644 8.12053 6.25644 12.0164 6.25644C15.9123 6.25644 17.8603 6.25644 19.0707 7.50023C20.2809 8.74403 20.2809 10.7459 20.2809 14.7496V20.5604C20.2809 23.1013 20.2809 24.3717 19.4826 24.8265C17.9365 25.7071 15.0363 22.7691 13.659 21.8845C12.8602 21.3714 12.4608 21.1149 12.0164 21.1149C11.572 21.1149 11.1726 21.3714 10.3739 21.8845C8.9966 22.7691 6.09646 25.7071 4.55035 24.8265C3.75195 24.3717 3.75195 23.1013 3.75195 20.5604Z",
+ stroke: "currentColor",
+ strokeWidth: "1.6529",
+ strokeLinecap: "round",
+ strokeLinejoin: "round",
+ }),
+ /* @__PURE__ */ React9.createElement("path", {
+ d: "M10.3638 2.95062H12.5676C17.7621 2.95062 20.3595 2.95062 21.9732 4.56437C23.5869 6.1781 23.5869 8.77538 23.5869 13.9699V20.5815",
+ stroke: "currentColor",
+ strokeWidth: "1.6529",
+ strokeLinecap: "round",
+ strokeLinejoin: "round",
+ }),
+ );
var BookmarkIcon_default = BookmarkIcon;
// src/icons/CalendarIcon.tsx
@@ -384,7 +352,7 @@ var CalendarIcon = ({
// eslint-disable-next-line @typescript-eslint/no-unused-vars
pathProps,
...props
-}) => (
+}) =>
// height is destructed and unused, scaling is defined by width
// pathProps is destructured and unused
/* @__PURE__ */ React10.createElement(
@@ -394,60 +362,44 @@ var CalendarIcon = ({
viewBox: "0 0 23 23",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
- ...props
+ ...props,
},
- /* @__PURE__ */ React10.createElement(
- "path",
- {
- d: "M17.2283 2.2829V4.11945M6.20898 2.2829V4.11945",
- stroke: "currentColor",
- strokeWidth: "1.6529",
- strokeLinecap: "round",
- strokeLinejoin: "round"
- }
- ),
- /* @__PURE__ */ React10.createElement(
- "path",
- {
- d: "M11.7144 12.3839H11.7226M11.7144 16.057H11.7226M15.3834 12.3839H15.3916M8.04541 12.3839H8.05365M8.04541 16.057H8.05365",
- stroke: "currentColor",
- strokeWidth: "2.20386",
- strokeLinecap: "round",
- strokeLinejoin: "round"
- }
- ),
- /* @__PURE__ */ React10.createElement(
- "path",
- {
- d: "M3.91309 7.7926H19.5238",
- stroke: "currentColor",
- strokeWidth: "1.6529",
- strokeLinecap: "round",
- strokeLinejoin: "round"
- }
- ),
- /* @__PURE__ */ React10.createElement(
- "path",
- {
- d: "M2.99463 11.689C2.99463 7.68781 2.99463 5.6872 4.14442 4.44419C5.29421 3.20117 7.14477 3.20117 10.8459 3.20117H12.5906C16.2917 3.20117 18.1423 3.20117 19.2921 4.44419C20.4419 5.6872 20.4419 7.68781 20.4419 11.689V12.1606C20.4419 16.1618 20.4419 18.1624 19.2921 19.4054C18.1423 20.6484 16.2917 20.6484 12.5906 20.6484H10.8459C7.14477 20.6484 5.29421 20.6484 4.14442 19.4054C2.99463 18.1624 2.99463 16.1618 2.99463 12.1606V11.689Z",
- stroke: "currentColor",
- strokeWidth: "1.6529",
- strokeLinecap: "round",
- strokeLinejoin: "round"
- }
- ),
- /* @__PURE__ */ React10.createElement(
- "path",
- {
- d: "M3.4541 7.7926H19.9831",
- stroke: "currentColor",
- strokeWidth: "1.6529",
- strokeLinecap: "round",
- strokeLinejoin: "round"
- }
- )
- )
-);
+ /* @__PURE__ */ React10.createElement("path", {
+ d: "M17.2283 2.2829V4.11945M6.20898 2.2829V4.11945",
+ stroke: "currentColor",
+ strokeWidth: "1.6529",
+ strokeLinecap: "round",
+ strokeLinejoin: "round",
+ }),
+ /* @__PURE__ */ React10.createElement("path", {
+ d: "M11.7144 12.3839H11.7226M11.7144 16.057H11.7226M15.3834 12.3839H15.3916M8.04541 12.3839H8.05365M8.04541 16.057H8.05365",
+ stroke: "currentColor",
+ strokeWidth: "2.20386",
+ strokeLinecap: "round",
+ strokeLinejoin: "round",
+ }),
+ /* @__PURE__ */ React10.createElement("path", {
+ d: "M3.91309 7.7926H19.5238",
+ stroke: "currentColor",
+ strokeWidth: "1.6529",
+ strokeLinecap: "round",
+ strokeLinejoin: "round",
+ }),
+ /* @__PURE__ */ React10.createElement("path", {
+ d: "M2.99463 11.689C2.99463 7.68781 2.99463 5.6872 4.14442 4.44419C5.29421 3.20117 7.14477 3.20117 10.8459 3.20117H12.5906C16.2917 3.20117 18.1423 3.20117 19.2921 4.44419C20.4419 5.6872 20.4419 7.68781 20.4419 11.689V12.1606C20.4419 16.1618 20.4419 18.1624 19.2921 19.4054C18.1423 20.6484 16.2917 20.6484 12.5906 20.6484H10.8459C7.14477 20.6484 5.29421 20.6484 4.14442 19.4054C2.99463 18.1624 2.99463 16.1618 2.99463 12.1606V11.689Z",
+ stroke: "currentColor",
+ strokeWidth: "1.6529",
+ strokeLinecap: "round",
+ strokeLinejoin: "round",
+ }),
+ /* @__PURE__ */ React10.createElement("path", {
+ d: "M3.4541 7.7926H19.9831",
+ stroke: "currentColor",
+ strokeWidth: "1.6529",
+ strokeLinecap: "round",
+ strokeLinejoin: "round",
+ }),
+ );
var CalendarIcon_default = CalendarIcon;
// src/icons/CloseIconOutlined.tsx
@@ -457,7 +409,7 @@ var CloseIconOutlined = ({
// eslint-disable-next-line @typescript-eslint/no-unused-vars
height,
...props
-}) => (
+}) =>
// height is destructed and unused, scaling is defined by width
/* @__PURE__ */ React11.createElement(
"svg",
@@ -466,19 +418,15 @@ var CloseIconOutlined = ({
viewBox: "0 0 14 14",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
- ...props
+ ...props,
},
- /* @__PURE__ */ React11.createElement(
- "path",
- {
- d: "M1 1L13 13M13 1L1 13",
- stroke: "currentColor",
- strokeWidth: 2,
- strokeLinecap: "round"
- }
- )
- )
-);
+ /* @__PURE__ */ React11.createElement("path", {
+ d: "M1 1L13 13M13 1L1 13",
+ stroke: "currentColor",
+ strokeWidth: 2,
+ strokeLinecap: "round",
+ }),
+ );
var CloseIconOutlined_default = CloseIconOutlined;
// src/icons/DateIcon.tsx
@@ -488,7 +436,7 @@ var DateIcon = ({
// eslint-disable-next-line @typescript-eslint/no-unused-vars
height,
...props
-}) => (
+}) =>
// height is destructed and unused, scaling is defined by width
/* @__PURE__ */ React12.createElement(
"svg",
@@ -497,33 +445,29 @@ var DateIcon = ({
viewBox: "0 0 12 14",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
- ...props
+ ...props,
},
- /* @__PURE__ */ React12.createElement(
- "path",
- {
- d: "M10.6667 12.666H1.33333V5.33268H10.6667M8.66667 0.666016V1.99935H3.33333V0.666016H2V1.99935H1.33333C0.593333 1.99935 0 2.59268 0 3.33268V12.666C0 13.0196 0.140476 13.3588 0.390524 13.6088C0.640573 13.8589 0.979711 13.9993 1.33333 13.9993H10.6667C11.0203 13.9993 11.3594 13.8589 11.6095 13.6088C11.8595 13.3588 12 13.0196 12 12.666V3.33268C12 2.97906 11.8595 2.63992 11.6095 2.38987C11.3594 2.13982 11.0203 1.99935 10.6667 1.99935H10V0.666016M9.33333 7.99935H6V11.3327H9.33333V7.99935Z",
- fill: "currentColor"
- }
- )
- )
-);
+ /* @__PURE__ */ React12.createElement("path", {
+ d: "M10.6667 12.666H1.33333V5.33268H10.6667M8.66667 0.666016V1.99935H3.33333V0.666016H2V1.99935H1.33333C0.593333 1.99935 0 2.59268 0 3.33268V12.666C0 13.0196 0.140476 13.3588 0.390524 13.6088C0.640573 13.8589 0.979711 13.9993 1.33333 13.9993H10.6667C11.0203 13.9993 11.3594 13.8589 11.6095 13.6088C11.8595 13.3588 12 13.0196 12 12.666V3.33268C12 2.97906 11.8595 2.63992 11.6095 2.38987C11.3594 2.13982 11.0203 1.99935 10.6667 1.99935H10V0.666016M9.33333 7.99935H6V11.3327H9.33333V7.99935Z",
+ fill: "currentColor",
+ }),
+ );
var DateIcon_default = DateIcon;
// src/icons/DayIcon.tsx
var React13 = __toESM(require("react"));
-var DayIcon = ({ width = 16, height, ...props }) => (
+var DayIcon = ({ width = 16, height, ...props }) =>
// height is destructed and unused, scaling is defined by width
- /* @__PURE__ */ React13.createElement("svg", { width, viewBox: "0 0 16 16", fill: "none", ...props }, /* @__PURE__ */ React13.createElement(
- "path",
- {
+ /* @__PURE__ */ React13.createElement(
+ "svg",
+ { width, viewBox: "0 0 16 16", fill: "none", ...props },
+ /* @__PURE__ */ React13.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M8 0C8.21217 0 8.41566 0.0842854 8.56569 0.234315C8.71571 0.384344 8.8 0.587827 8.8 0.8V1.6C8.8 1.81217 8.71571 2.01566 8.56569 2.16569C8.41566 2.31571 8.21217 2.4 8 2.4C7.78783 2.4 7.58434 2.31571 7.43431 2.16569C7.28429 2.01566 7.2 1.81217 7.2 1.6V0.8C7.2 0.587827 7.28429 0.384344 7.43431 0.234315C7.58434 0.0842854 7.78783 0 8 0ZM0 8C0 7.78783 0.0842854 7.58434 0.234315 7.43431C0.384344 7.28429 0.587827 7.2 0.8 7.2H1.6C1.81217 7.2 2.01566 7.28429 2.16569 7.43431C2.31571 7.58434 2.4 7.78783 2.4 8C2.4 8.21217 2.31571 8.41566 2.16569 8.56569C2.01566 8.71571 1.81217 8.8 1.6 8.8H0.8C0.587827 8.8 0.384344 8.71571 0.234315 8.56569C0.0842854 8.41566 0 8.21217 0 8ZM13.6 8C13.6 7.78783 13.6843 7.58434 13.8343 7.43431C13.9843 7.28429 14.1878 7.2 14.4 7.2H15.2C15.4122 7.2 15.6157 7.28429 15.7657 7.43431C15.9157 7.58434 16 7.78783 16 8C16 8.21217 15.9157 8.41566 15.7657 8.56569C15.6157 8.71571 15.4122 8.8 15.2 8.8H14.4C14.1878 8.8 13.9843 8.71571 13.8343 8.56569C13.6843 8.41566 13.6 8.21217 13.6 8ZM8.8 14.4C8.8 14.1878 8.71571 13.9843 8.56569 13.8343C8.41566 13.6843 8.21217 13.6 8 13.6C7.78783 13.6 7.58434 13.6843 7.43431 13.8343C7.28429 13.9843 7.2 14.1878 7.2 14.4V15.2C7.2 15.4122 7.28429 15.6157 7.43431 15.7657C7.58434 15.9157 7.78783 16 8 16C8.21217 16 8.41566 15.9157 8.56569 15.7657C8.71571 15.6157 8.8 15.4122 8.8 15.2V14.4ZM13.0912 11.96C13.0174 11.8836 12.9291 11.8226 12.8315 11.7807C12.7339 11.7388 12.6289 11.7167 12.5227 11.7158C12.4165 11.7149 12.3112 11.7351 12.2128 11.7753C12.1145 11.8156 12.0252 11.875 11.9501 11.9501C11.875 12.0252 11.8156 12.1145 11.7753 12.2128C11.7351 12.3112 11.7149 12.4165 11.7158 12.5227C11.7167 12.6289 11.7388 12.7339 11.7807 12.8315C11.8226 12.9291 11.8836 13.0174 11.96 13.0912L12.5256 13.6568C12.6765 13.8025 12.8786 13.8832 13.0883 13.8813C13.2981 13.8795 13.4987 13.7954 13.6471 13.6471C13.7954 13.4987 13.8795 13.2981 13.8813 13.0883C13.8832 12.8786 13.8025 12.6765 13.6568 12.5256L13.0912 11.96ZM2.3432 2.3432C2.49322 2.19322 2.69667 2.10897 2.9088 2.10897C3.12093 2.10897 3.32438 2.19322 3.4744 2.3432L4.04 2.9088C4.18573 3.05968 4.26636 3.26176 4.26454 3.47152C4.26272 3.68128 4.17858 3.88193 4.03025 4.03025C3.88193 4.17858 3.68128 4.26272 3.47152 4.26454C3.26176 4.26636 3.05968 4.18573 2.9088 4.04L2.3432 3.4744C2.19322 3.32438 2.10897 3.12093 2.10897 2.9088C2.10897 2.69667 2.19322 2.49322 2.3432 2.3432ZM4.04 13.0912C4.11641 13.0174 4.17735 12.9291 4.21928 12.8315C4.26121 12.7339 4.28328 12.6289 4.2842 12.5227C4.28512 12.4165 4.26488 12.3112 4.22466 12.2128C4.18443 12.1145 4.12503 12.0252 4.04992 11.9501C3.9748 11.875 3.88548 11.8156 3.78716 11.7753C3.68885 11.7351 3.5835 11.7149 3.47728 11.7158C3.37106 11.7167 3.26608 11.7388 3.16848 11.7807C3.07087 11.8226 2.9826 11.8836 2.9088 11.96L2.3432 12.5256C2.26679 12.5994 2.20585 12.6877 2.16392 12.7853C2.12199 12.8829 2.09992 12.9879 2.099 13.0941C2.09808 13.2003 2.11832 13.3056 2.15854 13.404C2.19877 13.5023 2.25817 13.5916 2.33328 13.6667C2.4084 13.7418 2.49772 13.8012 2.59604 13.8415C2.69435 13.8817 2.7997 13.9019 2.90592 13.901C3.01214 13.9001 3.11712 13.878 3.21472 13.8361C3.31233 13.7942 3.4006 13.7332 3.4744 13.6568L4.04 13.0912ZM13.6568 2.3432C13.8068 2.49322 13.891 2.69667 13.891 2.9088C13.891 3.12093 13.8068 3.32438 13.6568 3.4744L13.0912 4.04C13.0174 4.11641 12.9291 4.17735 12.8315 4.21928C12.7339 4.26121 12.6289 4.28328 12.5227 4.2842C12.4165 4.28512 12.3112 4.26488 12.2128 4.22466C12.1145 4.18443 12.0252 4.12503 11.9501 4.04992C11.875 3.9748 11.8156 3.88548 11.7753 3.78716C11.7351 3.68885 11.7149 3.5835 11.7158 3.47728C11.7167 3.37106 11.7388 3.26608 11.7807 3.16848C11.8226 3.07087 11.8836 2.9826 11.96 2.9088L12.5256 2.3432C12.6756 2.19322 12.8791 2.10897 13.0912 2.10897C13.3033 2.10897 13.5068 2.19322 13.6568 2.3432ZM4 8C4 6.93913 4.42143 5.92172 5.17157 5.17157C5.92172 4.42143 6.93913 4 8 4C9.06087 4 10.0783 4.42143 10.8284 5.17157C11.5786 5.92172 12 6.93913 12 8C12 9.06087 11.5786 10.0783 10.8284 10.8284C10.0783 11.5786 9.06087 12 8 12C6.93913 12 5.92172 11.5786 5.17157 10.8284C4.42143 10.0783 4 9.06087 4 8Z",
- fill: "currentColor"
- }
- ))
-);
+ fill: "currentColor",
+ }),
+ );
var DayIcon_default = DayIcon;
// src/icons/DiceIcon.tsx
@@ -535,7 +479,7 @@ var DiceIcon = ({
// eslint-disable-next-line @typescript-eslint/no-unused-vars
pathProps,
...props
-}) => (
+}) =>
// height is destructed and unused, scaling is defined by width
// pathProps is destructured and unused
/* @__PURE__ */ React14.createElement(
@@ -545,44 +489,31 @@ var DiceIcon = ({
viewBox: "0 0 23 23",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
- ...props
+ ...props,
},
- /* @__PURE__ */ React14.createElement(
- "path",
- {
- d: "M10.341 13.159C9.68198 12.5 8.62132 12.5 6.5 12.5C4.37868 12.5 3.31802 12.5 2.65901 13.159M10.341 13.159C11 13.818 11 14.8787 11 17C11 19.1213 11 20.182 10.341 20.841M2.65901 13.159C2 13.818 2 14.8787 2 17C2 19.1213 2 20.182 2.65901 20.841M2.65901 20.841C3.31802 21.5 4.37868 21.5 6.5 21.5C8.62132 21.5 9.68198 21.5 10.341 20.841",
- stroke: "currentColor",
- strokeWidth: "1.5"
- }
- ),
- /* @__PURE__ */ React14.createElement(
- "path",
- {
- d: "M15.2218 4.77817C16.7406 6.29696 17.5 7.05635 17.5 8C17.5 8.94365 16.7406 9.70304 15.2218 11.2218C13.703 12.7406 12.9436 13.5 12 13.5C11.0563 13.5 10.297 12.7406 8.77817 11.2218C7.25939 9.70304 6.5 8.94365 6.5 8C6.5 7.05635 7.25939 6.29696 8.77817 4.77817C10.297 3.25939 11.0563 2.5 12 2.5C12.9437 2.5 13.703 3.25939 15.2218 4.77817Z",
- stroke: "currentColor",
- strokeWidth: "1.5"
- }
- ),
- /* @__PURE__ */ React14.createElement(
- "path",
- {
- d: "M21.341 13.159C20.682 12.5 19.6213 12.5 17.5 12.5C15.3787 12.5 14.318 12.5 13.659 13.159M21.341 13.159C22 13.818 22 14.8787 22 17C22 19.1213 22 20.182 21.341 20.841M13.659 13.159C13 13.818 13 14.8787 13 17C13 19.1213 13 20.182 13.659 20.841M13.659 20.841C14.318 21.5 15.3787 21.5 17.5 21.5C19.6213 21.5 20.682 21.5 21.341 20.841",
- stroke: "currentColor",
- strokeWidth: "1.5"
- }
- ),
- /* @__PURE__ */ React14.createElement(
- "path",
- {
- d: "M12.008 8H11.999",
- stroke: "currentColor",
- strokeWidth: "2",
- strokeLinecap: "round",
- strokeLinejoin: "round"
- }
- )
- )
-);
+ /* @__PURE__ */ React14.createElement("path", {
+ d: "M10.341 13.159C9.68198 12.5 8.62132 12.5 6.5 12.5C4.37868 12.5 3.31802 12.5 2.65901 13.159M10.341 13.159C11 13.818 11 14.8787 11 17C11 19.1213 11 20.182 10.341 20.841M2.65901 13.159C2 13.818 2 14.8787 2 17C2 19.1213 2 20.182 2.65901 20.841M2.65901 20.841C3.31802 21.5 4.37868 21.5 6.5 21.5C8.62132 21.5 9.68198 21.5 10.341 20.841",
+ stroke: "currentColor",
+ strokeWidth: "1.5",
+ }),
+ /* @__PURE__ */ React14.createElement("path", {
+ d: "M15.2218 4.77817C16.7406 6.29696 17.5 7.05635 17.5 8C17.5 8.94365 16.7406 9.70304 15.2218 11.2218C13.703 12.7406 12.9436 13.5 12 13.5C11.0563 13.5 10.297 12.7406 8.77817 11.2218C7.25939 9.70304 6.5 8.94365 6.5 8C6.5 7.05635 7.25939 6.29696 8.77817 4.77817C10.297 3.25939 11.0563 2.5 12 2.5C12.9437 2.5 13.703 3.25939 15.2218 4.77817Z",
+ stroke: "currentColor",
+ strokeWidth: "1.5",
+ }),
+ /* @__PURE__ */ React14.createElement("path", {
+ d: "M21.341 13.159C20.682 12.5 19.6213 12.5 17.5 12.5C15.3787 12.5 14.318 12.5 13.659 13.159M21.341 13.159C22 13.818 22 14.8787 22 17C22 19.1213 22 20.182 21.341 20.841M13.659 13.159C13 13.818 13 14.8787 13 17C13 19.1213 13 20.182 13.659 20.841M13.659 20.841C14.318 21.5 15.3787 21.5 17.5 21.5C19.6213 21.5 20.682 21.5 21.341 20.841",
+ stroke: "currentColor",
+ strokeWidth: "1.5",
+ }),
+ /* @__PURE__ */ React14.createElement("path", {
+ d: "M12.008 8H11.999",
+ stroke: "currentColor",
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round",
+ }),
+ );
var DiceIcon_default = DiceIcon;
// src/icons/DiscordIcon.tsx
@@ -594,7 +525,7 @@ var DiscordIcon = ({
// eslint-disable-next-line @typescript-eslint/no-unused-vars
pathProps,
...props
-}) => (
+}) =>
// height is destructed and unused, scaling is defined by width
// pathProps is destructured and unused
/* @__PURE__ */ React15.createElement(
@@ -604,19 +535,15 @@ var DiscordIcon = ({
viewBox: "0 0 41 33",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
- ...props
+ ...props,
},
- /* @__PURE__ */ React15.createElement(
- "path",
- {
- fillRule: "evenodd",
- clipRule: "evenodd",
- d: "M14.9997 0.916504C11.652 0.916504 9.12018 1.48117 6.34634 2.84334C6.1873 2.9212 6.05422 3.04346 5.96318 3.19534C4.05834 6.37067 0.33301 15.2092 0.33301 25.6665C0.332528 25.9044 0.424568 26.1332 0.589676 26.3045C2.33501 28.103 3.92084 29.4267 5.62218 30.3617C7.33268 31.3003 9.11468 31.8228 11.223 32.0758C11.3988 32.0972 11.577 32.0672 11.7361 31.9894C11.8952 31.9117 12.0284 31.7895 12.1195 31.6377L13.0545 30.0757C11.6923 29.599 10.3008 28.9665 9.44284 28.1085C9.31158 27.9816 9.2069 27.8298 9.13492 27.662C9.06293 27.4943 9.02509 27.3138 9.02359 27.1312C9.02209 26.9487 9.05697 26.7676 9.12618 26.5987C9.1954 26.4297 9.29757 26.2763 9.42673 26.1472C9.55589 26.0182 9.70946 25.9161 9.87848 25.8471C10.0475 25.778 10.2286 25.7433 10.4111 25.745C10.5937 25.7467 10.7741 25.7847 10.9418 25.8568C11.1096 25.929 11.2612 26.0338 11.388 26.1652C11.8555 26.6327 12.9537 27.1643 14.5047 27.6612C15.7862 27.9967 18.0173 28.4165 20.4997 28.4165C22.982 28.4165 25.2132 27.9967 26.4947 27.6612C28.0457 27.1643 29.1438 26.6308 29.6113 26.1652C29.7372 26.0301 29.889 25.9217 30.0577 25.8466C30.2264 25.7714 30.4084 25.731 30.5931 25.7278C30.7777 25.7245 30.9611 25.7585 31.1323 25.8276C31.3035 25.8968 31.459 25.9997 31.5896 26.1303C31.7201 26.2608 31.8231 26.4164 31.8922 26.5876C31.9614 26.7588 31.9953 26.9422 31.9921 27.1268C31.9888 27.3114 31.9484 27.4935 31.8733 27.6622C31.7981 27.8308 31.6898 27.9826 31.5547 28.1085C30.6985 28.9665 29.307 29.599 27.943 30.0757L28.8798 31.6377C28.9707 31.7898 29.1038 31.9124 29.2629 31.9905C29.422 32.0686 29.6004 32.0989 29.7763 32.0777C31.8847 31.8228 33.6667 31.3003 35.3772 30.3617C37.0785 29.4267 38.6643 28.103 40.4078 26.3045C40.5736 26.1335 40.6663 25.9047 40.6663 25.6665C40.6663 15.2092 36.941 6.37067 35.0362 3.19534C34.9451 3.04346 34.812 2.9212 34.653 2.84334C31.8792 1.48117 29.3473 0.916504 25.9997 0.916504C25.8074 0.91665 25.62 0.977275 25.464 1.0898C25.3081 1.20232 25.1914 1.36105 25.1307 1.5435L24.5147 3.3915C23.2175 2.97154 21.8631 2.75508 20.4997 2.74984C19.1362 2.75508 17.7818 2.97154 16.4847 3.3915L15.8687 1.5435C15.8079 1.36105 15.6913 1.20232 15.5353 1.0898C15.3794 0.977275 15.192 0.91665 14.9997 0.916504ZM16.833 17.8748C16.833 19.6458 15.601 21.0832 14.083 21.0832C12.565 21.0832 11.333 19.6458 11.333 17.8748C11.333 16.1038 12.565 14.6665 14.083 14.6665C15.601 14.6665 16.833 16.1038 16.833 17.8748ZM26.9163 21.0832C28.4343 21.0832 29.6663 19.6458 29.6663 17.8748C29.6663 16.1038 28.4343 14.6665 26.9163 14.6665C25.3983 14.6665 24.1663 16.1038 24.1663 17.8748C24.1663 19.6458 25.3983 21.0832 26.9163 21.0832Z",
- fill: "currentColor"
- }
- )
- )
-);
+ /* @__PURE__ */ React15.createElement("path", {
+ fillRule: "evenodd",
+ clipRule: "evenodd",
+ d: "M14.9997 0.916504C11.652 0.916504 9.12018 1.48117 6.34634 2.84334C6.1873 2.9212 6.05422 3.04346 5.96318 3.19534C4.05834 6.37067 0.33301 15.2092 0.33301 25.6665C0.332528 25.9044 0.424568 26.1332 0.589676 26.3045C2.33501 28.103 3.92084 29.4267 5.62218 30.3617C7.33268 31.3003 9.11468 31.8228 11.223 32.0758C11.3988 32.0972 11.577 32.0672 11.7361 31.9894C11.8952 31.9117 12.0284 31.7895 12.1195 31.6377L13.0545 30.0757C11.6923 29.599 10.3008 28.9665 9.44284 28.1085C9.31158 27.9816 9.2069 27.8298 9.13492 27.662C9.06293 27.4943 9.02509 27.3138 9.02359 27.1312C9.02209 26.9487 9.05697 26.7676 9.12618 26.5987C9.1954 26.4297 9.29757 26.2763 9.42673 26.1472C9.55589 26.0182 9.70946 25.9161 9.87848 25.8471C10.0475 25.778 10.2286 25.7433 10.4111 25.745C10.5937 25.7467 10.7741 25.7847 10.9418 25.8568C11.1096 25.929 11.2612 26.0338 11.388 26.1652C11.8555 26.6327 12.9537 27.1643 14.5047 27.6612C15.7862 27.9967 18.0173 28.4165 20.4997 28.4165C22.982 28.4165 25.2132 27.9967 26.4947 27.6612C28.0457 27.1643 29.1438 26.6308 29.6113 26.1652C29.7372 26.0301 29.889 25.9217 30.0577 25.8466C30.2264 25.7714 30.4084 25.731 30.5931 25.7278C30.7777 25.7245 30.9611 25.7585 31.1323 25.8276C31.3035 25.8968 31.459 25.9997 31.5896 26.1303C31.7201 26.2608 31.8231 26.4164 31.8922 26.5876C31.9614 26.7588 31.9953 26.9422 31.9921 27.1268C31.9888 27.3114 31.9484 27.4935 31.8733 27.6622C31.7981 27.8308 31.6898 27.9826 31.5547 28.1085C30.6985 28.9665 29.307 29.599 27.943 30.0757L28.8798 31.6377C28.9707 31.7898 29.1038 31.9124 29.2629 31.9905C29.422 32.0686 29.6004 32.0989 29.7763 32.0777C31.8847 31.8228 33.6667 31.3003 35.3772 30.3617C37.0785 29.4267 38.6643 28.103 40.4078 26.3045C40.5736 26.1335 40.6663 25.9047 40.6663 25.6665C40.6663 15.2092 36.941 6.37067 35.0362 3.19534C34.9451 3.04346 34.812 2.9212 34.653 2.84334C31.8792 1.48117 29.3473 0.916504 25.9997 0.916504C25.8074 0.91665 25.62 0.977275 25.464 1.0898C25.3081 1.20232 25.1914 1.36105 25.1307 1.5435L24.5147 3.3915C23.2175 2.97154 21.8631 2.75508 20.4997 2.74984C19.1362 2.75508 17.7818 2.97154 16.4847 3.3915L15.8687 1.5435C15.8079 1.36105 15.6913 1.20232 15.5353 1.0898C15.3794 0.977275 15.192 0.91665 14.9997 0.916504ZM16.833 17.8748C16.833 19.6458 15.601 21.0832 14.083 21.0832C12.565 21.0832 11.333 19.6458 11.333 17.8748C11.333 16.1038 12.565 14.6665 14.083 14.6665C15.601 14.6665 16.833 16.1038 16.833 17.8748ZM26.9163 21.0832C28.4343 21.0832 29.6663 19.6458 29.6663 17.8748C29.6663 16.1038 28.4343 14.6665 26.9163 14.6665C25.3983 14.6665 24.1663 16.1038 24.1663 17.8748C24.1663 19.6458 25.3983 21.0832 26.9163 21.0832Z",
+ fill: "currentColor",
+ }),
+ );
var DiscordIcon_default = DiscordIcon;
// src/icons/FilterIcon.tsx
@@ -626,7 +553,7 @@ var FilterIcon = ({
// eslint-disable-next-line @typescript-eslint/no-unused-vars
height,
...props
-}) => (
+}) =>
// height is destructed and unused, scaling is defined by width
/* @__PURE__ */ React16.createElement(
"svg",
@@ -636,17 +563,13 @@ var FilterIcon = ({
viewBox: "0 0 13 16",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
- ...props
+ ...props,
},
- /* @__PURE__ */ React16.createElement(
- "path",
- {
- d: "M4.12533 2.4573C3.91536 2.4573 3.714 2.54071 3.56553 2.68917C3.41707 2.83764 3.33366 3.039 3.33366 3.24896C3.33366 3.45893 3.41707 3.66029 3.56553 3.80876C3.714 3.95722 3.91536 4.04063 4.12533 4.04063C4.33529 4.04063 4.53665 3.95722 4.68512 3.80876C4.83359 3.66029 4.91699 3.45893 4.91699 3.24896C4.91699 3.039 4.83359 2.83764 4.68512 2.68917C4.53665 2.54071 4.33529 2.4573 4.12533 2.4573ZM1.88491 2.4573C2.04847 1.99375 2.35179 1.59235 2.75305 1.30842C3.15432 1.0245 3.63377 0.872025 4.12533 0.872025C4.61688 0.872025 5.09634 1.0245 5.4976 1.30842C5.89887 1.59235 6.20218 1.99375 6.36574 2.4573H12.042C12.252 2.4573 12.4533 2.54071 12.6018 2.68917C12.7503 2.83764 12.8337 3.039 12.8337 3.24896C12.8337 3.45893 12.7503 3.66029 12.6018 3.80876C12.4533 3.95722 12.252 4.04063 12.042 4.04063H6.36574C6.20218 4.50418 5.89887 4.90558 5.4976 5.18951C5.09634 5.47343 4.61688 5.62591 4.12533 5.62591C3.63377 5.62591 3.15432 5.47343 2.75305 5.18951C2.35179 4.90558 2.04847 4.50418 1.88491 4.04063H0.958659C0.748696 4.04063 0.547332 3.95722 0.398866 3.80876C0.2504 3.66029 0.166992 3.45893 0.166992 3.24896C0.166992 3.039 0.2504 2.83764 0.398866 2.68917C0.547332 2.54071 0.748696 2.4573 0.958659 2.4573H1.88491ZM8.87533 7.2073C8.66536 7.2073 8.464 7.29071 8.31553 7.43917C8.16707 7.58764 8.08366 7.789 8.08366 7.99897C8.08366 8.20893 8.16707 8.41029 8.31553 8.55876C8.464 8.70722 8.66536 8.79063 8.87533 8.79063C9.08529 8.79063 9.28665 8.70722 9.43512 8.55876C9.58359 8.41029 9.66699 8.20893 9.66699 7.99897C9.66699 7.789 9.58359 7.58764 9.43512 7.43917C9.28665 7.29071 9.08529 7.2073 8.87533 7.2073ZM6.63491 7.2073C6.79847 6.74375 7.10179 6.34235 7.50305 6.05842C7.90432 5.7745 8.38377 5.62202 8.87533 5.62202C9.36688 5.62202 9.84634 5.7745 10.2476 6.05842C10.6489 6.34235 10.9522 6.74375 11.1157 7.2073H12.042C12.252 7.2073 12.4533 7.29071 12.6018 7.43917C12.7503 7.58764 12.8337 7.789 12.8337 7.99897C12.8337 8.20893 12.7503 8.41029 12.6018 8.55876C12.4533 8.70722 12.252 8.79063 12.042 8.79063H11.1157C10.9522 9.25418 10.6489 9.65558 10.2476 9.93951C9.84634 10.2234 9.36688 10.3759 8.87533 10.3759C8.38377 10.3759 7.90432 10.2234 7.50305 9.93951C7.10179 9.65558 6.79847 9.25418 6.63491 8.79063H0.958659C0.748696 8.79063 0.547332 8.70722 0.398866 8.55876C0.2504 8.41029 0.166992 8.20893 0.166992 7.99897C0.166992 7.789 0.2504 7.58764 0.398866 7.43917C0.547332 7.29071 0.748696 7.2073 0.958659 7.2073H6.63491ZM4.12533 11.9573C3.91536 11.9573 3.714 12.0407 3.56553 12.1892C3.41707 12.3376 3.33366 12.539 3.33366 12.749C3.33366 12.9589 3.41707 13.1603 3.56553 13.3088C3.714 13.4572 3.91536 13.5406 4.12533 13.5406C4.33529 13.5406 4.53665 13.4572 4.68512 13.3088C4.83359 13.1603 4.91699 12.9589 4.91699 12.749C4.91699 12.539 4.83359 12.3376 4.68512 12.1892C4.53665 12.0407 4.33529 11.9573 4.12533 11.9573ZM1.88491 11.9573C2.04847 11.4938 2.35179 11.0923 2.75305 10.8084C3.15432 10.5245 3.63377 10.372 4.12533 10.372C4.61688 10.372 5.09634 10.5245 5.4976 10.8084C5.89887 11.0923 6.20218 11.4938 6.36574 11.9573H12.042C12.252 11.9573 12.4533 12.0407 12.6018 12.1892C12.7503 12.3376 12.8337 12.539 12.8337 12.749C12.8337 12.9589 12.7503 13.1603 12.6018 13.3088C12.4533 13.4572 12.252 13.5406 12.042 13.5406H6.36574C6.20218 14.0042 5.89887 14.4056 5.4976 14.6895C5.09634 14.9734 4.61688 15.1259 4.12533 15.1259C3.63377 15.1259 3.15432 14.9734 2.75305 14.6895C2.35179 14.4056 2.04847 14.0042 1.88491 13.5406H0.958659C0.748696 13.5406 0.547332 13.4572 0.398866 13.3088C0.2504 13.1603 0.166992 12.9589 0.166992 12.749C0.166992 12.539 0.2504 12.3376 0.398866 12.1892C0.547332 12.0407 0.748696 11.9573 0.958659 11.9573H1.88491Z",
- fill: "currentColor"
- }
- )
- )
-);
+ /* @__PURE__ */ React16.createElement("path", {
+ d: "M4.12533 2.4573C3.91536 2.4573 3.714 2.54071 3.56553 2.68917C3.41707 2.83764 3.33366 3.039 3.33366 3.24896C3.33366 3.45893 3.41707 3.66029 3.56553 3.80876C3.714 3.95722 3.91536 4.04063 4.12533 4.04063C4.33529 4.04063 4.53665 3.95722 4.68512 3.80876C4.83359 3.66029 4.91699 3.45893 4.91699 3.24896C4.91699 3.039 4.83359 2.83764 4.68512 2.68917C4.53665 2.54071 4.33529 2.4573 4.12533 2.4573ZM1.88491 2.4573C2.04847 1.99375 2.35179 1.59235 2.75305 1.30842C3.15432 1.0245 3.63377 0.872025 4.12533 0.872025C4.61688 0.872025 5.09634 1.0245 5.4976 1.30842C5.89887 1.59235 6.20218 1.99375 6.36574 2.4573H12.042C12.252 2.4573 12.4533 2.54071 12.6018 2.68917C12.7503 2.83764 12.8337 3.039 12.8337 3.24896C12.8337 3.45893 12.7503 3.66029 12.6018 3.80876C12.4533 3.95722 12.252 4.04063 12.042 4.04063H6.36574C6.20218 4.50418 5.89887 4.90558 5.4976 5.18951C5.09634 5.47343 4.61688 5.62591 4.12533 5.62591C3.63377 5.62591 3.15432 5.47343 2.75305 5.18951C2.35179 4.90558 2.04847 4.50418 1.88491 4.04063H0.958659C0.748696 4.04063 0.547332 3.95722 0.398866 3.80876C0.2504 3.66029 0.166992 3.45893 0.166992 3.24896C0.166992 3.039 0.2504 2.83764 0.398866 2.68917C0.547332 2.54071 0.748696 2.4573 0.958659 2.4573H1.88491ZM8.87533 7.2073C8.66536 7.2073 8.464 7.29071 8.31553 7.43917C8.16707 7.58764 8.08366 7.789 8.08366 7.99897C8.08366 8.20893 8.16707 8.41029 8.31553 8.55876C8.464 8.70722 8.66536 8.79063 8.87533 8.79063C9.08529 8.79063 9.28665 8.70722 9.43512 8.55876C9.58359 8.41029 9.66699 8.20893 9.66699 7.99897C9.66699 7.789 9.58359 7.58764 9.43512 7.43917C9.28665 7.29071 9.08529 7.2073 8.87533 7.2073ZM6.63491 7.2073C6.79847 6.74375 7.10179 6.34235 7.50305 6.05842C7.90432 5.7745 8.38377 5.62202 8.87533 5.62202C9.36688 5.62202 9.84634 5.7745 10.2476 6.05842C10.6489 6.34235 10.9522 6.74375 11.1157 7.2073H12.042C12.252 7.2073 12.4533 7.29071 12.6018 7.43917C12.7503 7.58764 12.8337 7.789 12.8337 7.99897C12.8337 8.20893 12.7503 8.41029 12.6018 8.55876C12.4533 8.70722 12.252 8.79063 12.042 8.79063H11.1157C10.9522 9.25418 10.6489 9.65558 10.2476 9.93951C9.84634 10.2234 9.36688 10.3759 8.87533 10.3759C8.38377 10.3759 7.90432 10.2234 7.50305 9.93951C7.10179 9.65558 6.79847 9.25418 6.63491 8.79063H0.958659C0.748696 8.79063 0.547332 8.70722 0.398866 8.55876C0.2504 8.41029 0.166992 8.20893 0.166992 7.99897C0.166992 7.789 0.2504 7.58764 0.398866 7.43917C0.547332 7.29071 0.748696 7.2073 0.958659 7.2073H6.63491ZM4.12533 11.9573C3.91536 11.9573 3.714 12.0407 3.56553 12.1892C3.41707 12.3376 3.33366 12.539 3.33366 12.749C3.33366 12.9589 3.41707 13.1603 3.56553 13.3088C3.714 13.4572 3.91536 13.5406 4.12533 13.5406C4.33529 13.5406 4.53665 13.4572 4.68512 13.3088C4.83359 13.1603 4.91699 12.9589 4.91699 12.749C4.91699 12.539 4.83359 12.3376 4.68512 12.1892C4.53665 12.0407 4.33529 11.9573 4.12533 11.9573ZM1.88491 11.9573C2.04847 11.4938 2.35179 11.0923 2.75305 10.8084C3.15432 10.5245 3.63377 10.372 4.12533 10.372C4.61688 10.372 5.09634 10.5245 5.4976 10.8084C5.89887 11.0923 6.20218 11.4938 6.36574 11.9573H12.042C12.252 11.9573 12.4533 12.0407 12.6018 12.1892C12.7503 12.3376 12.8337 12.539 12.8337 12.749C12.8337 12.9589 12.7503 13.1603 12.6018 13.3088C12.4533 13.4572 12.252 13.5406 12.042 13.5406H6.36574C6.20218 14.0042 5.89887 14.4056 5.4976 14.6895C5.09634 14.9734 4.61688 15.1259 4.12533 15.1259C3.63377 15.1259 3.15432 14.9734 2.75305 14.6895C2.35179 14.4056 2.04847 14.0042 1.88491 13.5406H0.958659C0.748696 13.5406 0.547332 13.4572 0.398866 13.3088C0.2504 13.1603 0.166992 12.9589 0.166992 12.749C0.166992 12.539 0.2504 12.3376 0.398866 12.1892C0.547332 12.0407 0.748696 11.9573 0.958659 11.9573H1.88491Z",
+ fill: "currentColor",
+ }),
+ );
var FilterIcon_default = FilterIcon;
// src/icons/FilterCloseIcon.tsx
@@ -656,7 +579,7 @@ var FilterCloseIcon = ({
// eslint-disable-next-line @typescript-eslint/no-unused-vars
height,
...props
-}) => (
+}) =>
// height is destructed and unused, scaling is defined by width
/* @__PURE__ */ React17.createElement(
"svg",
@@ -665,17 +588,13 @@ var FilterCloseIcon = ({
viewBox: "0 0 20 20",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
- ...props
+ ...props,
},
- /* @__PURE__ */ React17.createElement(
- "path",
- {
- d: "M9.93317 16.6L3.33317 10L9.93317 3.4L11.1082 4.58333L6.52484 9.16666H18.3332V10.8333H6.52484L11.1165 15.4167L9.93317 16.6ZM3.33317 10V1.66666H1.6665V18.3333H3.33317V10Z",
- fill: "currentColor"
- }
- )
- )
-);
+ /* @__PURE__ */ React17.createElement("path", {
+ d: "M9.93317 16.6L3.33317 10L9.93317 3.4L11.1082 4.58333L6.52484 9.16666H18.3332V10.8333H6.52484L11.1165 15.4167L9.93317 16.6ZM3.33317 10V1.66666H1.6665V18.3333H3.33317V10Z",
+ fill: "currentColor",
+ }),
+ );
var FilterCloseIcon_default = FilterCloseIcon;
// src/icons/GithubIcon.tsx
@@ -685,7 +604,7 @@ var GithubIcon = ({
// eslint-disable-next-line @typescript-eslint/no-unused-vars
height,
...props
-}) => (
+}) =>
// height is destructed and unused, scaling is defined by width
/* @__PURE__ */ React18.createElement(
"svg",
@@ -694,17 +613,13 @@ var GithubIcon = ({
viewBox: "0 0 40 40",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
- ...props
+ ...props,
},
- /* @__PURE__ */ React18.createElement(
- "path",
- {
- d: "M20 0C17.3736 0 14.7728 0.530159 12.3463 1.56021C9.91982 2.59025 7.71504 4.10002 5.85786 6.0033C2.10714 9.84714 0 15.0605 0 20.4965C0 29.556 5.74 37.2422 13.68 39.9683C14.68 40.1322 15 39.4968 15 38.9434V35.4795C9.46 36.7093 8.28 32.733 8.28 32.733C7.36 30.3554 6.06 29.72 6.06 29.72C4.24 28.4492 6.2 28.4902 6.2 28.4902C8.2 28.6337 9.26 30.6013 9.26 30.6013C11 33.7168 13.94 32.7945 15.08 32.3025C15.26 30.9703 15.78 30.0684 16.34 29.556C11.9 29.0436 7.24 27.2809 7.24 19.4717C7.24 17.1966 8 15.3724 9.3 13.9172C9.1 13.4047 8.4 11.2731 9.5 8.50606C9.5 8.50606 11.18 7.95266 15 10.5967C16.58 10.1458 18.3 9.92033 20 9.92033C21.7 9.92033 23.42 10.1458 25 10.5967C28.82 7.95266 30.5 8.50606 30.5 8.50606C31.6 11.2731 30.9 13.4047 30.7 13.9172C32 15.3724 32.76 17.1966 32.76 19.4717C32.76 27.3014 28.08 29.0231 23.62 29.5355C24.34 30.1709 25 31.4212 25 33.3274V38.9434C25 39.4968 25.32 40.1527 26.34 39.9683C34.28 37.2217 40 29.556 40 20.4965C40 17.8049 39.4827 15.1396 38.4776 12.6529C37.4725 10.1661 35.9993 7.90658 34.1421 6.0033C32.285 4.10002 30.0802 2.59025 27.6537 1.56021C25.2272 0.530159 22.6264 0 20 0Z",
- fill: "currentColor"
- }
- )
- )
-);
+ /* @__PURE__ */ React18.createElement("path", {
+ d: "M20 0C17.3736 0 14.7728 0.530159 12.3463 1.56021C9.91982 2.59025 7.71504 4.10002 5.85786 6.0033C2.10714 9.84714 0 15.0605 0 20.4965C0 29.556 5.74 37.2422 13.68 39.9683C14.68 40.1322 15 39.4968 15 38.9434V35.4795C9.46 36.7093 8.28 32.733 8.28 32.733C7.36 30.3554 6.06 29.72 6.06 29.72C4.24 28.4492 6.2 28.4902 6.2 28.4902C8.2 28.6337 9.26 30.6013 9.26 30.6013C11 33.7168 13.94 32.7945 15.08 32.3025C15.26 30.9703 15.78 30.0684 16.34 29.556C11.9 29.0436 7.24 27.2809 7.24 19.4717C7.24 17.1966 8 15.3724 9.3 13.9172C9.1 13.4047 8.4 11.2731 9.5 8.50606C9.5 8.50606 11.18 7.95266 15 10.5967C16.58 10.1458 18.3 9.92033 20 9.92033C21.7 9.92033 23.42 10.1458 25 10.5967C28.82 7.95266 30.5 8.50606 30.5 8.50606C31.6 11.2731 30.9 13.4047 30.7 13.9172C32 15.3724 32.76 17.1966 32.76 19.4717C32.76 27.3014 28.08 29.0231 23.62 29.5355C24.34 30.1709 25 31.4212 25 33.3274V38.9434C25 39.4968 25.32 40.1527 26.34 39.9683C34.28 37.2217 40 29.556 40 20.4965C40 17.8049 39.4827 15.1396 38.4776 12.6529C37.4725 10.1661 35.9993 7.90658 34.1421 6.0033C32.285 4.10002 30.0802 2.59025 27.6537 1.56021C25.2272 0.530159 22.6264 0 20 0Z",
+ fill: "currentColor",
+ }),
+ );
var GithubIcon_default = GithubIcon;
// src/icons/LightningIconSolid.tsx
@@ -723,16 +638,13 @@ var LightningIconSolid = ({
viewBox: "0 0 14 17",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
- ...props
+ ...props,
},
- /* @__PURE__ */ React19.createElement(
- "path",
- {
- d: "M13.0778 7.33566L4.44176 16.2157C4.20176 16.4617 3.80376 16.1767 3.95976 15.8707L7.03376 9.80466C7.05704 9.75888 7.06818 9.70788 7.06611 9.65656C7.06404 9.60524 7.04883 9.55531 7.02193 9.51156C6.99504 9.4678 6.95736 9.43168 6.9125 9.40666C6.86765 9.38164 6.81712 9.36855 6.76576 9.36866H0.299757C0.240699 9.36861 0.182969 9.35113 0.133802 9.31841C0.0846347 9.2857 0.046218 9.23919 0.0233668 9.18473C0.000515729 9.13028 -0.00575341 9.07028 0.00534526 9.01228C0.0164439 8.95427 0.0444169 8.90083 0.0857577 8.85866L8.09576 0.743657C8.32776 0.508657 8.71376 0.766657 8.58476 1.07166L6.28776 6.48666C6.26831 6.53256 6.26061 6.5826 6.26535 6.63223C6.2701 6.68186 6.28714 6.72952 6.31493 6.77092C6.34272 6.81231 6.38039 6.84612 6.42454 6.8693C6.46868 6.89247 6.5179 6.90428 6.56776 6.90366L12.8588 6.82566C12.9181 6.8247 12.9764 6.84139 13.0263 6.8736C13.0762 6.90581 13.1154 6.95209 13.139 7.00659C13.1625 7.0611 13.1694 7.12136 13.1587 7.17976C13.1479 7.23816 13.1201 7.29207 13.0788 7.33466L13.0778 7.33566Z",
- fill: "currentColor",
- ...pathProps
- }
- )
+ /* @__PURE__ */ React19.createElement("path", {
+ d: "M13.0778 7.33566L4.44176 16.2157C4.20176 16.4617 3.80376 16.1767 3.95976 15.8707L7.03376 9.80466C7.05704 9.75888 7.06818 9.70788 7.06611 9.65656C7.06404 9.60524 7.04883 9.55531 7.02193 9.51156C6.99504 9.4678 6.95736 9.43168 6.9125 9.40666C6.86765 9.38164 6.81712 9.36855 6.76576 9.36866H0.299757C0.240699 9.36861 0.182969 9.35113 0.133802 9.31841C0.0846347 9.2857 0.046218 9.23919 0.0233668 9.18473C0.000515729 9.13028 -0.00575341 9.07028 0.00534526 9.01228C0.0164439 8.95427 0.0444169 8.90083 0.0857577 8.85866L8.09576 0.743657C8.32776 0.508657 8.71376 0.766657 8.58476 1.07166L6.28776 6.48666C6.26831 6.53256 6.26061 6.5826 6.26535 6.63223C6.2701 6.68186 6.28714 6.72952 6.31493 6.77092C6.34272 6.81231 6.38039 6.84612 6.42454 6.8693C6.46868 6.89247 6.5179 6.90428 6.56776 6.90366L12.8588 6.82566C12.9181 6.8247 12.9764 6.84139 13.0263 6.8736C13.0762 6.90581 13.1154 6.95209 13.139 7.00659C13.1625 7.0611 13.1694 7.12136 13.1587 7.17976C13.1479 7.23816 13.1201 7.29207 13.0788 7.33466L13.0778 7.33566Z",
+ fill: "currentColor",
+ ...pathProps,
+ }),
);
};
var LightningIconSolid_default = LightningIconSolid;
@@ -744,7 +656,7 @@ var LinkedinIcon = ({
// eslint-disable-next-line @typescript-eslint/no-unused-vars
height,
...props
-}) => (
+}) =>
// height is destructed and unused, scaling is defined by width
/* @__PURE__ */ React20.createElement(
"svg",
@@ -757,13 +669,19 @@ var LinkedinIcon = ({
strokeWidth: 2,
strokeLinecap: "round",
strokeLinejoin: "round",
- ...props
+ ...props,
},
- /* @__PURE__ */ React20.createElement("path", { d: "M16 8a6 6 0 016 6v7h-4v-7a2 2 0 00-2-2 2 2 0 00-2 2v7h-4v-7a6 6 0 016-6z" }),
- /* @__PURE__ */ React20.createElement("rect", { x: 2, y: 9, width: 4, height: 12 }),
- /* @__PURE__ */ React20.createElement("circle", { cx: 4, cy: 4, r: 2 })
- )
-);
+ /* @__PURE__ */ React20.createElement("path", {
+ d: "M16 8a6 6 0 016 6v7h-4v-7a2 2 0 00-2-2 2 2 0 00-2 2v7h-4v-7a6 6 0 016-6z",
+ }),
+ /* @__PURE__ */ React20.createElement("rect", {
+ x: 2,
+ y: 9,
+ width: 4,
+ height: 12,
+ }),
+ /* @__PURE__ */ React20.createElement("circle", { cx: 4, cy: 4, r: 2 }),
+ );
var LinkedinIcon_default = LinkedinIcon;
// src/icons/MicIcon.tsx
@@ -774,7 +692,7 @@ var MicIcon = ({
height,
pathProps,
...props
-}) => (
+}) =>
// height is destructed and unused, scaling is defined by width
// pathProps is destructured and unused
/* @__PURE__ */ React21.createElement(
@@ -784,36 +702,26 @@ var MicIcon = ({
viewBox: "0 0 27 27",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
- ...props
+ ...props,
},
- /* @__PURE__ */ React21.createElement(
- "path",
- {
- d: "M19.179 7.79078V12.1985C19.179 15.2414 16.7122 17.7082 13.6693 17.7082C10.6264 17.7082 8.15967 15.2414 8.15967 12.1985V7.79078C8.15967 4.74789 10.6264 2.28113 13.6693 2.28113C16.7122 2.28113 19.179 4.74789 19.179 7.79078Z",
- stroke: "currentColor",
- strokeWidth: 1.6529
- }
- ),
- /* @__PURE__ */ React21.createElement(
- "path",
- {
- d: "M19.1793 7.79077H15.8735M19.1793 12.1985H15.8735",
- stroke: "currentColor",
- strokeWidth: 1.6529,
- strokeLinecap: "round"
- }
- ),
- /* @__PURE__ */ React21.createElement(
- "path",
- {
- d: "M22.4849 12.1985C22.4849 17.0671 18.5381 21.0139 13.6695 21.0139M13.6695 21.0139C8.80081 21.0139 4.854 17.0671 4.854 12.1985M13.6695 21.0139V24.3197M13.6695 24.3197H16.9752M13.6695 24.3197H10.3637",
- stroke: "currentColor",
- strokeWidth: 1.6529,
- strokeLinecap: "round"
- }
- )
- )
-);
+ /* @__PURE__ */ React21.createElement("path", {
+ d: "M19.179 7.79078V12.1985C19.179 15.2414 16.7122 17.7082 13.6693 17.7082C10.6264 17.7082 8.15967 15.2414 8.15967 12.1985V7.79078C8.15967 4.74789 10.6264 2.28113 13.6693 2.28113C16.7122 2.28113 19.179 4.74789 19.179 7.79078Z",
+ stroke: "currentColor",
+ strokeWidth: 1.6529,
+ }),
+ /* @__PURE__ */ React21.createElement("path", {
+ d: "M19.1793 7.79077H15.8735M19.1793 12.1985H15.8735",
+ stroke: "currentColor",
+ strokeWidth: 1.6529,
+ strokeLinecap: "round",
+ }),
+ /* @__PURE__ */ React21.createElement("path", {
+ d: "M22.4849 12.1985C22.4849 17.0671 18.5381 21.0139 13.6695 21.0139M13.6695 21.0139C8.80081 21.0139 4.854 17.0671 4.854 12.1985M13.6695 21.0139V24.3197M13.6695 24.3197H16.9752M13.6695 24.3197H10.3637",
+ stroke: "currentColor",
+ strokeWidth: 1.6529,
+ strokeLinecap: "round",
+ }),
+ );
var MicIcon_default = MicIcon;
// src/icons/NightIcon.tsx
@@ -824,7 +732,7 @@ var NightIcon = ({
height,
pathProps,
...svgProps
-}) => (
+}) =>
// height is destructed and unused, scaling is defined by width
/* @__PURE__ */ React22.createElement(
"svg",
@@ -833,30 +741,21 @@ var NightIcon = ({
viewBox: "0 0 12 12",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
- ...svgProps
+ ...svgProps,
},
- /* @__PURE__ */ React22.createElement(
- "path",
- {
- d: "M11.3995 6.58487L11.3994 6.58653C11.0986 9.29321 8.79971 11.3991 6.01455 11.3991C4.57853 11.3991 3.20131 10.8286 2.18589 9.81317C1.17046 8.79775 0.6 7.42053 0.6 5.98451C0.6 3.19695 2.70595 0.901114 5.40619 0.601129C5.43566 0.599751 5.44864 0.606262 5.45316 0.608761C5.46036 0.612739 5.46925 0.620338 5.47679 0.633729C5.49367 0.663687 5.48983 0.691313 5.47637 0.711355L5.47624 0.711266L5.46876 0.722976C5.05448 1.37176 4.8131 2.15169 4.8131 2.97723L4.8131 2.97771C4.8137 3.73245 5.01715 4.47317 5.40216 5.12233C5.78717 5.77149 6.33959 6.30523 7.0016 6.6677C7.66361 7.03018 8.41088 7.20805 9.1652 7.18271C9.91757 7.15744 10.6494 6.93093 11.2844 6.52681C11.3123 6.5101 11.3278 6.50998 11.333 6.51013C11.3411 6.51036 11.3524 6.51299 11.3652 6.52137C11.3946 6.54069 11.4017 6.56622 11.3995 6.58487Z",
- fill: "none",
- stroke: "currentColor",
- ...pathProps,
- strokeWidth: "1"
- }
- )
- )
-);
+ /* @__PURE__ */ React22.createElement("path", {
+ d: "M11.3995 6.58487L11.3994 6.58653C11.0986 9.29321 8.79971 11.3991 6.01455 11.3991C4.57853 11.3991 3.20131 10.8286 2.18589 9.81317C1.17046 8.79775 0.6 7.42053 0.6 5.98451C0.6 3.19695 2.70595 0.901114 5.40619 0.601129C5.43566 0.599751 5.44864 0.606262 5.45316 0.608761C5.46036 0.612739 5.46925 0.620338 5.47679 0.633729C5.49367 0.663687 5.48983 0.691313 5.47637 0.711355L5.47624 0.711266L5.46876 0.722976C5.05448 1.37176 4.8131 2.15169 4.8131 2.97723L4.8131 2.97771C4.8137 3.73245 5.01715 4.47317 5.40216 5.12233C5.78717 5.77149 6.33959 6.30523 7.0016 6.6677C7.66361 7.03018 8.41088 7.20805 9.1652 7.18271C9.91757 7.15744 10.6494 6.93093 11.2844 6.52681C11.3123 6.5101 11.3278 6.50998 11.333 6.51013C11.3411 6.51036 11.3524 6.51299 11.3652 6.52137C11.3946 6.54069 11.4017 6.56622 11.3995 6.58487Z",
+ fill: "none",
+ stroke: "currentColor",
+ ...pathProps,
+ strokeWidth: "1",
+ }),
+ );
var NightIcon_default = NightIcon;
// src/icons/NostrIcon.tsx
var React23 = __toESM(require("react"));
-var NostrIcon = ({
- width = 31,
- height,
- pathProps,
- ...props
-}) => (
+var NostrIcon = ({ width = 31, height, pathProps, ...props }) =>
// height is destructed and unused, scaling is defined by width
// pathProps is destructured and unused
/* @__PURE__ */ React23.createElement(
@@ -866,17 +765,13 @@ var NostrIcon = ({
viewBox: "0 0 31 31",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
- ...props
+ ...props,
},
- /* @__PURE__ */ React23.createElement(
- "path",
- {
- d: "M31.5 13.5114V29.8827C31.5 30.4984 31.0041 30.998 30.3929 30.998H17.1081C16.4969 30.998 16.001 30.4984 16.001 29.8827V26.8339C16.0615 23.0966 16.454 19.5166 17.2779 17.8879C17.7719 16.9084 18.5861 16.3753 19.5214 16.0901C21.2884 15.5551 24.389 15.9209 25.705 15.858C25.705 15.858 29.6803 16.0173 29.6803 13.7494C29.6803 11.924 27.9035 12.0676 27.9035 12.0676C25.9451 12.1187 24.4534 11.985 23.4869 11.6014C21.8683 10.9602 21.8136 9.78388 21.8077 9.39048C21.7277 4.8467 15.0774 4.30184 9.21796 5.42893C2.81177 6.65635 9.28825 15.9072 9.28825 28.256V29.9044C9.27653 30.5102 8.79036 31 8.18508 31H1.60707C0.995937 31 0.5 30.5004 0.5 29.8847V1.56967C0.5 0.953998 0.995937 0.454378 1.60707 0.454378H7.79067C8.40181 0.454378 8.89775 0.953998 8.89775 1.56967C8.89775 2.48433 9.91891 2.99378 10.657 2.46072C12.8809 0.855648 15.7354 0 18.9297 0C26.0857 0 31.4961 4.20152 31.4961 13.5114H31.5ZM19.6209 10.1891C19.6209 8.87119 18.5607 7.80311 17.2525 7.80311C15.9444 7.80311 14.8841 8.87119 14.8841 10.1891C14.8841 11.507 15.9444 12.5751 17.2525 12.5751C18.5607 12.5751 19.6209 11.507 19.6209 10.1891Z",
- fill: "currentColor"
- }
- )
- )
-);
+ /* @__PURE__ */ React23.createElement("path", {
+ d: "M31.5 13.5114V29.8827C31.5 30.4984 31.0041 30.998 30.3929 30.998H17.1081C16.4969 30.998 16.001 30.4984 16.001 29.8827V26.8339C16.0615 23.0966 16.454 19.5166 17.2779 17.8879C17.7719 16.9084 18.5861 16.3753 19.5214 16.0901C21.2884 15.5551 24.389 15.9209 25.705 15.858C25.705 15.858 29.6803 16.0173 29.6803 13.7494C29.6803 11.924 27.9035 12.0676 27.9035 12.0676C25.9451 12.1187 24.4534 11.985 23.4869 11.6014C21.8683 10.9602 21.8136 9.78388 21.8077 9.39048C21.7277 4.8467 15.0774 4.30184 9.21796 5.42893C2.81177 6.65635 9.28825 15.9072 9.28825 28.256V29.9044C9.27653 30.5102 8.79036 31 8.18508 31H1.60707C0.995937 31 0.5 30.5004 0.5 29.8847V1.56967C0.5 0.953998 0.995937 0.454378 1.60707 0.454378H7.79067C8.40181 0.454378 8.89775 0.953998 8.89775 1.56967C8.89775 2.48433 9.91891 2.99378 10.657 2.46072C12.8809 0.855648 15.7354 0 18.9297 0C26.0857 0 31.4961 4.20152 31.4961 13.5114H31.5ZM19.6209 10.1891C19.6209 8.87119 18.5607 7.80311 17.2525 7.80311C15.9444 7.80311 14.8841 8.87119 14.8841 10.1891C14.8841 11.507 15.9444 12.5751 17.2525 12.5751C18.5607 12.5751 19.6209 11.507 19.6209 10.1891Z",
+ fill: "currentColor",
+ }),
+ );
var NostrIcon_default = NostrIcon;
// src/icons/PlusIcon.tsx
@@ -886,7 +781,7 @@ var PlusIcon = ({
// eslint-disable-next-line @typescript-eslint/no-unused-vars
height,
...props
-}) => (
+}) =>
// height is destructed and unused, scaling is defined by width
/* @__PURE__ */ React24.createElement(
"svg",
@@ -895,19 +790,15 @@ var PlusIcon = ({
viewBox: "0 0 12 12",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
- ...props
+ ...props,
},
- /* @__PURE__ */ React24.createElement(
- "path",
- {
- d: "M1.75781 6H10.2431M6.00045 1.75736V10.2426",
- stroke: "currentColor",
- strokeWidth: "2",
- strokeLinecap: "round"
- }
- )
- )
-);
+ /* @__PURE__ */ React24.createElement("path", {
+ d: "M1.75781 6H10.2431M6.00045 1.75736V10.2426",
+ stroke: "currentColor",
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ }),
+ );
var PlusIcon_default = PlusIcon;
// src/icons/SearchIcon.tsx
@@ -917,7 +808,7 @@ var SearchIcon = ({
// eslint-disable-next-line @typescript-eslint/no-unused-vars
height,
...props
-}) => (
+}) =>
// height is destructed and unused, scaling is defined by width
/* @__PURE__ */ React25.createElement(
"svg",
@@ -926,26 +817,19 @@ var SearchIcon = ({
viewBox: "0 0 20 20",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
- ...props
+ ...props,
},
- /* @__PURE__ */ React25.createElement(
- "path",
- {
- d: "M9.00001 17C13.4183 17 17 13.4183 17 9.00001C17 4.58173 13.4183 1 9.00001 1C4.58173 1 1 4.58173 1 9.00001C1 13.4183 4.58173 17 9.00001 17Z",
- stroke: "currentColor",
- strokeWidth: 2
- }
- ),
- /* @__PURE__ */ React25.createElement(
- "path",
- {
- d: "M18.9992 19.0002L14.6992 14.7002",
- stroke: "currentColor",
- strokeWidth: 2
- }
- )
- )
-);
+ /* @__PURE__ */ React25.createElement("path", {
+ d: "M9.00001 17C13.4183 17 17 13.4183 17 9.00001C17 4.58173 13.4183 1 9.00001 1C4.58173 1 1 4.58173 1 9.00001C1 13.4183 4.58173 17 9.00001 17Z",
+ stroke: "currentColor",
+ strokeWidth: 2,
+ }),
+ /* @__PURE__ */ React25.createElement("path", {
+ d: "M18.9992 19.0002L14.6992 14.7002",
+ stroke: "currentColor",
+ strokeWidth: 2,
+ }),
+ );
var SearchIcon_default = SearchIcon;
// src/icons/SortIcon.tsx
@@ -955,7 +839,7 @@ var SortIcon = ({
// eslint-disable-next-line @typescript-eslint/no-unused-vars
height,
...props
-}) => (
+}) =>
// height is destructed and unused, scaling is defined by width
/* @__PURE__ */ React26.createElement(
"svg",
@@ -964,55 +848,39 @@ var SortIcon = ({
viewBox: "0 0 20 20",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
- ...props
+ ...props,
},
- /* @__PURE__ */ React26.createElement(
- "path",
- {
- fillRule: "evenodd",
- clipRule: "evenodd",
- d: "M10.2928 8.35991C10.1053 8.17239 10 7.91808 10 7.65291C10 7.38775 10.1053 7.13344 10.2928 6.94591L13.2928 3.94591C13.385 3.8504 13.4954 3.77422 13.6174 3.72181C13.7394 3.6694 13.8706 3.64182 14.0034 3.64066C14.1362 3.63951 14.2678 3.66481 14.3907 3.71509C14.5136 3.76537 14.6253 3.83963 14.7192 3.93352C14.8131 4.02741 14.8873 4.13906 14.9376 4.26196C14.9879 4.38486 15.0132 4.51654 15.012 4.64931C15.0109 4.78209 14.9833 4.91331 14.9309 5.03532C14.8785 5.15732 14.8023 5.26767 14.7068 5.35991L11.7068 8.35991C11.5193 8.54738 11.265 8.6527 10.9998 8.6527C10.7346 8.6527 10.4803 8.54738 10.2928 8.35991Z",
- fill: "currentColor"
- }
- ),
- /* @__PURE__ */ React26.createElement(
- "path",
- {
- fillRule: "evenodd",
- clipRule: "evenodd",
- d: "M17.7064 8.35877C17.5189 8.54625 17.2646 8.65156 16.9994 8.65156C16.7343 8.65156 16.48 8.54625 16.2924 8.35877L13.2924 5.35877C13.1103 5.17017 13.0095 4.91757 13.0118 4.65537C13.014 4.39318 13.1192 4.14236 13.3046 3.95696C13.49 3.77155 13.7408 3.66638 14.003 3.6641C14.2652 3.66182 14.5178 3.76262 14.7064 3.94477L17.7064 6.94477C17.8939 7.1323 17.9992 7.38661 17.9992 7.65177C17.9992 7.91694 17.8939 8.17125 17.7064 8.35877Z",
- fill: "currentColor"
- }
- ),
- /* @__PURE__ */ React26.createElement(
- "path",
- {
- fillRule: "evenodd",
- clipRule: "evenodd",
- d: "M13.9994 5.65234C14.2646 5.65234 14.519 5.7577 14.7065 5.94524C14.8941 6.13277 14.9994 6.38713 14.9994 6.65234V14.6523C14.9994 14.9176 14.8941 15.1719 14.7065 15.3595C14.519 15.547 14.2646 15.6523 13.9994 15.6523C13.7342 15.6523 13.4799 15.547 13.2923 15.3595C13.1048 15.1719 12.9994 14.9176 12.9994 14.6523V6.65234C12.9994 6.38713 13.1048 6.13277 13.2923 5.94524C13.4799 5.7577 13.7342 5.65234 13.9994 5.65234ZM9.70643 12.9453C9.8939 13.1329 9.99922 13.3872 9.99922 13.6523C9.99922 13.9175 9.8939 14.1718 9.70643 14.3593L6.70643 17.3593C6.51783 17.5415 6.26523 17.6423 6.00303 17.64C5.74083 17.6377 5.49002 17.5326 5.30461 17.3472C5.1192 17.1618 5.01403 16.9109 5.01176 16.6487C5.00948 16.3865 5.11027 16.1339 5.29243 15.9453L8.29243 12.9453C8.47996 12.7579 8.73427 12.6526 8.99943 12.6526C9.2646 12.6526 9.5189 12.7579 9.70643 12.9453Z",
- fill: "currentColor"
- }
- ),
- /* @__PURE__ */ React26.createElement(
- "path",
- {
- fillRule: "evenodd",
- clipRule: "evenodd",
- d: "M2.29279 12.9451C2.48031 12.7577 2.73462 12.6523 2.99979 12.6523C3.26495 12.6523 3.51926 12.7577 3.70679 12.9451L6.70679 15.9451C6.8023 16.0374 6.87848 16.1477 6.93089 16.2697C6.9833 16.3917 7.01088 16.5229 7.01204 16.6557C7.01319 16.7885 6.98789 16.9202 6.93761 17.0431C6.88733 17.166 6.81307 17.2776 6.71918 17.3715C6.62529 17.4654 6.51364 17.5397 6.39074 17.59C6.26784 17.6402 6.13616 17.6655 6.00339 17.6644C5.87061 17.6632 5.73939 17.6356 5.61738 17.5832C5.49538 17.5308 5.38503 17.4546 5.29279 17.3591L2.29279 14.3591C2.10532 14.1716 2 13.9173 2 13.6521C2 13.387 2.10532 13.1327 2.29279 12.9451Z",
- fill: "currentColor"
- }
- ),
- /* @__PURE__ */ React26.createElement(
- "path",
- {
- fillRule: "evenodd",
- clipRule: "evenodd",
- d: "M6 15.6523C5.73478 15.6523 5.48043 15.547 5.29289 15.3595C5.10536 15.1719 5 14.9176 5 14.6523V6.65234C5 6.38713 5.10536 6.13277 5.29289 5.94524C5.48043 5.7577 5.73478 5.65234 6 5.65234C6.26522 5.65234 6.51957 5.7577 6.70711 5.94524C6.89464 6.13277 7 6.38713 7 6.65234V14.6523C7 14.9176 6.89464 15.1719 6.70711 15.3595C6.51957 15.547 6.26522 15.6523 6 15.6523Z",
- fill: "currentColor"
- }
- )
- )
-);
+ /* @__PURE__ */ React26.createElement("path", {
+ fillRule: "evenodd",
+ clipRule: "evenodd",
+ d: "M10.2928 8.35991C10.1053 8.17239 10 7.91808 10 7.65291C10 7.38775 10.1053 7.13344 10.2928 6.94591L13.2928 3.94591C13.385 3.8504 13.4954 3.77422 13.6174 3.72181C13.7394 3.6694 13.8706 3.64182 14.0034 3.64066C14.1362 3.63951 14.2678 3.66481 14.3907 3.71509C14.5136 3.76537 14.6253 3.83963 14.7192 3.93352C14.8131 4.02741 14.8873 4.13906 14.9376 4.26196C14.9879 4.38486 15.0132 4.51654 15.012 4.64931C15.0109 4.78209 14.9833 4.91331 14.9309 5.03532C14.8785 5.15732 14.8023 5.26767 14.7068 5.35991L11.7068 8.35991C11.5193 8.54738 11.265 8.6527 10.9998 8.6527C10.7346 8.6527 10.4803 8.54738 10.2928 8.35991Z",
+ fill: "currentColor",
+ }),
+ /* @__PURE__ */ React26.createElement("path", {
+ fillRule: "evenodd",
+ clipRule: "evenodd",
+ d: "M17.7064 8.35877C17.5189 8.54625 17.2646 8.65156 16.9994 8.65156C16.7343 8.65156 16.48 8.54625 16.2924 8.35877L13.2924 5.35877C13.1103 5.17017 13.0095 4.91757 13.0118 4.65537C13.014 4.39318 13.1192 4.14236 13.3046 3.95696C13.49 3.77155 13.7408 3.66638 14.003 3.6641C14.2652 3.66182 14.5178 3.76262 14.7064 3.94477L17.7064 6.94477C17.8939 7.1323 17.9992 7.38661 17.9992 7.65177C17.9992 7.91694 17.8939 8.17125 17.7064 8.35877Z",
+ fill: "currentColor",
+ }),
+ /* @__PURE__ */ React26.createElement("path", {
+ fillRule: "evenodd",
+ clipRule: "evenodd",
+ d: "M13.9994 5.65234C14.2646 5.65234 14.519 5.7577 14.7065 5.94524C14.8941 6.13277 14.9994 6.38713 14.9994 6.65234V14.6523C14.9994 14.9176 14.8941 15.1719 14.7065 15.3595C14.519 15.547 14.2646 15.6523 13.9994 15.6523C13.7342 15.6523 13.4799 15.547 13.2923 15.3595C13.1048 15.1719 12.9994 14.9176 12.9994 14.6523V6.65234C12.9994 6.38713 13.1048 6.13277 13.2923 5.94524C13.4799 5.7577 13.7342 5.65234 13.9994 5.65234ZM9.70643 12.9453C9.8939 13.1329 9.99922 13.3872 9.99922 13.6523C9.99922 13.9175 9.8939 14.1718 9.70643 14.3593L6.70643 17.3593C6.51783 17.5415 6.26523 17.6423 6.00303 17.64C5.74083 17.6377 5.49002 17.5326 5.30461 17.3472C5.1192 17.1618 5.01403 16.9109 5.01176 16.6487C5.00948 16.3865 5.11027 16.1339 5.29243 15.9453L8.29243 12.9453C8.47996 12.7579 8.73427 12.6526 8.99943 12.6526C9.2646 12.6526 9.5189 12.7579 9.70643 12.9453Z",
+ fill: "currentColor",
+ }),
+ /* @__PURE__ */ React26.createElement("path", {
+ fillRule: "evenodd",
+ clipRule: "evenodd",
+ d: "M2.29279 12.9451C2.48031 12.7577 2.73462 12.6523 2.99979 12.6523C3.26495 12.6523 3.51926 12.7577 3.70679 12.9451L6.70679 15.9451C6.8023 16.0374 6.87848 16.1477 6.93089 16.2697C6.9833 16.3917 7.01088 16.5229 7.01204 16.6557C7.01319 16.7885 6.98789 16.9202 6.93761 17.0431C6.88733 17.166 6.81307 17.2776 6.71918 17.3715C6.62529 17.4654 6.51364 17.5397 6.39074 17.59C6.26784 17.6402 6.13616 17.6655 6.00339 17.6644C5.87061 17.6632 5.73939 17.6356 5.61738 17.5832C5.49538 17.5308 5.38503 17.4546 5.29279 17.3591L2.29279 14.3591C2.10532 14.1716 2 13.9173 2 13.6521C2 13.387 2.10532 13.1327 2.29279 12.9451Z",
+ fill: "currentColor",
+ }),
+ /* @__PURE__ */ React26.createElement("path", {
+ fillRule: "evenodd",
+ clipRule: "evenodd",
+ d: "M6 15.6523C5.73478 15.6523 5.48043 15.547 5.29289 15.3595C5.10536 15.1719 5 14.9176 5 14.6523V6.65234C5 6.38713 5.10536 6.13277 5.29289 5.94524C5.48043 5.7577 5.73478 5.65234 6 5.65234C6.26522 5.65234 6.51957 5.7577 6.70711 5.94524C6.89464 6.13277 7 6.38713 7 6.65234V14.6523C7 14.9176 6.89464 15.1719 6.70711 15.3595C6.51957 15.547 6.26522 15.6523 6 15.6523Z",
+ fill: "currentColor",
+ }),
+ );
var SortIcon_default = SortIcon;
// src/icons/SourceIcon.tsx
@@ -1022,7 +890,7 @@ var SourceIcon = ({
// eslint-disable-next-line @typescript-eslint/no-unused-vars
height,
...props
-}) => (
+}) =>
// height is destructed and unused, scaling is defined by width
/* @__PURE__ */ React27.createElement(
"svg",
@@ -1031,17 +899,13 @@ var SourceIcon = ({
viewBox: "0 0 20 20",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
- ...props
+ ...props,
},
- /* @__PURE__ */ React27.createElement(
- "path",
- {
- d: "M16.6641 5.65104H9.9974L8.33073 3.98438H3.33073C2.41406 3.98438 1.6724 4.73437 1.6724 5.65104L1.66406 15.651C1.66406 16.5677 2.41406 17.3177 3.33073 17.3177H16.6641C17.5807 17.3177 18.3307 16.5677 18.3307 15.651V7.31771C18.3307 6.40104 17.5807 5.65104 16.6641 5.65104ZM11.6641 13.9844H4.9974V12.3177H11.6641V13.9844ZM14.9974 10.651H4.9974V8.98438H14.9974V10.651Z",
- fill: "currentColor"
- }
- )
- )
-);
+ /* @__PURE__ */ React27.createElement("path", {
+ d: "M16.6641 5.65104H9.9974L8.33073 3.98438H3.33073C2.41406 3.98438 1.6724 4.73437 1.6724 5.65104L1.66406 15.651C1.66406 16.5677 2.41406 17.3177 3.33073 17.3177H16.6641C17.5807 17.3177 18.3307 16.5677 18.3307 15.651V7.31771C18.3307 6.40104 17.5807 5.65104 16.6641 5.65104ZM11.6641 13.9844H4.9974V12.3177H11.6641V13.9844ZM14.9974 10.651H4.9974V8.98438H14.9974V10.651Z",
+ fill: "currentColor",
+ }),
+ );
var SourceIcon_default = SourceIcon;
// src/icons/TimeIcon.tsx
@@ -1051,7 +915,7 @@ var TimeIcon = ({
// eslint-disable-next-line @typescript-eslint/no-unused-vars
height,
...props
-}) => (
+}) =>
// height is destructed and unused, scaling is defined by width
/* @__PURE__ */ React28.createElement(
"svg",
@@ -1060,27 +924,18 @@ var TimeIcon = ({
viewBox: "0 0 14 14",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
- ...props
+ ...props,
},
- /* @__PURE__ */ React28.createElement(
- "path",
- {
- d: "M6.9987 0.333984C10.6807 0.333984 13.6654 3.31865 13.6654 7.00065C13.6654 10.6826 10.6807 13.6673 6.9987 13.6673C3.3167 13.6673 0.332031 10.6826 0.332031 7.00065C0.332031 3.31865 3.3167 0.333984 6.9987 0.333984ZM6.9987 1.66732C5.58421 1.66732 4.22766 2.22922 3.22746 3.22941C2.22727 4.22961 1.66536 5.58616 1.66536 7.00065C1.66536 8.41514 2.22727 9.77169 3.22746 10.7719C4.22766 11.7721 5.58421 12.334 6.9987 12.334C8.41319 12.334 9.76974 11.7721 10.7699 10.7719C11.7701 9.77169 12.332 8.41514 12.332 7.00065C12.332 5.58616 11.7701 4.22961 10.7699 3.22941C9.76974 2.22922 8.41319 1.66732 6.9987 1.66732ZM6.9987 3.00065C7.16199 3.00067 7.31959 3.06062 7.44161 3.16913C7.56363 3.27763 7.64159 3.42715 7.6607 3.58932L7.66536 3.66732V6.72465L9.47003 8.52932C9.58959 8.64929 9.65901 8.81027 9.66418 8.97957C9.66935 9.14887 9.60989 9.31379 9.49786 9.44083C9.38584 9.56788 9.22966 9.64752 9.06105 9.66358C8.89243 9.67964 8.72402 9.63092 8.59003 9.52732L8.52736 9.47198L6.52736 7.47198C6.42375 7.36828 6.35721 7.23332 6.33803 7.08798L6.33203 7.00065V3.66732C6.33203 3.49051 6.40227 3.32094 6.52729 3.19591C6.65232 3.07089 6.82189 3.00065 6.9987 3.00065Z",
- fill: "currentColor"
- }
- )
- )
-);
+ /* @__PURE__ */ React28.createElement("path", {
+ d: "M6.9987 0.333984C10.6807 0.333984 13.6654 3.31865 13.6654 7.00065C13.6654 10.6826 10.6807 13.6673 6.9987 13.6673C3.3167 13.6673 0.332031 10.6826 0.332031 7.00065C0.332031 3.31865 3.3167 0.333984 6.9987 0.333984ZM6.9987 1.66732C5.58421 1.66732 4.22766 2.22922 3.22746 3.22941C2.22727 4.22961 1.66536 5.58616 1.66536 7.00065C1.66536 8.41514 2.22727 9.77169 3.22746 10.7719C4.22766 11.7721 5.58421 12.334 6.9987 12.334C8.41319 12.334 9.76974 11.7721 10.7699 10.7719C11.7701 9.77169 12.332 8.41514 12.332 7.00065C12.332 5.58616 11.7701 4.22961 10.7699 3.22941C9.76974 2.22922 8.41319 1.66732 6.9987 1.66732ZM6.9987 3.00065C7.16199 3.00067 7.31959 3.06062 7.44161 3.16913C7.56363 3.27763 7.64159 3.42715 7.6607 3.58932L7.66536 3.66732V6.72465L9.47003 8.52932C9.58959 8.64929 9.65901 8.81027 9.66418 8.97957C9.66935 9.14887 9.60989 9.31379 9.49786 9.44083C9.38584 9.56788 9.22966 9.64752 9.06105 9.66358C8.89243 9.67964 8.72402 9.63092 8.59003 9.52732L8.52736 9.47198L6.52736 7.47198C6.42375 7.36828 6.35721 7.23332 6.33803 7.08798L6.33203 7.00065V3.66732C6.33203 3.49051 6.40227 3.32094 6.52729 3.19591C6.65232 3.07089 6.82189 3.00065 6.9987 3.00065Z",
+ fill: "currentColor",
+ }),
+ );
var TimeIcon_default = TimeIcon;
// src/icons/TwitterXIcon.tsx
var React29 = __toESM(require("react"));
-var TwitterXIcon = ({
- width = 37,
- height,
- pathProps,
- ...props
-}) => (
+var TwitterXIcon = ({ width = 37, height, pathProps, ...props }) =>
// height is destructed and unused, scaling is defined by width
// pathProps is destructured and unused
/* @__PURE__ */ React29.createElement(
@@ -1090,48 +945,45 @@ var TwitterXIcon = ({
viewBox: "0 0 37 37",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
- ...props
+ ...props,
},
- /* @__PURE__ */ React29.createElement(
- "path",
- {
- d: "M28.5659 3.46875H33.6657L22.5241 16.2029L35.6313 33.5312H25.3685L17.3302 23.0217L8.13271 33.5312H3.0298L14.9469 19.9106L2.37305 3.46875H12.8965L20.1623 13.0749L28.5659 3.46875ZM26.776 30.4788H29.6019L11.361 6.36092H8.3285L26.776 30.4788Z",
- fill: "currentColor"
- }
- )
- )
-);
+ /* @__PURE__ */ React29.createElement("path", {
+ d: "M28.5659 3.46875H33.6657L22.5241 16.2029L35.6313 33.5312H25.3685L17.3302 23.0217L8.13271 33.5312H3.0298L14.9469 19.9106L2.37305 3.46875H12.8965L20.1623 13.0749L28.5659 3.46875ZM26.776 30.4788H29.6019L11.361 6.36092H8.3285L26.776 30.4788Z",
+ fill: "currentColor",
+ }),
+ );
var TwitterXIcon_default = TwitterXIcon;
// Annotate the CommonJS export names for ESM import in node:
-0 && (module.exports = {
- AppsIcon,
- ArrowLeft,
- ArrowLinkRight,
- ArrowLinkUpRight,
- ArrowRight,
- ArrowUp,
- AuthorIcon,
- BitcoinIcon,
- BookmarkIcon,
- CalendarIcon,
- CloseIconOutlined,
- DateIcon,
- DayIcon,
- DiceIcon,
- DiscordIcon,
- FilterCloseIcon,
- FilterIcon,
- GithubIcon,
- LightningIconSolid,
- LinkedinIcon,
- MicIcon,
- NightIcon,
- NostrIcon,
- PlusIcon,
- SearchIcon,
- SortIcon,
- SourceIcon,
- TimeIcon,
- TwitterXIcon
-});
-//# sourceMappingURL=icons.js.map
\ No newline at end of file
+0 &&
+ (module.exports = {
+ AppsIcon,
+ ArrowLeft,
+ ArrowLinkRight,
+ ArrowLinkUpRight,
+ ArrowRight,
+ ArrowUp,
+ AuthorIcon,
+ BitcoinIcon,
+ BookmarkIcon,
+ CalendarIcon,
+ CloseIconOutlined,
+ DateIcon,
+ DayIcon,
+ DiceIcon,
+ DiscordIcon,
+ FilterCloseIcon,
+ FilterIcon,
+ GithubIcon,
+ LightningIconSolid,
+ LinkedinIcon,
+ MicIcon,
+ NightIcon,
+ NostrIcon,
+ PlusIcon,
+ SearchIcon,
+ SortIcon,
+ SourceIcon,
+ TimeIcon,
+ TwitterXIcon,
+ });
+//# sourceMappingURL=icons.js.map
diff --git a/dist/icons.mjs b/dist/icons.mjs
index 6285b57..f7350b2 100644
--- a/dist/icons.mjs
+++ b/dist/icons.mjs
@@ -5,16 +5,16 @@ var AppsIcon = ({
// eslint-disable-next-line @typescript-eslint/no-unused-vars
height,
...props
-}) => (
+}) =>
// height is destructed and unused, scaling is defined by width
- /* @__PURE__ */ React.createElement("svg", { width, viewBox: "0 0 22 22", fill: "none", ...props }, /* @__PURE__ */ React.createElement(
- "path",
- {
+ /* @__PURE__ */ React.createElement(
+ "svg",
+ { width, viewBox: "0 0 22 22", fill: "none", ...props },
+ /* @__PURE__ */ React.createElement("path", {
d: "M5.50228 18.3326C4.99811 18.3326 4.56667 18.1533 4.20795 17.7945C3.84922 17.4358 3.66956 17.0041 3.66895 16.4993C3.66895 15.9951 3.84861 15.5637 4.20795 15.205C4.56728 14.8462 4.99872 14.6666 5.50228 14.666C6.00645 14.666 6.4382 14.8456 6.79753 15.205C7.15686 15.5643 7.33622 15.9957 7.33561 16.4993C7.33561 17.0035 7.15625 17.4352 6.79753 17.7945C6.43881 18.1539 6.00706 18.3332 5.50228 18.3326ZM11.0023 18.3326C10.4981 18.3326 10.0667 18.1533 9.70795 17.7945C9.34923 17.4358 9.16956 17.0041 9.16895 16.4993C9.16895 15.9951 9.34861 15.5637 9.70795 15.205C10.0673 14.8462 10.4987 14.6666 11.0023 14.666C11.5064 14.666 11.9382 14.8456 12.2975 15.205C12.6569 15.5643 12.8362 15.9957 12.8356 16.4993C12.8356 17.0035 12.6563 17.4352 12.2975 17.7945C11.9388 18.1539 11.5071 18.3332 11.0023 18.3326ZM16.5023 18.3326C15.9981 18.3326 15.5667 18.1533 15.2079 17.7945C14.8492 17.4358 14.6696 17.0041 14.6689 16.4993C14.6689 15.9951 14.8486 15.5637 15.2079 15.205C15.5673 14.8462 15.9987 14.6666 16.5023 14.666C17.0064 14.666 17.4382 14.8456 17.7975 15.205C18.1569 15.5643 18.3362 15.9957 18.3356 16.4993C18.3356 17.0035 18.1563 17.4352 17.7975 17.7945C17.4388 18.1539 17.0071 18.3332 16.5023 18.3326ZM5.50228 12.8326C4.99811 12.8326 4.56667 12.6533 4.20795 12.2945C3.84922 11.9358 3.66956 11.5041 3.66895 10.9993C3.66895 10.4951 3.84861 10.0637 4.20795 9.70496C4.56728 9.34623 4.99872 9.16657 5.50228 9.16596C6.00645 9.16596 6.4382 9.34562 6.79753 9.70496C7.15686 10.0643 7.33622 10.4957 7.33561 10.9993C7.33561 11.5035 7.15625 11.9352 6.79753 12.2945C6.43881 12.6539 6.00706 12.8332 5.50228 12.8326ZM11.0023 12.8326C10.4981 12.8326 10.0667 12.6533 9.70795 12.2945C9.34923 11.9358 9.16956 11.5041 9.16895 10.9993C9.16895 10.4951 9.34861 10.0637 9.70795 9.70496C10.0673 9.34623 10.4987 9.16657 11.0023 9.16596C11.5064 9.16596 11.9382 9.34562 12.2975 9.70496C12.6569 10.0643 12.8362 10.4957 12.8356 10.9993C12.8356 11.5035 12.6563 11.9352 12.2975 12.2945C11.9388 12.6539 11.5071 12.8332 11.0023 12.8326ZM16.5023 12.8326C15.9981 12.8326 15.5667 12.6533 15.2079 12.2945C14.8492 11.9358 14.6696 11.5041 14.6689 10.9993C14.6689 10.4951 14.8486 10.0637 15.2079 9.70496C15.5673 9.34623 15.9987 9.16657 16.5023 9.16596C17.0064 9.16596 17.4382 9.34562 17.7975 9.70496C18.1569 10.0643 18.3362 10.4957 18.3356 10.9993C18.3356 11.5035 18.1563 11.9352 17.7975 12.2945C17.4388 12.6539 17.0071 12.8332 16.5023 12.8326ZM5.50228 7.33262C4.99811 7.33262 4.56667 7.15326 4.20795 6.79454C3.84922 6.43582 3.66956 6.00407 3.66895 5.49929C3.66895 4.99512 3.84861 4.56368 4.20795 4.20495C4.56728 3.84623 4.99872 3.66657 5.50228 3.66595C6.00645 3.66595 6.4382 3.84562 6.79753 4.20495C7.15686 4.56429 7.33622 4.99573 7.33561 5.49929C7.33561 6.00346 7.15625 6.43521 6.79753 6.79454C6.43881 7.15387 6.00706 7.33323 5.50228 7.33262ZM11.0023 7.33262C10.4981 7.33262 10.0667 7.15326 9.70795 6.79454C9.34923 6.43582 9.16956 6.00407 9.16895 5.49929C9.16895 4.99512 9.34861 4.56368 9.70795 4.20495C10.0673 3.84623 10.4987 3.66657 11.0023 3.66595C11.5064 3.66595 11.9382 3.84562 12.2975 4.20495C12.6569 4.56429 12.8362 4.99573 12.8356 5.49929C12.8356 6.00346 12.6563 6.43521 12.2975 6.79454C11.9388 7.15387 11.5071 7.33323 11.0023 7.33262ZM16.5023 7.33262C15.9981 7.33262 15.5667 7.15326 15.2079 6.79454C14.8492 6.43582 14.6696 6.00407 14.6689 5.49929C14.6689 4.99512 14.8486 4.56368 15.2079 4.20495C15.5673 3.84623 15.9987 3.66657 16.5023 3.66595C17.0064 3.66595 17.4382 3.84562 17.7975 4.20495C18.1569 4.56429 18.3362 4.99573 18.3356 5.49929C18.3356 6.00346 18.1563 6.43521 17.7975 6.79454C17.4388 7.15387 17.0071 7.33323 16.5023 7.33262Z",
- fill: "currentColor"
- }
- ))
-);
+ fill: "currentColor",
+ }),
+ );
var AppsIcon_default = AppsIcon;
// src/icons/ArrowLeft.tsx
@@ -33,18 +33,15 @@ var ArrowLeft = ({
viewBox: "0 0 7 12",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
- ...props
+ ...props,
},
- /* @__PURE__ */ React2.createElement(
- "path",
- {
- fillRule: "evenodd",
- clipRule: "evenodd",
- d: "M0.354784 5.17724C0.127604 5.39365 0 5.687 0 5.99287C0 6.29873 0.127604 6.59208 0.354784 6.8085L4.92909 11.1621C5.15667 11.3785 5.46529 11.5001 5.78705 11.5C6.10882 11.4999 6.41738 11.3782 6.64485 11.1617C6.87233 10.9452 7.00008 10.6516 7 10.3454C6.99992 10.0393 6.87203 9.74573 6.64445 9.52931L2.92743 5.99287L6.64445 2.45642C6.86554 2.23884 6.98796 1.94734 6.98535 1.64471C6.98274 1.34208 6.8553 1.05254 6.63048 0.83844C6.40566 0.624342 6.10145 0.50282 5.78337 0.500049C5.4653 0.497277 5.1588 0.613478 4.9299 0.823624L0.353974 5.17647L0.354784 5.17724Z",
- fill: "currentColor",
- ...pathProps
- }
- )
+ /* @__PURE__ */ React2.createElement("path", {
+ fillRule: "evenodd",
+ clipRule: "evenodd",
+ d: "M0.354784 5.17724C0.127604 5.39365 0 5.687 0 5.99287C0 6.29873 0.127604 6.59208 0.354784 6.8085L4.92909 11.1621C5.15667 11.3785 5.46529 11.5001 5.78705 11.5C6.10882 11.4999 6.41738 11.3782 6.64485 11.1617C6.87233 10.9452 7.00008 10.6516 7 10.3454C6.99992 10.0393 6.87203 9.74573 6.64445 9.52931L2.92743 5.99287L6.64445 2.45642C6.86554 2.23884 6.98796 1.94734 6.98535 1.64471C6.98274 1.34208 6.8553 1.05254 6.63048 0.83844C6.40566 0.624342 6.10145 0.50282 5.78337 0.500049C5.4653 0.497277 5.1588 0.613478 4.9299 0.823624L0.353974 5.17647L0.354784 5.17724Z",
+ fill: "currentColor",
+ ...pathProps,
+ }),
);
};
var ArrowLeft_default = ArrowLeft;
@@ -57,7 +54,7 @@ var ArrowLinkRight = ({
height,
pathProps,
...props
-}) => (
+}) =>
// height is destructed and unused, scaling is defined by width
/* @__PURE__ */ React3.createElement(
"svg",
@@ -66,32 +63,25 @@ var ArrowLinkRight = ({
viewBox: "0 0 24 24",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
- ...props
+ ...props,
},
- /* @__PURE__ */ React3.createElement(
- "path",
- {
- d: "M20 12.5H4",
- stroke: "currentColor",
- strokeWidth: "1.5",
- strokeLinecap: "round",
- strokeLinejoin: "round",
- ...pathProps
- }
- ),
- /* @__PURE__ */ React3.createElement(
- "path",
- {
- d: "M15 17.5C15 17.5 20 13.8176 20 12.5C20 11.1824 15 7.5 15 7.5",
- stroke: "currentColor",
- strokeWidth: "1.5",
- strokeLinecap: "round",
- strokeLinejoin: "round",
- ...pathProps
- }
- )
- )
-);
+ /* @__PURE__ */ React3.createElement("path", {
+ d: "M20 12.5H4",
+ stroke: "currentColor",
+ strokeWidth: "1.5",
+ strokeLinecap: "round",
+ strokeLinejoin: "round",
+ ...pathProps,
+ }),
+ /* @__PURE__ */ React3.createElement("path", {
+ d: "M15 17.5C15 17.5 20 13.8176 20 12.5C20 11.1824 15 7.5 15 7.5",
+ stroke: "currentColor",
+ strokeWidth: "1.5",
+ strokeLinecap: "round",
+ strokeLinejoin: "round",
+ ...pathProps,
+ }),
+ );
var ArrowLinkRight_default = ArrowLinkRight;
// src/icons/ArrowLinkUpRight.tsx
@@ -102,7 +92,7 @@ var ArrowLinkUpRight = ({
height,
pathProps,
...props
-}) => (
+}) =>
// height is destructed and unused, scaling is defined by width
/* @__PURE__ */ React4.createElement(
"svg",
@@ -111,31 +101,24 @@ var ArrowLinkUpRight = ({
viewBox: "0 0 24 24",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
- ...props
+ ...props,
},
- /* @__PURE__ */ React4.createElement(
- "path",
- {
- d: "M17 7.5L6 18.5",
- stroke: "currentColor",
- strokeWidth: "1.5",
- strokeLinecap: "round",
- ...pathProps
- }
- ),
- /* @__PURE__ */ React4.createElement(
- "path",
- {
- d: "M11 6.6315C11 6.6315 16.6335 6.15661 17.4885 7.01152C18.3434 7.86644 17.8684 13.5 17.8684 13.5",
- stroke: "currentColor",
- strokeWidth: "1.5",
- strokeLinecap: "round",
- strokeLinejoin: "round",
- ...pathProps
- }
- )
- )
-);
+ /* @__PURE__ */ React4.createElement("path", {
+ d: "M17 7.5L6 18.5",
+ stroke: "currentColor",
+ strokeWidth: "1.5",
+ strokeLinecap: "round",
+ ...pathProps,
+ }),
+ /* @__PURE__ */ React4.createElement("path", {
+ d: "M11 6.6315C11 6.6315 16.6335 6.15661 17.4885 7.01152C18.3434 7.86644 17.8684 13.5 17.8684 13.5",
+ stroke: "currentColor",
+ strokeWidth: "1.5",
+ strokeLinecap: "round",
+ strokeLinejoin: "round",
+ ...pathProps,
+ }),
+ );
var ArrowLinkUpRight_default = ArrowLinkUpRight;
// src/icons/ArrowRight.tsx
@@ -154,18 +137,15 @@ var ArrowRight = ({
viewBox: "0 0 7 12",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
- ...props
+ ...props,
},
- /* @__PURE__ */ React5.createElement(
- "path",
- {
- fillRule: "evenodd",
- clipRule: "evenodd",
- d: "M6.64522 5.17724C6.8724 5.39365 7 5.687 7 5.99287C7 6.29873 6.8724 6.59208 6.64522 6.8085L2.07091 11.1621C1.84333 11.3785 1.53471 11.5001 1.21295 11.5C0.891176 11.4999 0.582617 11.3782 0.355145 11.1617C0.127674 10.9452 -7.58015e-05 10.6516 3.37439e-08 10.3454C7.5869e-05 10.0393 0.127971 9.74573 0.35555 9.52931L4.07257 5.99287L0.35555 2.45642C0.134458 2.23884 0.0120353 1.94734 0.0146483 1.64471C0.0172613 1.34208 0.144701 1.05254 0.36952 0.83844C0.594339 0.624342 0.898547 0.50282 1.21663 0.500049C1.5347 0.497277 1.8412 0.613478 2.0701 0.823624L6.64603 5.17647L6.64522 5.17724Z",
- fill: "currentColor",
- ...pathProps
- }
- )
+ /* @__PURE__ */ React5.createElement("path", {
+ fillRule: "evenodd",
+ clipRule: "evenodd",
+ d: "M6.64522 5.17724C6.8724 5.39365 7 5.687 7 5.99287C7 6.29873 6.8724 6.59208 6.64522 6.8085L2.07091 11.1621C1.84333 11.3785 1.53471 11.5001 1.21295 11.5C0.891176 11.4999 0.582617 11.3782 0.355145 11.1617C0.127674 10.9452 -7.58015e-05 10.6516 3.37439e-08 10.3454C7.5869e-05 10.0393 0.127971 9.74573 0.35555 9.52931L4.07257 5.99287L0.35555 2.45642C0.134458 2.23884 0.0120353 1.94734 0.0146483 1.64471C0.0172613 1.34208 0.144701 1.05254 0.36952 0.83844C0.594339 0.624342 0.898547 0.50282 1.21663 0.500049C1.5347 0.497277 1.8412 0.613478 2.0701 0.823624L6.64603 5.17647L6.64522 5.17724Z",
+ fill: "currentColor",
+ ...pathProps,
+ }),
);
};
var ArrowRight_default = ArrowRight;
@@ -186,18 +166,15 @@ var ArrowUp = ({
viewBox: "0 0 12 8",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
- ...props
+ ...props,
},
- /* @__PURE__ */ React6.createElement(
- "path",
- {
- fillRule: "evenodd",
- clipRule: "evenodd",
- d: "M7.2385 0.854784C7.01816 0.627604 6.71947 0.5 6.40804 0.5C6.09662 0.5 5.79793 0.627604 5.57759 0.854784L1.14482 5.42909C0.924461 5.65667 0.800708 5.96529 0.800781 6.28705C0.800855 6.60882 0.924748 6.91738 1.14521 7.14485C1.36567 7.37233 1.66463 7.50008 1.97634 7.5C2.28804 7.49992 2.58695 7.37203 2.8073 7.14445L6.40804 3.42743L10.0088 7.14445C10.2303 7.36554 10.5271 7.48796 10.8353 7.48535C11.1434 7.48274 11.4382 7.3553 11.6562 7.13048C11.8742 6.90566 11.9979 6.60145 12.0007 6.28337C12.0036 5.9653 11.8852 5.6588 11.6713 5.4299L7.23929 0.853974L7.2385 0.854784Z",
- fill: "currentColor",
- ...pathProps
- }
- )
+ /* @__PURE__ */ React6.createElement("path", {
+ fillRule: "evenodd",
+ clipRule: "evenodd",
+ d: "M7.2385 0.854784C7.01816 0.627604 6.71947 0.5 6.40804 0.5C6.09662 0.5 5.79793 0.627604 5.57759 0.854784L1.14482 5.42909C0.924461 5.65667 0.800708 5.96529 0.800781 6.28705C0.800855 6.60882 0.924748 6.91738 1.14521 7.14485C1.36567 7.37233 1.66463 7.50008 1.97634 7.5C2.28804 7.49992 2.58695 7.37203 2.8073 7.14445L6.40804 3.42743L10.0088 7.14445C10.2303 7.36554 10.5271 7.48796 10.8353 7.48535C11.1434 7.48274 11.4382 7.3553 11.6562 7.13048C11.8742 6.90566 11.9979 6.60145 12.0007 6.28337C12.0036 5.9653 11.8852 5.6588 11.6713 5.4299L7.23929 0.853974L7.2385 0.854784Z",
+ fill: "currentColor",
+ ...pathProps,
+ }),
);
};
var ArrowUp_default = ArrowUp;
@@ -209,7 +186,7 @@ var AuthorIcon = ({
// eslint-disable-next-line @typescript-eslint/no-unused-vars
height,
...props
-}) => (
+}) =>
// height is destructed and unused, scaling is defined by width
/* @__PURE__ */ React7.createElement(
"svg",
@@ -218,17 +195,13 @@ var AuthorIcon = ({
viewBox: "0 0 20 20",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
- ...props
+ ...props,
},
- /* @__PURE__ */ React7.createElement(
- "path",
- {
- d: "M10.0052 9.77354C11.8049 9.77354 13.3535 8.1664 13.3535 6.07354C13.3535 4.00639 11.7963 2.47461 10.0052 2.47461C8.21382 2.47461 6.65703 4.03997 6.65703 6.09068C6.65703 8.1664 8.21417 9.77354 10.0052 9.77354ZM4.74846 17.5246H15.262C16.5763 17.5246 17.0449 17.1482 17.0449 16.4114C17.0449 14.2518 14.3413 11.2721 10.0052 11.2721C5.66096 11.2721 2.95703 14.2518 2.95703 16.4114C2.95703 17.1482 3.42596 17.5246 4.74846 17.5246Z",
- fill: "currentColor"
- }
- )
- )
-);
+ /* @__PURE__ */ React7.createElement("path", {
+ d: "M10.0052 9.77354C11.8049 9.77354 13.3535 8.1664 13.3535 6.07354C13.3535 4.00639 11.7963 2.47461 10.0052 2.47461C8.21382 2.47461 6.65703 4.03997 6.65703 6.09068C6.65703 8.1664 8.21417 9.77354 10.0052 9.77354ZM4.74846 17.5246H15.262C16.5763 17.5246 17.0449 17.1482 17.0449 16.4114C17.0449 14.2518 14.3413 11.2721 10.0052 11.2721C5.66096 11.2721 2.95703 14.2518 2.95703 16.4114C2.95703 17.1482 3.42596 17.5246 4.74846 17.5246Z",
+ fill: "currentColor",
+ }),
+ );
var AuthorIcon_default = AuthorIcon;
// src/icons/BitcoinIcon.tsx
@@ -238,7 +211,7 @@ var BitcoinIcon = ({
// eslint-disable-next-line @typescript-eslint/no-unused-vars
height,
...props
-}) => (
+}) =>
// height is destructed and unused, scaling is defined by width
/* @__PURE__ */ React8.createElement(
"svg",
@@ -247,26 +220,19 @@ var BitcoinIcon = ({
viewBox: "0 0 18 18",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
- ...props
+ ...props,
},
- /* @__PURE__ */ React8.createElement(
- "path",
- {
- d: "M8.28312 7.967L8.23312 7.952L8.76112 5.83496L8.97312 5.88496C9.67912 6.04196 11.1981 6.38296 10.9231 7.498C10.6281 8.671 8.87412 8.144 8.28312 7.967ZM7.37012 11.405L7.45612 11.43C8.18412 11.647 10.2521 12.262 10.5321 11.097C10.8211 9.976 8.96212 9.539 8.13012 9.344C8.03912 9.322 7.96012 9.304 7.89812 9.288L7.37012 11.405Z",
- fill: "currentColor"
- }
- ),
- /* @__PURE__ */ React8.createElement(
- "path",
- {
- fillRule: "evenodd",
- clipRule: "evenodd",
- d: "M9 18C10.1819 18 11.3522 17.7672 12.4442 17.3149C13.5361 16.8626 14.5282 16.1997 15.364 15.364C16.1997 14.5282 16.8626 13.5361 17.3149 12.4442C17.7672 11.3522 18 10.1819 18 9C18 7.8181 17.7672 6.64778 17.3149 5.55585C16.8626 4.46392 16.1997 3.47177 15.364 2.63604C14.5282 1.80031 13.5361 1.13738 12.4442 0.68508C11.3522 0.23279 10.1819 0 9 0C6.61305 0 4.32387 0.94821 2.63604 2.63604C0.94821 4.32387 0 6.61305 0 9C0 11.3869 0.94821 13.6761 2.63604 15.364C4.32387 17.0518 6.61305 18 9 18ZM12.873 7.616C13.079 6.314 12.18 5.636 10.933 5.178L11.371 3.408L10.381 3.162L9.954 4.888L9.761 4.838C9.565 4.788 9.372 4.738 9.174 4.694L9.602 2.969L8.585 2.717L8.157 4.442L6.139 3.942L5.847 5.122C5.847 5.122 6.596 5.285 6.568 5.301C6.968 5.409 7.037 5.693 7.015 5.91L6.506 7.917L5.808 10.74C5.753 10.874 5.618 11.066 5.344 11C5.356 11.012 4.616 10.809 4.616 10.809L4.13 12.054L6.088 12.588L5.652 14.349L6.635 14.593L7.072 12.831C7.23 12.877 7.39 12.914 7.545 12.95C7.661 12.977 7.774 13.003 7.881 13.032L7.444 14.793L8.429 15.037L8.866 13.276C10.561 13.599 11.841 13.448 12.413 11.779C12.873 10.449 12.443 9.689 11.55 9.19C12.22 9.027 12.717 8.563 12.873 7.616Z",
- fill: "currentColor"
- }
- )
- )
-);
+ /* @__PURE__ */ React8.createElement("path", {
+ d: "M8.28312 7.967L8.23312 7.952L8.76112 5.83496L8.97312 5.88496C9.67912 6.04196 11.1981 6.38296 10.9231 7.498C10.6281 8.671 8.87412 8.144 8.28312 7.967ZM7.37012 11.405L7.45612 11.43C8.18412 11.647 10.2521 12.262 10.5321 11.097C10.8211 9.976 8.96212 9.539 8.13012 9.344C8.03912 9.322 7.96012 9.304 7.89812 9.288L7.37012 11.405Z",
+ fill: "currentColor",
+ }),
+ /* @__PURE__ */ React8.createElement("path", {
+ fillRule: "evenodd",
+ clipRule: "evenodd",
+ d: "M9 18C10.1819 18 11.3522 17.7672 12.4442 17.3149C13.5361 16.8626 14.5282 16.1997 15.364 15.364C16.1997 14.5282 16.8626 13.5361 17.3149 12.4442C17.7672 11.3522 18 10.1819 18 9C18 7.8181 17.7672 6.64778 17.3149 5.55585C16.8626 4.46392 16.1997 3.47177 15.364 2.63604C14.5282 1.80031 13.5361 1.13738 12.4442 0.68508C11.3522 0.23279 10.1819 0 9 0C6.61305 0 4.32387 0.94821 2.63604 2.63604C0.94821 4.32387 0 6.61305 0 9C0 11.3869 0.94821 13.6761 2.63604 15.364C4.32387 17.0518 6.61305 18 9 18ZM12.873 7.616C13.079 6.314 12.18 5.636 10.933 5.178L11.371 3.408L10.381 3.162L9.954 4.888L9.761 4.838C9.565 4.788 9.372 4.738 9.174 4.694L9.602 2.969L8.585 2.717L8.157 4.442L6.139 3.942L5.847 5.122C5.847 5.122 6.596 5.285 6.568 5.301C6.968 5.409 7.037 5.693 7.015 5.91L6.506 7.917L5.808 10.74C5.753 10.874 5.618 11.066 5.344 11C5.356 11.012 4.616 10.809 4.616 10.809L4.13 12.054L6.088 12.588L5.652 14.349L6.635 14.593L7.072 12.831C7.23 12.877 7.39 12.914 7.545 12.95C7.661 12.977 7.774 13.003 7.881 13.032L7.444 14.793L8.429 15.037L8.866 13.276C10.561 13.599 11.841 13.448 12.413 11.779C12.873 10.449 12.443 9.689 11.55 9.19C12.22 9.027 12.717 8.563 12.873 7.616Z",
+ fill: "currentColor",
+ }),
+ );
var BitcoinIcon_default = BitcoinIcon;
// src/icons/BookmarkIcon.tsx
@@ -276,7 +242,7 @@ var BookmarkIcon = ({
// eslint-disable-next-line @typescript-eslint/no-unused-vars
height,
...props
-}) => (
+}) =>
// height is destructed and unused, scaling is defined by width
/* @__PURE__ */ React9.createElement(
"svg",
@@ -285,30 +251,23 @@ var BookmarkIcon = ({
viewBox: "0 0 27 27",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
- ...props
+ ...props,
},
- /* @__PURE__ */ React9.createElement(
- "path",
- {
- d: "M3.75195 20.5604V14.7496C3.75195 10.7459 3.75195 8.74403 4.96226 7.50023C6.17257 6.25644 8.12053 6.25644 12.0164 6.25644C15.9123 6.25644 17.8603 6.25644 19.0707 7.50023C20.2809 8.74403 20.2809 10.7459 20.2809 14.7496V20.5604C20.2809 23.1013 20.2809 24.3717 19.4826 24.8265C17.9365 25.7071 15.0363 22.7691 13.659 21.8845C12.8602 21.3714 12.4608 21.1149 12.0164 21.1149C11.572 21.1149 11.1726 21.3714 10.3739 21.8845C8.9966 22.7691 6.09646 25.7071 4.55035 24.8265C3.75195 24.3717 3.75195 23.1013 3.75195 20.5604Z",
- stroke: "currentColor",
- strokeWidth: "1.6529",
- strokeLinecap: "round",
- strokeLinejoin: "round"
- }
- ),
- /* @__PURE__ */ React9.createElement(
- "path",
- {
- d: "M10.3638 2.95062H12.5676C17.7621 2.95062 20.3595 2.95062 21.9732 4.56437C23.5869 6.1781 23.5869 8.77538 23.5869 13.9699V20.5815",
- stroke: "currentColor",
- strokeWidth: "1.6529",
- strokeLinecap: "round",
- strokeLinejoin: "round"
- }
- )
- )
-);
+ /* @__PURE__ */ React9.createElement("path", {
+ d: "M3.75195 20.5604V14.7496C3.75195 10.7459 3.75195 8.74403 4.96226 7.50023C6.17257 6.25644 8.12053 6.25644 12.0164 6.25644C15.9123 6.25644 17.8603 6.25644 19.0707 7.50023C20.2809 8.74403 20.2809 10.7459 20.2809 14.7496V20.5604C20.2809 23.1013 20.2809 24.3717 19.4826 24.8265C17.9365 25.7071 15.0363 22.7691 13.659 21.8845C12.8602 21.3714 12.4608 21.1149 12.0164 21.1149C11.572 21.1149 11.1726 21.3714 10.3739 21.8845C8.9966 22.7691 6.09646 25.7071 4.55035 24.8265C3.75195 24.3717 3.75195 23.1013 3.75195 20.5604Z",
+ stroke: "currentColor",
+ strokeWidth: "1.6529",
+ strokeLinecap: "round",
+ strokeLinejoin: "round",
+ }),
+ /* @__PURE__ */ React9.createElement("path", {
+ d: "M10.3638 2.95062H12.5676C17.7621 2.95062 20.3595 2.95062 21.9732 4.56437C23.5869 6.1781 23.5869 8.77538 23.5869 13.9699V20.5815",
+ stroke: "currentColor",
+ strokeWidth: "1.6529",
+ strokeLinecap: "round",
+ strokeLinejoin: "round",
+ }),
+ );
var BookmarkIcon_default = BookmarkIcon;
// src/icons/CalendarIcon.tsx
@@ -320,7 +279,7 @@ var CalendarIcon = ({
// eslint-disable-next-line @typescript-eslint/no-unused-vars
pathProps,
...props
-}) => (
+}) =>
// height is destructed and unused, scaling is defined by width
// pathProps is destructured and unused
/* @__PURE__ */ React10.createElement(
@@ -330,60 +289,44 @@ var CalendarIcon = ({
viewBox: "0 0 23 23",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
- ...props
+ ...props,
},
- /* @__PURE__ */ React10.createElement(
- "path",
- {
- d: "M17.2283 2.2829V4.11945M6.20898 2.2829V4.11945",
- stroke: "currentColor",
- strokeWidth: "1.6529",
- strokeLinecap: "round",
- strokeLinejoin: "round"
- }
- ),
- /* @__PURE__ */ React10.createElement(
- "path",
- {
- d: "M11.7144 12.3839H11.7226M11.7144 16.057H11.7226M15.3834 12.3839H15.3916M8.04541 12.3839H8.05365M8.04541 16.057H8.05365",
- stroke: "currentColor",
- strokeWidth: "2.20386",
- strokeLinecap: "round",
- strokeLinejoin: "round"
- }
- ),
- /* @__PURE__ */ React10.createElement(
- "path",
- {
- d: "M3.91309 7.7926H19.5238",
- stroke: "currentColor",
- strokeWidth: "1.6529",
- strokeLinecap: "round",
- strokeLinejoin: "round"
- }
- ),
- /* @__PURE__ */ React10.createElement(
- "path",
- {
- d: "M2.99463 11.689C2.99463 7.68781 2.99463 5.6872 4.14442 4.44419C5.29421 3.20117 7.14477 3.20117 10.8459 3.20117H12.5906C16.2917 3.20117 18.1423 3.20117 19.2921 4.44419C20.4419 5.6872 20.4419 7.68781 20.4419 11.689V12.1606C20.4419 16.1618 20.4419 18.1624 19.2921 19.4054C18.1423 20.6484 16.2917 20.6484 12.5906 20.6484H10.8459C7.14477 20.6484 5.29421 20.6484 4.14442 19.4054C2.99463 18.1624 2.99463 16.1618 2.99463 12.1606V11.689Z",
- stroke: "currentColor",
- strokeWidth: "1.6529",
- strokeLinecap: "round",
- strokeLinejoin: "round"
- }
- ),
- /* @__PURE__ */ React10.createElement(
- "path",
- {
- d: "M3.4541 7.7926H19.9831",
- stroke: "currentColor",
- strokeWidth: "1.6529",
- strokeLinecap: "round",
- strokeLinejoin: "round"
- }
- )
- )
-);
+ /* @__PURE__ */ React10.createElement("path", {
+ d: "M17.2283 2.2829V4.11945M6.20898 2.2829V4.11945",
+ stroke: "currentColor",
+ strokeWidth: "1.6529",
+ strokeLinecap: "round",
+ strokeLinejoin: "round",
+ }),
+ /* @__PURE__ */ React10.createElement("path", {
+ d: "M11.7144 12.3839H11.7226M11.7144 16.057H11.7226M15.3834 12.3839H15.3916M8.04541 12.3839H8.05365M8.04541 16.057H8.05365",
+ stroke: "currentColor",
+ strokeWidth: "2.20386",
+ strokeLinecap: "round",
+ strokeLinejoin: "round",
+ }),
+ /* @__PURE__ */ React10.createElement("path", {
+ d: "M3.91309 7.7926H19.5238",
+ stroke: "currentColor",
+ strokeWidth: "1.6529",
+ strokeLinecap: "round",
+ strokeLinejoin: "round",
+ }),
+ /* @__PURE__ */ React10.createElement("path", {
+ d: "M2.99463 11.689C2.99463 7.68781 2.99463 5.6872 4.14442 4.44419C5.29421 3.20117 7.14477 3.20117 10.8459 3.20117H12.5906C16.2917 3.20117 18.1423 3.20117 19.2921 4.44419C20.4419 5.6872 20.4419 7.68781 20.4419 11.689V12.1606C20.4419 16.1618 20.4419 18.1624 19.2921 19.4054C18.1423 20.6484 16.2917 20.6484 12.5906 20.6484H10.8459C7.14477 20.6484 5.29421 20.6484 4.14442 19.4054C2.99463 18.1624 2.99463 16.1618 2.99463 12.1606V11.689Z",
+ stroke: "currentColor",
+ strokeWidth: "1.6529",
+ strokeLinecap: "round",
+ strokeLinejoin: "round",
+ }),
+ /* @__PURE__ */ React10.createElement("path", {
+ d: "M3.4541 7.7926H19.9831",
+ stroke: "currentColor",
+ strokeWidth: "1.6529",
+ strokeLinecap: "round",
+ strokeLinejoin: "round",
+ }),
+ );
var CalendarIcon_default = CalendarIcon;
// src/icons/CloseIconOutlined.tsx
@@ -393,7 +336,7 @@ var CloseIconOutlined = ({
// eslint-disable-next-line @typescript-eslint/no-unused-vars
height,
...props
-}) => (
+}) =>
// height is destructed and unused, scaling is defined by width
/* @__PURE__ */ React11.createElement(
"svg",
@@ -402,19 +345,15 @@ var CloseIconOutlined = ({
viewBox: "0 0 14 14",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
- ...props
+ ...props,
},
- /* @__PURE__ */ React11.createElement(
- "path",
- {
- d: "M1 1L13 13M13 1L1 13",
- stroke: "currentColor",
- strokeWidth: 2,
- strokeLinecap: "round"
- }
- )
- )
-);
+ /* @__PURE__ */ React11.createElement("path", {
+ d: "M1 1L13 13M13 1L1 13",
+ stroke: "currentColor",
+ strokeWidth: 2,
+ strokeLinecap: "round",
+ }),
+ );
var CloseIconOutlined_default = CloseIconOutlined;
// src/icons/DateIcon.tsx
@@ -424,7 +363,7 @@ var DateIcon = ({
// eslint-disable-next-line @typescript-eslint/no-unused-vars
height,
...props
-}) => (
+}) =>
// height is destructed and unused, scaling is defined by width
/* @__PURE__ */ React12.createElement(
"svg",
@@ -433,33 +372,29 @@ var DateIcon = ({
viewBox: "0 0 12 14",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
- ...props
+ ...props,
},
- /* @__PURE__ */ React12.createElement(
- "path",
- {
- d: "M10.6667 12.666H1.33333V5.33268H10.6667M8.66667 0.666016V1.99935H3.33333V0.666016H2V1.99935H1.33333C0.593333 1.99935 0 2.59268 0 3.33268V12.666C0 13.0196 0.140476 13.3588 0.390524 13.6088C0.640573 13.8589 0.979711 13.9993 1.33333 13.9993H10.6667C11.0203 13.9993 11.3594 13.8589 11.6095 13.6088C11.8595 13.3588 12 13.0196 12 12.666V3.33268C12 2.97906 11.8595 2.63992 11.6095 2.38987C11.3594 2.13982 11.0203 1.99935 10.6667 1.99935H10V0.666016M9.33333 7.99935H6V11.3327H9.33333V7.99935Z",
- fill: "currentColor"
- }
- )
- )
-);
+ /* @__PURE__ */ React12.createElement("path", {
+ d: "M10.6667 12.666H1.33333V5.33268H10.6667M8.66667 0.666016V1.99935H3.33333V0.666016H2V1.99935H1.33333C0.593333 1.99935 0 2.59268 0 3.33268V12.666C0 13.0196 0.140476 13.3588 0.390524 13.6088C0.640573 13.8589 0.979711 13.9993 1.33333 13.9993H10.6667C11.0203 13.9993 11.3594 13.8589 11.6095 13.6088C11.8595 13.3588 12 13.0196 12 12.666V3.33268C12 2.97906 11.8595 2.63992 11.6095 2.38987C11.3594 2.13982 11.0203 1.99935 10.6667 1.99935H10V0.666016M9.33333 7.99935H6V11.3327H9.33333V7.99935Z",
+ fill: "currentColor",
+ }),
+ );
var DateIcon_default = DateIcon;
// src/icons/DayIcon.tsx
import * as React13 from "react";
-var DayIcon = ({ width = 16, height, ...props }) => (
+var DayIcon = ({ width = 16, height, ...props }) =>
// height is destructed and unused, scaling is defined by width
- /* @__PURE__ */ React13.createElement("svg", { width, viewBox: "0 0 16 16", fill: "none", ...props }, /* @__PURE__ */ React13.createElement(
- "path",
- {
+ /* @__PURE__ */ React13.createElement(
+ "svg",
+ { width, viewBox: "0 0 16 16", fill: "none", ...props },
+ /* @__PURE__ */ React13.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M8 0C8.21217 0 8.41566 0.0842854 8.56569 0.234315C8.71571 0.384344 8.8 0.587827 8.8 0.8V1.6C8.8 1.81217 8.71571 2.01566 8.56569 2.16569C8.41566 2.31571 8.21217 2.4 8 2.4C7.78783 2.4 7.58434 2.31571 7.43431 2.16569C7.28429 2.01566 7.2 1.81217 7.2 1.6V0.8C7.2 0.587827 7.28429 0.384344 7.43431 0.234315C7.58434 0.0842854 7.78783 0 8 0ZM0 8C0 7.78783 0.0842854 7.58434 0.234315 7.43431C0.384344 7.28429 0.587827 7.2 0.8 7.2H1.6C1.81217 7.2 2.01566 7.28429 2.16569 7.43431C2.31571 7.58434 2.4 7.78783 2.4 8C2.4 8.21217 2.31571 8.41566 2.16569 8.56569C2.01566 8.71571 1.81217 8.8 1.6 8.8H0.8C0.587827 8.8 0.384344 8.71571 0.234315 8.56569C0.0842854 8.41566 0 8.21217 0 8ZM13.6 8C13.6 7.78783 13.6843 7.58434 13.8343 7.43431C13.9843 7.28429 14.1878 7.2 14.4 7.2H15.2C15.4122 7.2 15.6157 7.28429 15.7657 7.43431C15.9157 7.58434 16 7.78783 16 8C16 8.21217 15.9157 8.41566 15.7657 8.56569C15.6157 8.71571 15.4122 8.8 15.2 8.8H14.4C14.1878 8.8 13.9843 8.71571 13.8343 8.56569C13.6843 8.41566 13.6 8.21217 13.6 8ZM8.8 14.4C8.8 14.1878 8.71571 13.9843 8.56569 13.8343C8.41566 13.6843 8.21217 13.6 8 13.6C7.78783 13.6 7.58434 13.6843 7.43431 13.8343C7.28429 13.9843 7.2 14.1878 7.2 14.4V15.2C7.2 15.4122 7.28429 15.6157 7.43431 15.7657C7.58434 15.9157 7.78783 16 8 16C8.21217 16 8.41566 15.9157 8.56569 15.7657C8.71571 15.6157 8.8 15.4122 8.8 15.2V14.4ZM13.0912 11.96C13.0174 11.8836 12.9291 11.8226 12.8315 11.7807C12.7339 11.7388 12.6289 11.7167 12.5227 11.7158C12.4165 11.7149 12.3112 11.7351 12.2128 11.7753C12.1145 11.8156 12.0252 11.875 11.9501 11.9501C11.875 12.0252 11.8156 12.1145 11.7753 12.2128C11.7351 12.3112 11.7149 12.4165 11.7158 12.5227C11.7167 12.6289 11.7388 12.7339 11.7807 12.8315C11.8226 12.9291 11.8836 13.0174 11.96 13.0912L12.5256 13.6568C12.6765 13.8025 12.8786 13.8832 13.0883 13.8813C13.2981 13.8795 13.4987 13.7954 13.6471 13.6471C13.7954 13.4987 13.8795 13.2981 13.8813 13.0883C13.8832 12.8786 13.8025 12.6765 13.6568 12.5256L13.0912 11.96ZM2.3432 2.3432C2.49322 2.19322 2.69667 2.10897 2.9088 2.10897C3.12093 2.10897 3.32438 2.19322 3.4744 2.3432L4.04 2.9088C4.18573 3.05968 4.26636 3.26176 4.26454 3.47152C4.26272 3.68128 4.17858 3.88193 4.03025 4.03025C3.88193 4.17858 3.68128 4.26272 3.47152 4.26454C3.26176 4.26636 3.05968 4.18573 2.9088 4.04L2.3432 3.4744C2.19322 3.32438 2.10897 3.12093 2.10897 2.9088C2.10897 2.69667 2.19322 2.49322 2.3432 2.3432ZM4.04 13.0912C4.11641 13.0174 4.17735 12.9291 4.21928 12.8315C4.26121 12.7339 4.28328 12.6289 4.2842 12.5227C4.28512 12.4165 4.26488 12.3112 4.22466 12.2128C4.18443 12.1145 4.12503 12.0252 4.04992 11.9501C3.9748 11.875 3.88548 11.8156 3.78716 11.7753C3.68885 11.7351 3.5835 11.7149 3.47728 11.7158C3.37106 11.7167 3.26608 11.7388 3.16848 11.7807C3.07087 11.8226 2.9826 11.8836 2.9088 11.96L2.3432 12.5256C2.26679 12.5994 2.20585 12.6877 2.16392 12.7853C2.12199 12.8829 2.09992 12.9879 2.099 13.0941C2.09808 13.2003 2.11832 13.3056 2.15854 13.404C2.19877 13.5023 2.25817 13.5916 2.33328 13.6667C2.4084 13.7418 2.49772 13.8012 2.59604 13.8415C2.69435 13.8817 2.7997 13.9019 2.90592 13.901C3.01214 13.9001 3.11712 13.878 3.21472 13.8361C3.31233 13.7942 3.4006 13.7332 3.4744 13.6568L4.04 13.0912ZM13.6568 2.3432C13.8068 2.49322 13.891 2.69667 13.891 2.9088C13.891 3.12093 13.8068 3.32438 13.6568 3.4744L13.0912 4.04C13.0174 4.11641 12.9291 4.17735 12.8315 4.21928C12.7339 4.26121 12.6289 4.28328 12.5227 4.2842C12.4165 4.28512 12.3112 4.26488 12.2128 4.22466C12.1145 4.18443 12.0252 4.12503 11.9501 4.04992C11.875 3.9748 11.8156 3.88548 11.7753 3.78716C11.7351 3.68885 11.7149 3.5835 11.7158 3.47728C11.7167 3.37106 11.7388 3.26608 11.7807 3.16848C11.8226 3.07087 11.8836 2.9826 11.96 2.9088L12.5256 2.3432C12.6756 2.19322 12.8791 2.10897 13.0912 2.10897C13.3033 2.10897 13.5068 2.19322 13.6568 2.3432ZM4 8C4 6.93913 4.42143 5.92172 5.17157 5.17157C5.92172 4.42143 6.93913 4 8 4C9.06087 4 10.0783 4.42143 10.8284 5.17157C11.5786 5.92172 12 6.93913 12 8C12 9.06087 11.5786 10.0783 10.8284 10.8284C10.0783 11.5786 9.06087 12 8 12C6.93913 12 5.92172 11.5786 5.17157 10.8284C4.42143 10.0783 4 9.06087 4 8Z",
- fill: "currentColor"
- }
- ))
-);
+ fill: "currentColor",
+ }),
+ );
var DayIcon_default = DayIcon;
// src/icons/DiceIcon.tsx
@@ -471,7 +406,7 @@ var DiceIcon = ({
// eslint-disable-next-line @typescript-eslint/no-unused-vars
pathProps,
...props
-}) => (
+}) =>
// height is destructed and unused, scaling is defined by width
// pathProps is destructured and unused
/* @__PURE__ */ React14.createElement(
@@ -481,44 +416,31 @@ var DiceIcon = ({
viewBox: "0 0 23 23",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
- ...props
+ ...props,
},
- /* @__PURE__ */ React14.createElement(
- "path",
- {
- d: "M10.341 13.159C9.68198 12.5 8.62132 12.5 6.5 12.5C4.37868 12.5 3.31802 12.5 2.65901 13.159M10.341 13.159C11 13.818 11 14.8787 11 17C11 19.1213 11 20.182 10.341 20.841M2.65901 13.159C2 13.818 2 14.8787 2 17C2 19.1213 2 20.182 2.65901 20.841M2.65901 20.841C3.31802 21.5 4.37868 21.5 6.5 21.5C8.62132 21.5 9.68198 21.5 10.341 20.841",
- stroke: "currentColor",
- strokeWidth: "1.5"
- }
- ),
- /* @__PURE__ */ React14.createElement(
- "path",
- {
- d: "M15.2218 4.77817C16.7406 6.29696 17.5 7.05635 17.5 8C17.5 8.94365 16.7406 9.70304 15.2218 11.2218C13.703 12.7406 12.9436 13.5 12 13.5C11.0563 13.5 10.297 12.7406 8.77817 11.2218C7.25939 9.70304 6.5 8.94365 6.5 8C6.5 7.05635 7.25939 6.29696 8.77817 4.77817C10.297 3.25939 11.0563 2.5 12 2.5C12.9437 2.5 13.703 3.25939 15.2218 4.77817Z",
- stroke: "currentColor",
- strokeWidth: "1.5"
- }
- ),
- /* @__PURE__ */ React14.createElement(
- "path",
- {
- d: "M21.341 13.159C20.682 12.5 19.6213 12.5 17.5 12.5C15.3787 12.5 14.318 12.5 13.659 13.159M21.341 13.159C22 13.818 22 14.8787 22 17C22 19.1213 22 20.182 21.341 20.841M13.659 13.159C13 13.818 13 14.8787 13 17C13 19.1213 13 20.182 13.659 20.841M13.659 20.841C14.318 21.5 15.3787 21.5 17.5 21.5C19.6213 21.5 20.682 21.5 21.341 20.841",
- stroke: "currentColor",
- strokeWidth: "1.5"
- }
- ),
- /* @__PURE__ */ React14.createElement(
- "path",
- {
- d: "M12.008 8H11.999",
- stroke: "currentColor",
- strokeWidth: "2",
- strokeLinecap: "round",
- strokeLinejoin: "round"
- }
- )
- )
-);
+ /* @__PURE__ */ React14.createElement("path", {
+ d: "M10.341 13.159C9.68198 12.5 8.62132 12.5 6.5 12.5C4.37868 12.5 3.31802 12.5 2.65901 13.159M10.341 13.159C11 13.818 11 14.8787 11 17C11 19.1213 11 20.182 10.341 20.841M2.65901 13.159C2 13.818 2 14.8787 2 17C2 19.1213 2 20.182 2.65901 20.841M2.65901 20.841C3.31802 21.5 4.37868 21.5 6.5 21.5C8.62132 21.5 9.68198 21.5 10.341 20.841",
+ stroke: "currentColor",
+ strokeWidth: "1.5",
+ }),
+ /* @__PURE__ */ React14.createElement("path", {
+ d: "M15.2218 4.77817C16.7406 6.29696 17.5 7.05635 17.5 8C17.5 8.94365 16.7406 9.70304 15.2218 11.2218C13.703 12.7406 12.9436 13.5 12 13.5C11.0563 13.5 10.297 12.7406 8.77817 11.2218C7.25939 9.70304 6.5 8.94365 6.5 8C6.5 7.05635 7.25939 6.29696 8.77817 4.77817C10.297 3.25939 11.0563 2.5 12 2.5C12.9437 2.5 13.703 3.25939 15.2218 4.77817Z",
+ stroke: "currentColor",
+ strokeWidth: "1.5",
+ }),
+ /* @__PURE__ */ React14.createElement("path", {
+ d: "M21.341 13.159C20.682 12.5 19.6213 12.5 17.5 12.5C15.3787 12.5 14.318 12.5 13.659 13.159M21.341 13.159C22 13.818 22 14.8787 22 17C22 19.1213 22 20.182 21.341 20.841M13.659 13.159C13 13.818 13 14.8787 13 17C13 19.1213 13 20.182 13.659 20.841M13.659 20.841C14.318 21.5 15.3787 21.5 17.5 21.5C19.6213 21.5 20.682 21.5 21.341 20.841",
+ stroke: "currentColor",
+ strokeWidth: "1.5",
+ }),
+ /* @__PURE__ */ React14.createElement("path", {
+ d: "M12.008 8H11.999",
+ stroke: "currentColor",
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ strokeLinejoin: "round",
+ }),
+ );
var DiceIcon_default = DiceIcon;
// src/icons/DiscordIcon.tsx
@@ -530,7 +452,7 @@ var DiscordIcon = ({
// eslint-disable-next-line @typescript-eslint/no-unused-vars
pathProps,
...props
-}) => (
+}) =>
// height is destructed and unused, scaling is defined by width
// pathProps is destructured and unused
/* @__PURE__ */ React15.createElement(
@@ -540,19 +462,15 @@ var DiscordIcon = ({
viewBox: "0 0 41 33",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
- ...props
+ ...props,
},
- /* @__PURE__ */ React15.createElement(
- "path",
- {
- fillRule: "evenodd",
- clipRule: "evenodd",
- d: "M14.9997 0.916504C11.652 0.916504 9.12018 1.48117 6.34634 2.84334C6.1873 2.9212 6.05422 3.04346 5.96318 3.19534C4.05834 6.37067 0.33301 15.2092 0.33301 25.6665C0.332528 25.9044 0.424568 26.1332 0.589676 26.3045C2.33501 28.103 3.92084 29.4267 5.62218 30.3617C7.33268 31.3003 9.11468 31.8228 11.223 32.0758C11.3988 32.0972 11.577 32.0672 11.7361 31.9894C11.8952 31.9117 12.0284 31.7895 12.1195 31.6377L13.0545 30.0757C11.6923 29.599 10.3008 28.9665 9.44284 28.1085C9.31158 27.9816 9.2069 27.8298 9.13492 27.662C9.06293 27.4943 9.02509 27.3138 9.02359 27.1312C9.02209 26.9487 9.05697 26.7676 9.12618 26.5987C9.1954 26.4297 9.29757 26.2763 9.42673 26.1472C9.55589 26.0182 9.70946 25.9161 9.87848 25.8471C10.0475 25.778 10.2286 25.7433 10.4111 25.745C10.5937 25.7467 10.7741 25.7847 10.9418 25.8568C11.1096 25.929 11.2612 26.0338 11.388 26.1652C11.8555 26.6327 12.9537 27.1643 14.5047 27.6612C15.7862 27.9967 18.0173 28.4165 20.4997 28.4165C22.982 28.4165 25.2132 27.9967 26.4947 27.6612C28.0457 27.1643 29.1438 26.6308 29.6113 26.1652C29.7372 26.0301 29.889 25.9217 30.0577 25.8466C30.2264 25.7714 30.4084 25.731 30.5931 25.7278C30.7777 25.7245 30.9611 25.7585 31.1323 25.8276C31.3035 25.8968 31.459 25.9997 31.5896 26.1303C31.7201 26.2608 31.8231 26.4164 31.8922 26.5876C31.9614 26.7588 31.9953 26.9422 31.9921 27.1268C31.9888 27.3114 31.9484 27.4935 31.8733 27.6622C31.7981 27.8308 31.6898 27.9826 31.5547 28.1085C30.6985 28.9665 29.307 29.599 27.943 30.0757L28.8798 31.6377C28.9707 31.7898 29.1038 31.9124 29.2629 31.9905C29.422 32.0686 29.6004 32.0989 29.7763 32.0777C31.8847 31.8228 33.6667 31.3003 35.3772 30.3617C37.0785 29.4267 38.6643 28.103 40.4078 26.3045C40.5736 26.1335 40.6663 25.9047 40.6663 25.6665C40.6663 15.2092 36.941 6.37067 35.0362 3.19534C34.9451 3.04346 34.812 2.9212 34.653 2.84334C31.8792 1.48117 29.3473 0.916504 25.9997 0.916504C25.8074 0.91665 25.62 0.977275 25.464 1.0898C25.3081 1.20232 25.1914 1.36105 25.1307 1.5435L24.5147 3.3915C23.2175 2.97154 21.8631 2.75508 20.4997 2.74984C19.1362 2.75508 17.7818 2.97154 16.4847 3.3915L15.8687 1.5435C15.8079 1.36105 15.6913 1.20232 15.5353 1.0898C15.3794 0.977275 15.192 0.91665 14.9997 0.916504ZM16.833 17.8748C16.833 19.6458 15.601 21.0832 14.083 21.0832C12.565 21.0832 11.333 19.6458 11.333 17.8748C11.333 16.1038 12.565 14.6665 14.083 14.6665C15.601 14.6665 16.833 16.1038 16.833 17.8748ZM26.9163 21.0832C28.4343 21.0832 29.6663 19.6458 29.6663 17.8748C29.6663 16.1038 28.4343 14.6665 26.9163 14.6665C25.3983 14.6665 24.1663 16.1038 24.1663 17.8748C24.1663 19.6458 25.3983 21.0832 26.9163 21.0832Z",
- fill: "currentColor"
- }
- )
- )
-);
+ /* @__PURE__ */ React15.createElement("path", {
+ fillRule: "evenodd",
+ clipRule: "evenodd",
+ d: "M14.9997 0.916504C11.652 0.916504 9.12018 1.48117 6.34634 2.84334C6.1873 2.9212 6.05422 3.04346 5.96318 3.19534C4.05834 6.37067 0.33301 15.2092 0.33301 25.6665C0.332528 25.9044 0.424568 26.1332 0.589676 26.3045C2.33501 28.103 3.92084 29.4267 5.62218 30.3617C7.33268 31.3003 9.11468 31.8228 11.223 32.0758C11.3988 32.0972 11.577 32.0672 11.7361 31.9894C11.8952 31.9117 12.0284 31.7895 12.1195 31.6377L13.0545 30.0757C11.6923 29.599 10.3008 28.9665 9.44284 28.1085C9.31158 27.9816 9.2069 27.8298 9.13492 27.662C9.06293 27.4943 9.02509 27.3138 9.02359 27.1312C9.02209 26.9487 9.05697 26.7676 9.12618 26.5987C9.1954 26.4297 9.29757 26.2763 9.42673 26.1472C9.55589 26.0182 9.70946 25.9161 9.87848 25.8471C10.0475 25.778 10.2286 25.7433 10.4111 25.745C10.5937 25.7467 10.7741 25.7847 10.9418 25.8568C11.1096 25.929 11.2612 26.0338 11.388 26.1652C11.8555 26.6327 12.9537 27.1643 14.5047 27.6612C15.7862 27.9967 18.0173 28.4165 20.4997 28.4165C22.982 28.4165 25.2132 27.9967 26.4947 27.6612C28.0457 27.1643 29.1438 26.6308 29.6113 26.1652C29.7372 26.0301 29.889 25.9217 30.0577 25.8466C30.2264 25.7714 30.4084 25.731 30.5931 25.7278C30.7777 25.7245 30.9611 25.7585 31.1323 25.8276C31.3035 25.8968 31.459 25.9997 31.5896 26.1303C31.7201 26.2608 31.8231 26.4164 31.8922 26.5876C31.9614 26.7588 31.9953 26.9422 31.9921 27.1268C31.9888 27.3114 31.9484 27.4935 31.8733 27.6622C31.7981 27.8308 31.6898 27.9826 31.5547 28.1085C30.6985 28.9665 29.307 29.599 27.943 30.0757L28.8798 31.6377C28.9707 31.7898 29.1038 31.9124 29.2629 31.9905C29.422 32.0686 29.6004 32.0989 29.7763 32.0777C31.8847 31.8228 33.6667 31.3003 35.3772 30.3617C37.0785 29.4267 38.6643 28.103 40.4078 26.3045C40.5736 26.1335 40.6663 25.9047 40.6663 25.6665C40.6663 15.2092 36.941 6.37067 35.0362 3.19534C34.9451 3.04346 34.812 2.9212 34.653 2.84334C31.8792 1.48117 29.3473 0.916504 25.9997 0.916504C25.8074 0.91665 25.62 0.977275 25.464 1.0898C25.3081 1.20232 25.1914 1.36105 25.1307 1.5435L24.5147 3.3915C23.2175 2.97154 21.8631 2.75508 20.4997 2.74984C19.1362 2.75508 17.7818 2.97154 16.4847 3.3915L15.8687 1.5435C15.8079 1.36105 15.6913 1.20232 15.5353 1.0898C15.3794 0.977275 15.192 0.91665 14.9997 0.916504ZM16.833 17.8748C16.833 19.6458 15.601 21.0832 14.083 21.0832C12.565 21.0832 11.333 19.6458 11.333 17.8748C11.333 16.1038 12.565 14.6665 14.083 14.6665C15.601 14.6665 16.833 16.1038 16.833 17.8748ZM26.9163 21.0832C28.4343 21.0832 29.6663 19.6458 29.6663 17.8748C29.6663 16.1038 28.4343 14.6665 26.9163 14.6665C25.3983 14.6665 24.1663 16.1038 24.1663 17.8748C24.1663 19.6458 25.3983 21.0832 26.9163 21.0832Z",
+ fill: "currentColor",
+ }),
+ );
var DiscordIcon_default = DiscordIcon;
// src/icons/FilterIcon.tsx
@@ -562,7 +480,7 @@ var FilterIcon = ({
// eslint-disable-next-line @typescript-eslint/no-unused-vars
height,
...props
-}) => (
+}) =>
// height is destructed and unused, scaling is defined by width
/* @__PURE__ */ React16.createElement(
"svg",
@@ -572,17 +490,13 @@ var FilterIcon = ({
viewBox: "0 0 13 16",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
- ...props
+ ...props,
},
- /* @__PURE__ */ React16.createElement(
- "path",
- {
- d: "M4.12533 2.4573C3.91536 2.4573 3.714 2.54071 3.56553 2.68917C3.41707 2.83764 3.33366 3.039 3.33366 3.24896C3.33366 3.45893 3.41707 3.66029 3.56553 3.80876C3.714 3.95722 3.91536 4.04063 4.12533 4.04063C4.33529 4.04063 4.53665 3.95722 4.68512 3.80876C4.83359 3.66029 4.91699 3.45893 4.91699 3.24896C4.91699 3.039 4.83359 2.83764 4.68512 2.68917C4.53665 2.54071 4.33529 2.4573 4.12533 2.4573ZM1.88491 2.4573C2.04847 1.99375 2.35179 1.59235 2.75305 1.30842C3.15432 1.0245 3.63377 0.872025 4.12533 0.872025C4.61688 0.872025 5.09634 1.0245 5.4976 1.30842C5.89887 1.59235 6.20218 1.99375 6.36574 2.4573H12.042C12.252 2.4573 12.4533 2.54071 12.6018 2.68917C12.7503 2.83764 12.8337 3.039 12.8337 3.24896C12.8337 3.45893 12.7503 3.66029 12.6018 3.80876C12.4533 3.95722 12.252 4.04063 12.042 4.04063H6.36574C6.20218 4.50418 5.89887 4.90558 5.4976 5.18951C5.09634 5.47343 4.61688 5.62591 4.12533 5.62591C3.63377 5.62591 3.15432 5.47343 2.75305 5.18951C2.35179 4.90558 2.04847 4.50418 1.88491 4.04063H0.958659C0.748696 4.04063 0.547332 3.95722 0.398866 3.80876C0.2504 3.66029 0.166992 3.45893 0.166992 3.24896C0.166992 3.039 0.2504 2.83764 0.398866 2.68917C0.547332 2.54071 0.748696 2.4573 0.958659 2.4573H1.88491ZM8.87533 7.2073C8.66536 7.2073 8.464 7.29071 8.31553 7.43917C8.16707 7.58764 8.08366 7.789 8.08366 7.99897C8.08366 8.20893 8.16707 8.41029 8.31553 8.55876C8.464 8.70722 8.66536 8.79063 8.87533 8.79063C9.08529 8.79063 9.28665 8.70722 9.43512 8.55876C9.58359 8.41029 9.66699 8.20893 9.66699 7.99897C9.66699 7.789 9.58359 7.58764 9.43512 7.43917C9.28665 7.29071 9.08529 7.2073 8.87533 7.2073ZM6.63491 7.2073C6.79847 6.74375 7.10179 6.34235 7.50305 6.05842C7.90432 5.7745 8.38377 5.62202 8.87533 5.62202C9.36688 5.62202 9.84634 5.7745 10.2476 6.05842C10.6489 6.34235 10.9522 6.74375 11.1157 7.2073H12.042C12.252 7.2073 12.4533 7.29071 12.6018 7.43917C12.7503 7.58764 12.8337 7.789 12.8337 7.99897C12.8337 8.20893 12.7503 8.41029 12.6018 8.55876C12.4533 8.70722 12.252 8.79063 12.042 8.79063H11.1157C10.9522 9.25418 10.6489 9.65558 10.2476 9.93951C9.84634 10.2234 9.36688 10.3759 8.87533 10.3759C8.38377 10.3759 7.90432 10.2234 7.50305 9.93951C7.10179 9.65558 6.79847 9.25418 6.63491 8.79063H0.958659C0.748696 8.79063 0.547332 8.70722 0.398866 8.55876C0.2504 8.41029 0.166992 8.20893 0.166992 7.99897C0.166992 7.789 0.2504 7.58764 0.398866 7.43917C0.547332 7.29071 0.748696 7.2073 0.958659 7.2073H6.63491ZM4.12533 11.9573C3.91536 11.9573 3.714 12.0407 3.56553 12.1892C3.41707 12.3376 3.33366 12.539 3.33366 12.749C3.33366 12.9589 3.41707 13.1603 3.56553 13.3088C3.714 13.4572 3.91536 13.5406 4.12533 13.5406C4.33529 13.5406 4.53665 13.4572 4.68512 13.3088C4.83359 13.1603 4.91699 12.9589 4.91699 12.749C4.91699 12.539 4.83359 12.3376 4.68512 12.1892C4.53665 12.0407 4.33529 11.9573 4.12533 11.9573ZM1.88491 11.9573C2.04847 11.4938 2.35179 11.0923 2.75305 10.8084C3.15432 10.5245 3.63377 10.372 4.12533 10.372C4.61688 10.372 5.09634 10.5245 5.4976 10.8084C5.89887 11.0923 6.20218 11.4938 6.36574 11.9573H12.042C12.252 11.9573 12.4533 12.0407 12.6018 12.1892C12.7503 12.3376 12.8337 12.539 12.8337 12.749C12.8337 12.9589 12.7503 13.1603 12.6018 13.3088C12.4533 13.4572 12.252 13.5406 12.042 13.5406H6.36574C6.20218 14.0042 5.89887 14.4056 5.4976 14.6895C5.09634 14.9734 4.61688 15.1259 4.12533 15.1259C3.63377 15.1259 3.15432 14.9734 2.75305 14.6895C2.35179 14.4056 2.04847 14.0042 1.88491 13.5406H0.958659C0.748696 13.5406 0.547332 13.4572 0.398866 13.3088C0.2504 13.1603 0.166992 12.9589 0.166992 12.749C0.166992 12.539 0.2504 12.3376 0.398866 12.1892C0.547332 12.0407 0.748696 11.9573 0.958659 11.9573H1.88491Z",
- fill: "currentColor"
- }
- )
- )
-);
+ /* @__PURE__ */ React16.createElement("path", {
+ d: "M4.12533 2.4573C3.91536 2.4573 3.714 2.54071 3.56553 2.68917C3.41707 2.83764 3.33366 3.039 3.33366 3.24896C3.33366 3.45893 3.41707 3.66029 3.56553 3.80876C3.714 3.95722 3.91536 4.04063 4.12533 4.04063C4.33529 4.04063 4.53665 3.95722 4.68512 3.80876C4.83359 3.66029 4.91699 3.45893 4.91699 3.24896C4.91699 3.039 4.83359 2.83764 4.68512 2.68917C4.53665 2.54071 4.33529 2.4573 4.12533 2.4573ZM1.88491 2.4573C2.04847 1.99375 2.35179 1.59235 2.75305 1.30842C3.15432 1.0245 3.63377 0.872025 4.12533 0.872025C4.61688 0.872025 5.09634 1.0245 5.4976 1.30842C5.89887 1.59235 6.20218 1.99375 6.36574 2.4573H12.042C12.252 2.4573 12.4533 2.54071 12.6018 2.68917C12.7503 2.83764 12.8337 3.039 12.8337 3.24896C12.8337 3.45893 12.7503 3.66029 12.6018 3.80876C12.4533 3.95722 12.252 4.04063 12.042 4.04063H6.36574C6.20218 4.50418 5.89887 4.90558 5.4976 5.18951C5.09634 5.47343 4.61688 5.62591 4.12533 5.62591C3.63377 5.62591 3.15432 5.47343 2.75305 5.18951C2.35179 4.90558 2.04847 4.50418 1.88491 4.04063H0.958659C0.748696 4.04063 0.547332 3.95722 0.398866 3.80876C0.2504 3.66029 0.166992 3.45893 0.166992 3.24896C0.166992 3.039 0.2504 2.83764 0.398866 2.68917C0.547332 2.54071 0.748696 2.4573 0.958659 2.4573H1.88491ZM8.87533 7.2073C8.66536 7.2073 8.464 7.29071 8.31553 7.43917C8.16707 7.58764 8.08366 7.789 8.08366 7.99897C8.08366 8.20893 8.16707 8.41029 8.31553 8.55876C8.464 8.70722 8.66536 8.79063 8.87533 8.79063C9.08529 8.79063 9.28665 8.70722 9.43512 8.55876C9.58359 8.41029 9.66699 8.20893 9.66699 7.99897C9.66699 7.789 9.58359 7.58764 9.43512 7.43917C9.28665 7.29071 9.08529 7.2073 8.87533 7.2073ZM6.63491 7.2073C6.79847 6.74375 7.10179 6.34235 7.50305 6.05842C7.90432 5.7745 8.38377 5.62202 8.87533 5.62202C9.36688 5.62202 9.84634 5.7745 10.2476 6.05842C10.6489 6.34235 10.9522 6.74375 11.1157 7.2073H12.042C12.252 7.2073 12.4533 7.29071 12.6018 7.43917C12.7503 7.58764 12.8337 7.789 12.8337 7.99897C12.8337 8.20893 12.7503 8.41029 12.6018 8.55876C12.4533 8.70722 12.252 8.79063 12.042 8.79063H11.1157C10.9522 9.25418 10.6489 9.65558 10.2476 9.93951C9.84634 10.2234 9.36688 10.3759 8.87533 10.3759C8.38377 10.3759 7.90432 10.2234 7.50305 9.93951C7.10179 9.65558 6.79847 9.25418 6.63491 8.79063H0.958659C0.748696 8.79063 0.547332 8.70722 0.398866 8.55876C0.2504 8.41029 0.166992 8.20893 0.166992 7.99897C0.166992 7.789 0.2504 7.58764 0.398866 7.43917C0.547332 7.29071 0.748696 7.2073 0.958659 7.2073H6.63491ZM4.12533 11.9573C3.91536 11.9573 3.714 12.0407 3.56553 12.1892C3.41707 12.3376 3.33366 12.539 3.33366 12.749C3.33366 12.9589 3.41707 13.1603 3.56553 13.3088C3.714 13.4572 3.91536 13.5406 4.12533 13.5406C4.33529 13.5406 4.53665 13.4572 4.68512 13.3088C4.83359 13.1603 4.91699 12.9589 4.91699 12.749C4.91699 12.539 4.83359 12.3376 4.68512 12.1892C4.53665 12.0407 4.33529 11.9573 4.12533 11.9573ZM1.88491 11.9573C2.04847 11.4938 2.35179 11.0923 2.75305 10.8084C3.15432 10.5245 3.63377 10.372 4.12533 10.372C4.61688 10.372 5.09634 10.5245 5.4976 10.8084C5.89887 11.0923 6.20218 11.4938 6.36574 11.9573H12.042C12.252 11.9573 12.4533 12.0407 12.6018 12.1892C12.7503 12.3376 12.8337 12.539 12.8337 12.749C12.8337 12.9589 12.7503 13.1603 12.6018 13.3088C12.4533 13.4572 12.252 13.5406 12.042 13.5406H6.36574C6.20218 14.0042 5.89887 14.4056 5.4976 14.6895C5.09634 14.9734 4.61688 15.1259 4.12533 15.1259C3.63377 15.1259 3.15432 14.9734 2.75305 14.6895C2.35179 14.4056 2.04847 14.0042 1.88491 13.5406H0.958659C0.748696 13.5406 0.547332 13.4572 0.398866 13.3088C0.2504 13.1603 0.166992 12.9589 0.166992 12.749C0.166992 12.539 0.2504 12.3376 0.398866 12.1892C0.547332 12.0407 0.748696 11.9573 0.958659 11.9573H1.88491Z",
+ fill: "currentColor",
+ }),
+ );
var FilterIcon_default = FilterIcon;
// src/icons/FilterCloseIcon.tsx
@@ -592,7 +506,7 @@ var FilterCloseIcon = ({
// eslint-disable-next-line @typescript-eslint/no-unused-vars
height,
...props
-}) => (
+}) =>
// height is destructed and unused, scaling is defined by width
/* @__PURE__ */ React17.createElement(
"svg",
@@ -601,17 +515,13 @@ var FilterCloseIcon = ({
viewBox: "0 0 20 20",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
- ...props
+ ...props,
},
- /* @__PURE__ */ React17.createElement(
- "path",
- {
- d: "M9.93317 16.6L3.33317 10L9.93317 3.4L11.1082 4.58333L6.52484 9.16666H18.3332V10.8333H6.52484L11.1165 15.4167L9.93317 16.6ZM3.33317 10V1.66666H1.6665V18.3333H3.33317V10Z",
- fill: "currentColor"
- }
- )
- )
-);
+ /* @__PURE__ */ React17.createElement("path", {
+ d: "M9.93317 16.6L3.33317 10L9.93317 3.4L11.1082 4.58333L6.52484 9.16666H18.3332V10.8333H6.52484L11.1165 15.4167L9.93317 16.6ZM3.33317 10V1.66666H1.6665V18.3333H3.33317V10Z",
+ fill: "currentColor",
+ }),
+ );
var FilterCloseIcon_default = FilterCloseIcon;
// src/icons/GithubIcon.tsx
@@ -621,7 +531,7 @@ var GithubIcon = ({
// eslint-disable-next-line @typescript-eslint/no-unused-vars
height,
...props
-}) => (
+}) =>
// height is destructed and unused, scaling is defined by width
/* @__PURE__ */ React18.createElement(
"svg",
@@ -630,17 +540,13 @@ var GithubIcon = ({
viewBox: "0 0 40 40",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
- ...props
+ ...props,
},
- /* @__PURE__ */ React18.createElement(
- "path",
- {
- d: "M20 0C17.3736 0 14.7728 0.530159 12.3463 1.56021C9.91982 2.59025 7.71504 4.10002 5.85786 6.0033C2.10714 9.84714 0 15.0605 0 20.4965C0 29.556 5.74 37.2422 13.68 39.9683C14.68 40.1322 15 39.4968 15 38.9434V35.4795C9.46 36.7093 8.28 32.733 8.28 32.733C7.36 30.3554 6.06 29.72 6.06 29.72C4.24 28.4492 6.2 28.4902 6.2 28.4902C8.2 28.6337 9.26 30.6013 9.26 30.6013C11 33.7168 13.94 32.7945 15.08 32.3025C15.26 30.9703 15.78 30.0684 16.34 29.556C11.9 29.0436 7.24 27.2809 7.24 19.4717C7.24 17.1966 8 15.3724 9.3 13.9172C9.1 13.4047 8.4 11.2731 9.5 8.50606C9.5 8.50606 11.18 7.95266 15 10.5967C16.58 10.1458 18.3 9.92033 20 9.92033C21.7 9.92033 23.42 10.1458 25 10.5967C28.82 7.95266 30.5 8.50606 30.5 8.50606C31.6 11.2731 30.9 13.4047 30.7 13.9172C32 15.3724 32.76 17.1966 32.76 19.4717C32.76 27.3014 28.08 29.0231 23.62 29.5355C24.34 30.1709 25 31.4212 25 33.3274V38.9434C25 39.4968 25.32 40.1527 26.34 39.9683C34.28 37.2217 40 29.556 40 20.4965C40 17.8049 39.4827 15.1396 38.4776 12.6529C37.4725 10.1661 35.9993 7.90658 34.1421 6.0033C32.285 4.10002 30.0802 2.59025 27.6537 1.56021C25.2272 0.530159 22.6264 0 20 0Z",
- fill: "currentColor"
- }
- )
- )
-);
+ /* @__PURE__ */ React18.createElement("path", {
+ d: "M20 0C17.3736 0 14.7728 0.530159 12.3463 1.56021C9.91982 2.59025 7.71504 4.10002 5.85786 6.0033C2.10714 9.84714 0 15.0605 0 20.4965C0 29.556 5.74 37.2422 13.68 39.9683C14.68 40.1322 15 39.4968 15 38.9434V35.4795C9.46 36.7093 8.28 32.733 8.28 32.733C7.36 30.3554 6.06 29.72 6.06 29.72C4.24 28.4492 6.2 28.4902 6.2 28.4902C8.2 28.6337 9.26 30.6013 9.26 30.6013C11 33.7168 13.94 32.7945 15.08 32.3025C15.26 30.9703 15.78 30.0684 16.34 29.556C11.9 29.0436 7.24 27.2809 7.24 19.4717C7.24 17.1966 8 15.3724 9.3 13.9172C9.1 13.4047 8.4 11.2731 9.5 8.50606C9.5 8.50606 11.18 7.95266 15 10.5967C16.58 10.1458 18.3 9.92033 20 9.92033C21.7 9.92033 23.42 10.1458 25 10.5967C28.82 7.95266 30.5 8.50606 30.5 8.50606C31.6 11.2731 30.9 13.4047 30.7 13.9172C32 15.3724 32.76 17.1966 32.76 19.4717C32.76 27.3014 28.08 29.0231 23.62 29.5355C24.34 30.1709 25 31.4212 25 33.3274V38.9434C25 39.4968 25.32 40.1527 26.34 39.9683C34.28 37.2217 40 29.556 40 20.4965C40 17.8049 39.4827 15.1396 38.4776 12.6529C37.4725 10.1661 35.9993 7.90658 34.1421 6.0033C32.285 4.10002 30.0802 2.59025 27.6537 1.56021C25.2272 0.530159 22.6264 0 20 0Z",
+ fill: "currentColor",
+ }),
+ );
var GithubIcon_default = GithubIcon;
// src/icons/LightningIconSolid.tsx
@@ -659,16 +565,13 @@ var LightningIconSolid = ({
viewBox: "0 0 14 17",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
- ...props
+ ...props,
},
- /* @__PURE__ */ React19.createElement(
- "path",
- {
- d: "M13.0778 7.33566L4.44176 16.2157C4.20176 16.4617 3.80376 16.1767 3.95976 15.8707L7.03376 9.80466C7.05704 9.75888 7.06818 9.70788 7.06611 9.65656C7.06404 9.60524 7.04883 9.55531 7.02193 9.51156C6.99504 9.4678 6.95736 9.43168 6.9125 9.40666C6.86765 9.38164 6.81712 9.36855 6.76576 9.36866H0.299757C0.240699 9.36861 0.182969 9.35113 0.133802 9.31841C0.0846347 9.2857 0.046218 9.23919 0.0233668 9.18473C0.000515729 9.13028 -0.00575341 9.07028 0.00534526 9.01228C0.0164439 8.95427 0.0444169 8.90083 0.0857577 8.85866L8.09576 0.743657C8.32776 0.508657 8.71376 0.766657 8.58476 1.07166L6.28776 6.48666C6.26831 6.53256 6.26061 6.5826 6.26535 6.63223C6.2701 6.68186 6.28714 6.72952 6.31493 6.77092C6.34272 6.81231 6.38039 6.84612 6.42454 6.8693C6.46868 6.89247 6.5179 6.90428 6.56776 6.90366L12.8588 6.82566C12.9181 6.8247 12.9764 6.84139 13.0263 6.8736C13.0762 6.90581 13.1154 6.95209 13.139 7.00659C13.1625 7.0611 13.1694 7.12136 13.1587 7.17976C13.1479 7.23816 13.1201 7.29207 13.0788 7.33466L13.0778 7.33566Z",
- fill: "currentColor",
- ...pathProps
- }
- )
+ /* @__PURE__ */ React19.createElement("path", {
+ d: "M13.0778 7.33566L4.44176 16.2157C4.20176 16.4617 3.80376 16.1767 3.95976 15.8707L7.03376 9.80466C7.05704 9.75888 7.06818 9.70788 7.06611 9.65656C7.06404 9.60524 7.04883 9.55531 7.02193 9.51156C6.99504 9.4678 6.95736 9.43168 6.9125 9.40666C6.86765 9.38164 6.81712 9.36855 6.76576 9.36866H0.299757C0.240699 9.36861 0.182969 9.35113 0.133802 9.31841C0.0846347 9.2857 0.046218 9.23919 0.0233668 9.18473C0.000515729 9.13028 -0.00575341 9.07028 0.00534526 9.01228C0.0164439 8.95427 0.0444169 8.90083 0.0857577 8.85866L8.09576 0.743657C8.32776 0.508657 8.71376 0.766657 8.58476 1.07166L6.28776 6.48666C6.26831 6.53256 6.26061 6.5826 6.26535 6.63223C6.2701 6.68186 6.28714 6.72952 6.31493 6.77092C6.34272 6.81231 6.38039 6.84612 6.42454 6.8693C6.46868 6.89247 6.5179 6.90428 6.56776 6.90366L12.8588 6.82566C12.9181 6.8247 12.9764 6.84139 13.0263 6.8736C13.0762 6.90581 13.1154 6.95209 13.139 7.00659C13.1625 7.0611 13.1694 7.12136 13.1587 7.17976C13.1479 7.23816 13.1201 7.29207 13.0788 7.33466L13.0778 7.33566Z",
+ fill: "currentColor",
+ ...pathProps,
+ }),
);
};
var LightningIconSolid_default = LightningIconSolid;
@@ -680,7 +583,7 @@ var LinkedinIcon = ({
// eslint-disable-next-line @typescript-eslint/no-unused-vars
height,
...props
-}) => (
+}) =>
// height is destructed and unused, scaling is defined by width
/* @__PURE__ */ React20.createElement(
"svg",
@@ -693,13 +596,19 @@ var LinkedinIcon = ({
strokeWidth: 2,
strokeLinecap: "round",
strokeLinejoin: "round",
- ...props
+ ...props,
},
- /* @__PURE__ */ React20.createElement("path", { d: "M16 8a6 6 0 016 6v7h-4v-7a2 2 0 00-2-2 2 2 0 00-2 2v7h-4v-7a6 6 0 016-6z" }),
- /* @__PURE__ */ React20.createElement("rect", { x: 2, y: 9, width: 4, height: 12 }),
- /* @__PURE__ */ React20.createElement("circle", { cx: 4, cy: 4, r: 2 })
- )
-);
+ /* @__PURE__ */ React20.createElement("path", {
+ d: "M16 8a6 6 0 016 6v7h-4v-7a2 2 0 00-2-2 2 2 0 00-2 2v7h-4v-7a6 6 0 016-6z",
+ }),
+ /* @__PURE__ */ React20.createElement("rect", {
+ x: 2,
+ y: 9,
+ width: 4,
+ height: 12,
+ }),
+ /* @__PURE__ */ React20.createElement("circle", { cx: 4, cy: 4, r: 2 }),
+ );
var LinkedinIcon_default = LinkedinIcon;
// src/icons/MicIcon.tsx
@@ -710,7 +619,7 @@ var MicIcon = ({
height,
pathProps,
...props
-}) => (
+}) =>
// height is destructed and unused, scaling is defined by width
// pathProps is destructured and unused
/* @__PURE__ */ React21.createElement(
@@ -720,36 +629,26 @@ var MicIcon = ({
viewBox: "0 0 27 27",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
- ...props
+ ...props,
},
- /* @__PURE__ */ React21.createElement(
- "path",
- {
- d: "M19.179 7.79078V12.1985C19.179 15.2414 16.7122 17.7082 13.6693 17.7082C10.6264 17.7082 8.15967 15.2414 8.15967 12.1985V7.79078C8.15967 4.74789 10.6264 2.28113 13.6693 2.28113C16.7122 2.28113 19.179 4.74789 19.179 7.79078Z",
- stroke: "currentColor",
- strokeWidth: 1.6529
- }
- ),
- /* @__PURE__ */ React21.createElement(
- "path",
- {
- d: "M19.1793 7.79077H15.8735M19.1793 12.1985H15.8735",
- stroke: "currentColor",
- strokeWidth: 1.6529,
- strokeLinecap: "round"
- }
- ),
- /* @__PURE__ */ React21.createElement(
- "path",
- {
- d: "M22.4849 12.1985C22.4849 17.0671 18.5381 21.0139 13.6695 21.0139M13.6695 21.0139C8.80081 21.0139 4.854 17.0671 4.854 12.1985M13.6695 21.0139V24.3197M13.6695 24.3197H16.9752M13.6695 24.3197H10.3637",
- stroke: "currentColor",
- strokeWidth: 1.6529,
- strokeLinecap: "round"
- }
- )
- )
-);
+ /* @__PURE__ */ React21.createElement("path", {
+ d: "M19.179 7.79078V12.1985C19.179 15.2414 16.7122 17.7082 13.6693 17.7082C10.6264 17.7082 8.15967 15.2414 8.15967 12.1985V7.79078C8.15967 4.74789 10.6264 2.28113 13.6693 2.28113C16.7122 2.28113 19.179 4.74789 19.179 7.79078Z",
+ stroke: "currentColor",
+ strokeWidth: 1.6529,
+ }),
+ /* @__PURE__ */ React21.createElement("path", {
+ d: "M19.1793 7.79077H15.8735M19.1793 12.1985H15.8735",
+ stroke: "currentColor",
+ strokeWidth: 1.6529,
+ strokeLinecap: "round",
+ }),
+ /* @__PURE__ */ React21.createElement("path", {
+ d: "M22.4849 12.1985C22.4849 17.0671 18.5381 21.0139 13.6695 21.0139M13.6695 21.0139C8.80081 21.0139 4.854 17.0671 4.854 12.1985M13.6695 21.0139V24.3197M13.6695 24.3197H16.9752M13.6695 24.3197H10.3637",
+ stroke: "currentColor",
+ strokeWidth: 1.6529,
+ strokeLinecap: "round",
+ }),
+ );
var MicIcon_default = MicIcon;
// src/icons/NightIcon.tsx
@@ -760,7 +659,7 @@ var NightIcon = ({
height,
pathProps,
...svgProps
-}) => (
+}) =>
// height is destructed and unused, scaling is defined by width
/* @__PURE__ */ React22.createElement(
"svg",
@@ -769,30 +668,21 @@ var NightIcon = ({
viewBox: "0 0 12 12",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
- ...svgProps
+ ...svgProps,
},
- /* @__PURE__ */ React22.createElement(
- "path",
- {
- d: "M11.3995 6.58487L11.3994 6.58653C11.0986 9.29321 8.79971 11.3991 6.01455 11.3991C4.57853 11.3991 3.20131 10.8286 2.18589 9.81317C1.17046 8.79775 0.6 7.42053 0.6 5.98451C0.6 3.19695 2.70595 0.901114 5.40619 0.601129C5.43566 0.599751 5.44864 0.606262 5.45316 0.608761C5.46036 0.612739 5.46925 0.620338 5.47679 0.633729C5.49367 0.663687 5.48983 0.691313 5.47637 0.711355L5.47624 0.711266L5.46876 0.722976C5.05448 1.37176 4.8131 2.15169 4.8131 2.97723L4.8131 2.97771C4.8137 3.73245 5.01715 4.47317 5.40216 5.12233C5.78717 5.77149 6.33959 6.30523 7.0016 6.6677C7.66361 7.03018 8.41088 7.20805 9.1652 7.18271C9.91757 7.15744 10.6494 6.93093 11.2844 6.52681C11.3123 6.5101 11.3278 6.50998 11.333 6.51013C11.3411 6.51036 11.3524 6.51299 11.3652 6.52137C11.3946 6.54069 11.4017 6.56622 11.3995 6.58487Z",
- fill: "none",
- stroke: "currentColor",
- ...pathProps,
- strokeWidth: "1"
- }
- )
- )
-);
+ /* @__PURE__ */ React22.createElement("path", {
+ d: "M11.3995 6.58487L11.3994 6.58653C11.0986 9.29321 8.79971 11.3991 6.01455 11.3991C4.57853 11.3991 3.20131 10.8286 2.18589 9.81317C1.17046 8.79775 0.6 7.42053 0.6 5.98451C0.6 3.19695 2.70595 0.901114 5.40619 0.601129C5.43566 0.599751 5.44864 0.606262 5.45316 0.608761C5.46036 0.612739 5.46925 0.620338 5.47679 0.633729C5.49367 0.663687 5.48983 0.691313 5.47637 0.711355L5.47624 0.711266L5.46876 0.722976C5.05448 1.37176 4.8131 2.15169 4.8131 2.97723L4.8131 2.97771C4.8137 3.73245 5.01715 4.47317 5.40216 5.12233C5.78717 5.77149 6.33959 6.30523 7.0016 6.6677C7.66361 7.03018 8.41088 7.20805 9.1652 7.18271C9.91757 7.15744 10.6494 6.93093 11.2844 6.52681C11.3123 6.5101 11.3278 6.50998 11.333 6.51013C11.3411 6.51036 11.3524 6.51299 11.3652 6.52137C11.3946 6.54069 11.4017 6.56622 11.3995 6.58487Z",
+ fill: "none",
+ stroke: "currentColor",
+ ...pathProps,
+ strokeWidth: "1",
+ }),
+ );
var NightIcon_default = NightIcon;
// src/icons/NostrIcon.tsx
import * as React23 from "react";
-var NostrIcon = ({
- width = 31,
- height,
- pathProps,
- ...props
-}) => (
+var NostrIcon = ({ width = 31, height, pathProps, ...props }) =>
// height is destructed and unused, scaling is defined by width
// pathProps is destructured and unused
/* @__PURE__ */ React23.createElement(
@@ -802,17 +692,13 @@ var NostrIcon = ({
viewBox: "0 0 31 31",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
- ...props
+ ...props,
},
- /* @__PURE__ */ React23.createElement(
- "path",
- {
- d: "M31.5 13.5114V29.8827C31.5 30.4984 31.0041 30.998 30.3929 30.998H17.1081C16.4969 30.998 16.001 30.4984 16.001 29.8827V26.8339C16.0615 23.0966 16.454 19.5166 17.2779 17.8879C17.7719 16.9084 18.5861 16.3753 19.5214 16.0901C21.2884 15.5551 24.389 15.9209 25.705 15.858C25.705 15.858 29.6803 16.0173 29.6803 13.7494C29.6803 11.924 27.9035 12.0676 27.9035 12.0676C25.9451 12.1187 24.4534 11.985 23.4869 11.6014C21.8683 10.9602 21.8136 9.78388 21.8077 9.39048C21.7277 4.8467 15.0774 4.30184 9.21796 5.42893C2.81177 6.65635 9.28825 15.9072 9.28825 28.256V29.9044C9.27653 30.5102 8.79036 31 8.18508 31H1.60707C0.995937 31 0.5 30.5004 0.5 29.8847V1.56967C0.5 0.953998 0.995937 0.454378 1.60707 0.454378H7.79067C8.40181 0.454378 8.89775 0.953998 8.89775 1.56967C8.89775 2.48433 9.91891 2.99378 10.657 2.46072C12.8809 0.855648 15.7354 0 18.9297 0C26.0857 0 31.4961 4.20152 31.4961 13.5114H31.5ZM19.6209 10.1891C19.6209 8.87119 18.5607 7.80311 17.2525 7.80311C15.9444 7.80311 14.8841 8.87119 14.8841 10.1891C14.8841 11.507 15.9444 12.5751 17.2525 12.5751C18.5607 12.5751 19.6209 11.507 19.6209 10.1891Z",
- fill: "currentColor"
- }
- )
- )
-);
+ /* @__PURE__ */ React23.createElement("path", {
+ d: "M31.5 13.5114V29.8827C31.5 30.4984 31.0041 30.998 30.3929 30.998H17.1081C16.4969 30.998 16.001 30.4984 16.001 29.8827V26.8339C16.0615 23.0966 16.454 19.5166 17.2779 17.8879C17.7719 16.9084 18.5861 16.3753 19.5214 16.0901C21.2884 15.5551 24.389 15.9209 25.705 15.858C25.705 15.858 29.6803 16.0173 29.6803 13.7494C29.6803 11.924 27.9035 12.0676 27.9035 12.0676C25.9451 12.1187 24.4534 11.985 23.4869 11.6014C21.8683 10.9602 21.8136 9.78388 21.8077 9.39048C21.7277 4.8467 15.0774 4.30184 9.21796 5.42893C2.81177 6.65635 9.28825 15.9072 9.28825 28.256V29.9044C9.27653 30.5102 8.79036 31 8.18508 31H1.60707C0.995937 31 0.5 30.5004 0.5 29.8847V1.56967C0.5 0.953998 0.995937 0.454378 1.60707 0.454378H7.79067C8.40181 0.454378 8.89775 0.953998 8.89775 1.56967C8.89775 2.48433 9.91891 2.99378 10.657 2.46072C12.8809 0.855648 15.7354 0 18.9297 0C26.0857 0 31.4961 4.20152 31.4961 13.5114H31.5ZM19.6209 10.1891C19.6209 8.87119 18.5607 7.80311 17.2525 7.80311C15.9444 7.80311 14.8841 8.87119 14.8841 10.1891C14.8841 11.507 15.9444 12.5751 17.2525 12.5751C18.5607 12.5751 19.6209 11.507 19.6209 10.1891Z",
+ fill: "currentColor",
+ }),
+ );
var NostrIcon_default = NostrIcon;
// src/icons/PlusIcon.tsx
@@ -822,7 +708,7 @@ var PlusIcon = ({
// eslint-disable-next-line @typescript-eslint/no-unused-vars
height,
...props
-}) => (
+}) =>
// height is destructed and unused, scaling is defined by width
/* @__PURE__ */ React24.createElement(
"svg",
@@ -831,19 +717,15 @@ var PlusIcon = ({
viewBox: "0 0 12 12",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
- ...props
+ ...props,
},
- /* @__PURE__ */ React24.createElement(
- "path",
- {
- d: "M1.75781 6H10.2431M6.00045 1.75736V10.2426",
- stroke: "currentColor",
- strokeWidth: "2",
- strokeLinecap: "round"
- }
- )
- )
-);
+ /* @__PURE__ */ React24.createElement("path", {
+ d: "M1.75781 6H10.2431M6.00045 1.75736V10.2426",
+ stroke: "currentColor",
+ strokeWidth: "2",
+ strokeLinecap: "round",
+ }),
+ );
var PlusIcon_default = PlusIcon;
// src/icons/SearchIcon.tsx
@@ -853,7 +735,7 @@ var SearchIcon = ({
// eslint-disable-next-line @typescript-eslint/no-unused-vars
height,
...props
-}) => (
+}) =>
// height is destructed and unused, scaling is defined by width
/* @__PURE__ */ React25.createElement(
"svg",
@@ -862,26 +744,19 @@ var SearchIcon = ({
viewBox: "0 0 20 20",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
- ...props
+ ...props,
},
- /* @__PURE__ */ React25.createElement(
- "path",
- {
- d: "M9.00001 17C13.4183 17 17 13.4183 17 9.00001C17 4.58173 13.4183 1 9.00001 1C4.58173 1 1 4.58173 1 9.00001C1 13.4183 4.58173 17 9.00001 17Z",
- stroke: "currentColor",
- strokeWidth: 2
- }
- ),
- /* @__PURE__ */ React25.createElement(
- "path",
- {
- d: "M18.9992 19.0002L14.6992 14.7002",
- stroke: "currentColor",
- strokeWidth: 2
- }
- )
- )
-);
+ /* @__PURE__ */ React25.createElement("path", {
+ d: "M9.00001 17C13.4183 17 17 13.4183 17 9.00001C17 4.58173 13.4183 1 9.00001 1C4.58173 1 1 4.58173 1 9.00001C1 13.4183 4.58173 17 9.00001 17Z",
+ stroke: "currentColor",
+ strokeWidth: 2,
+ }),
+ /* @__PURE__ */ React25.createElement("path", {
+ d: "M18.9992 19.0002L14.6992 14.7002",
+ stroke: "currentColor",
+ strokeWidth: 2,
+ }),
+ );
var SearchIcon_default = SearchIcon;
// src/icons/SortIcon.tsx
@@ -891,7 +766,7 @@ var SortIcon = ({
// eslint-disable-next-line @typescript-eslint/no-unused-vars
height,
...props
-}) => (
+}) =>
// height is destructed and unused, scaling is defined by width
/* @__PURE__ */ React26.createElement(
"svg",
@@ -900,55 +775,39 @@ var SortIcon = ({
viewBox: "0 0 20 20",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
- ...props
+ ...props,
},
- /* @__PURE__ */ React26.createElement(
- "path",
- {
- fillRule: "evenodd",
- clipRule: "evenodd",
- d: "M10.2928 8.35991C10.1053 8.17239 10 7.91808 10 7.65291C10 7.38775 10.1053 7.13344 10.2928 6.94591L13.2928 3.94591C13.385 3.8504 13.4954 3.77422 13.6174 3.72181C13.7394 3.6694 13.8706 3.64182 14.0034 3.64066C14.1362 3.63951 14.2678 3.66481 14.3907 3.71509C14.5136 3.76537 14.6253 3.83963 14.7192 3.93352C14.8131 4.02741 14.8873 4.13906 14.9376 4.26196C14.9879 4.38486 15.0132 4.51654 15.012 4.64931C15.0109 4.78209 14.9833 4.91331 14.9309 5.03532C14.8785 5.15732 14.8023 5.26767 14.7068 5.35991L11.7068 8.35991C11.5193 8.54738 11.265 8.6527 10.9998 8.6527C10.7346 8.6527 10.4803 8.54738 10.2928 8.35991Z",
- fill: "currentColor"
- }
- ),
- /* @__PURE__ */ React26.createElement(
- "path",
- {
- fillRule: "evenodd",
- clipRule: "evenodd",
- d: "M17.7064 8.35877C17.5189 8.54625 17.2646 8.65156 16.9994 8.65156C16.7343 8.65156 16.48 8.54625 16.2924 8.35877L13.2924 5.35877C13.1103 5.17017 13.0095 4.91757 13.0118 4.65537C13.014 4.39318 13.1192 4.14236 13.3046 3.95696C13.49 3.77155 13.7408 3.66638 14.003 3.6641C14.2652 3.66182 14.5178 3.76262 14.7064 3.94477L17.7064 6.94477C17.8939 7.1323 17.9992 7.38661 17.9992 7.65177C17.9992 7.91694 17.8939 8.17125 17.7064 8.35877Z",
- fill: "currentColor"
- }
- ),
- /* @__PURE__ */ React26.createElement(
- "path",
- {
- fillRule: "evenodd",
- clipRule: "evenodd",
- d: "M13.9994 5.65234C14.2646 5.65234 14.519 5.7577 14.7065 5.94524C14.8941 6.13277 14.9994 6.38713 14.9994 6.65234V14.6523C14.9994 14.9176 14.8941 15.1719 14.7065 15.3595C14.519 15.547 14.2646 15.6523 13.9994 15.6523C13.7342 15.6523 13.4799 15.547 13.2923 15.3595C13.1048 15.1719 12.9994 14.9176 12.9994 14.6523V6.65234C12.9994 6.38713 13.1048 6.13277 13.2923 5.94524C13.4799 5.7577 13.7342 5.65234 13.9994 5.65234ZM9.70643 12.9453C9.8939 13.1329 9.99922 13.3872 9.99922 13.6523C9.99922 13.9175 9.8939 14.1718 9.70643 14.3593L6.70643 17.3593C6.51783 17.5415 6.26523 17.6423 6.00303 17.64C5.74083 17.6377 5.49002 17.5326 5.30461 17.3472C5.1192 17.1618 5.01403 16.9109 5.01176 16.6487C5.00948 16.3865 5.11027 16.1339 5.29243 15.9453L8.29243 12.9453C8.47996 12.7579 8.73427 12.6526 8.99943 12.6526C9.2646 12.6526 9.5189 12.7579 9.70643 12.9453Z",
- fill: "currentColor"
- }
- ),
- /* @__PURE__ */ React26.createElement(
- "path",
- {
- fillRule: "evenodd",
- clipRule: "evenodd",
- d: "M2.29279 12.9451C2.48031 12.7577 2.73462 12.6523 2.99979 12.6523C3.26495 12.6523 3.51926 12.7577 3.70679 12.9451L6.70679 15.9451C6.8023 16.0374 6.87848 16.1477 6.93089 16.2697C6.9833 16.3917 7.01088 16.5229 7.01204 16.6557C7.01319 16.7885 6.98789 16.9202 6.93761 17.0431C6.88733 17.166 6.81307 17.2776 6.71918 17.3715C6.62529 17.4654 6.51364 17.5397 6.39074 17.59C6.26784 17.6402 6.13616 17.6655 6.00339 17.6644C5.87061 17.6632 5.73939 17.6356 5.61738 17.5832C5.49538 17.5308 5.38503 17.4546 5.29279 17.3591L2.29279 14.3591C2.10532 14.1716 2 13.9173 2 13.6521C2 13.387 2.10532 13.1327 2.29279 12.9451Z",
- fill: "currentColor"
- }
- ),
- /* @__PURE__ */ React26.createElement(
- "path",
- {
- fillRule: "evenodd",
- clipRule: "evenodd",
- d: "M6 15.6523C5.73478 15.6523 5.48043 15.547 5.29289 15.3595C5.10536 15.1719 5 14.9176 5 14.6523V6.65234C5 6.38713 5.10536 6.13277 5.29289 5.94524C5.48043 5.7577 5.73478 5.65234 6 5.65234C6.26522 5.65234 6.51957 5.7577 6.70711 5.94524C6.89464 6.13277 7 6.38713 7 6.65234V14.6523C7 14.9176 6.89464 15.1719 6.70711 15.3595C6.51957 15.547 6.26522 15.6523 6 15.6523Z",
- fill: "currentColor"
- }
- )
- )
-);
+ /* @__PURE__ */ React26.createElement("path", {
+ fillRule: "evenodd",
+ clipRule: "evenodd",
+ d: "M10.2928 8.35991C10.1053 8.17239 10 7.91808 10 7.65291C10 7.38775 10.1053 7.13344 10.2928 6.94591L13.2928 3.94591C13.385 3.8504 13.4954 3.77422 13.6174 3.72181C13.7394 3.6694 13.8706 3.64182 14.0034 3.64066C14.1362 3.63951 14.2678 3.66481 14.3907 3.71509C14.5136 3.76537 14.6253 3.83963 14.7192 3.93352C14.8131 4.02741 14.8873 4.13906 14.9376 4.26196C14.9879 4.38486 15.0132 4.51654 15.012 4.64931C15.0109 4.78209 14.9833 4.91331 14.9309 5.03532C14.8785 5.15732 14.8023 5.26767 14.7068 5.35991L11.7068 8.35991C11.5193 8.54738 11.265 8.6527 10.9998 8.6527C10.7346 8.6527 10.4803 8.54738 10.2928 8.35991Z",
+ fill: "currentColor",
+ }),
+ /* @__PURE__ */ React26.createElement("path", {
+ fillRule: "evenodd",
+ clipRule: "evenodd",
+ d: "M17.7064 8.35877C17.5189 8.54625 17.2646 8.65156 16.9994 8.65156C16.7343 8.65156 16.48 8.54625 16.2924 8.35877L13.2924 5.35877C13.1103 5.17017 13.0095 4.91757 13.0118 4.65537C13.014 4.39318 13.1192 4.14236 13.3046 3.95696C13.49 3.77155 13.7408 3.66638 14.003 3.6641C14.2652 3.66182 14.5178 3.76262 14.7064 3.94477L17.7064 6.94477C17.8939 7.1323 17.9992 7.38661 17.9992 7.65177C17.9992 7.91694 17.8939 8.17125 17.7064 8.35877Z",
+ fill: "currentColor",
+ }),
+ /* @__PURE__ */ React26.createElement("path", {
+ fillRule: "evenodd",
+ clipRule: "evenodd",
+ d: "M13.9994 5.65234C14.2646 5.65234 14.519 5.7577 14.7065 5.94524C14.8941 6.13277 14.9994 6.38713 14.9994 6.65234V14.6523C14.9994 14.9176 14.8941 15.1719 14.7065 15.3595C14.519 15.547 14.2646 15.6523 13.9994 15.6523C13.7342 15.6523 13.4799 15.547 13.2923 15.3595C13.1048 15.1719 12.9994 14.9176 12.9994 14.6523V6.65234C12.9994 6.38713 13.1048 6.13277 13.2923 5.94524C13.4799 5.7577 13.7342 5.65234 13.9994 5.65234ZM9.70643 12.9453C9.8939 13.1329 9.99922 13.3872 9.99922 13.6523C9.99922 13.9175 9.8939 14.1718 9.70643 14.3593L6.70643 17.3593C6.51783 17.5415 6.26523 17.6423 6.00303 17.64C5.74083 17.6377 5.49002 17.5326 5.30461 17.3472C5.1192 17.1618 5.01403 16.9109 5.01176 16.6487C5.00948 16.3865 5.11027 16.1339 5.29243 15.9453L8.29243 12.9453C8.47996 12.7579 8.73427 12.6526 8.99943 12.6526C9.2646 12.6526 9.5189 12.7579 9.70643 12.9453Z",
+ fill: "currentColor",
+ }),
+ /* @__PURE__ */ React26.createElement("path", {
+ fillRule: "evenodd",
+ clipRule: "evenodd",
+ d: "M2.29279 12.9451C2.48031 12.7577 2.73462 12.6523 2.99979 12.6523C3.26495 12.6523 3.51926 12.7577 3.70679 12.9451L6.70679 15.9451C6.8023 16.0374 6.87848 16.1477 6.93089 16.2697C6.9833 16.3917 7.01088 16.5229 7.01204 16.6557C7.01319 16.7885 6.98789 16.9202 6.93761 17.0431C6.88733 17.166 6.81307 17.2776 6.71918 17.3715C6.62529 17.4654 6.51364 17.5397 6.39074 17.59C6.26784 17.6402 6.13616 17.6655 6.00339 17.6644C5.87061 17.6632 5.73939 17.6356 5.61738 17.5832C5.49538 17.5308 5.38503 17.4546 5.29279 17.3591L2.29279 14.3591C2.10532 14.1716 2 13.9173 2 13.6521C2 13.387 2.10532 13.1327 2.29279 12.9451Z",
+ fill: "currentColor",
+ }),
+ /* @__PURE__ */ React26.createElement("path", {
+ fillRule: "evenodd",
+ clipRule: "evenodd",
+ d: "M6 15.6523C5.73478 15.6523 5.48043 15.547 5.29289 15.3595C5.10536 15.1719 5 14.9176 5 14.6523V6.65234C5 6.38713 5.10536 6.13277 5.29289 5.94524C5.48043 5.7577 5.73478 5.65234 6 5.65234C6.26522 5.65234 6.51957 5.7577 6.70711 5.94524C6.89464 6.13277 7 6.38713 7 6.65234V14.6523C7 14.9176 6.89464 15.1719 6.70711 15.3595C6.51957 15.547 6.26522 15.6523 6 15.6523Z",
+ fill: "currentColor",
+ }),
+ );
var SortIcon_default = SortIcon;
// src/icons/SourceIcon.tsx
@@ -958,7 +817,7 @@ var SourceIcon = ({
// eslint-disable-next-line @typescript-eslint/no-unused-vars
height,
...props
-}) => (
+}) =>
// height is destructed and unused, scaling is defined by width
/* @__PURE__ */ React27.createElement(
"svg",
@@ -967,17 +826,13 @@ var SourceIcon = ({
viewBox: "0 0 20 20",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
- ...props
+ ...props,
},
- /* @__PURE__ */ React27.createElement(
- "path",
- {
- d: "M16.6641 5.65104H9.9974L8.33073 3.98438H3.33073C2.41406 3.98438 1.6724 4.73437 1.6724 5.65104L1.66406 15.651C1.66406 16.5677 2.41406 17.3177 3.33073 17.3177H16.6641C17.5807 17.3177 18.3307 16.5677 18.3307 15.651V7.31771C18.3307 6.40104 17.5807 5.65104 16.6641 5.65104ZM11.6641 13.9844H4.9974V12.3177H11.6641V13.9844ZM14.9974 10.651H4.9974V8.98438H14.9974V10.651Z",
- fill: "currentColor"
- }
- )
- )
-);
+ /* @__PURE__ */ React27.createElement("path", {
+ d: "M16.6641 5.65104H9.9974L8.33073 3.98438H3.33073C2.41406 3.98438 1.6724 4.73437 1.6724 5.65104L1.66406 15.651C1.66406 16.5677 2.41406 17.3177 3.33073 17.3177H16.6641C17.5807 17.3177 18.3307 16.5677 18.3307 15.651V7.31771C18.3307 6.40104 17.5807 5.65104 16.6641 5.65104ZM11.6641 13.9844H4.9974V12.3177H11.6641V13.9844ZM14.9974 10.651H4.9974V8.98438H14.9974V10.651Z",
+ fill: "currentColor",
+ }),
+ );
var SourceIcon_default = SourceIcon;
// src/icons/TimeIcon.tsx
@@ -987,7 +842,7 @@ var TimeIcon = ({
// eslint-disable-next-line @typescript-eslint/no-unused-vars
height,
...props
-}) => (
+}) =>
// height is destructed and unused, scaling is defined by width
/* @__PURE__ */ React28.createElement(
"svg",
@@ -996,27 +851,18 @@ var TimeIcon = ({
viewBox: "0 0 14 14",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
- ...props
+ ...props,
},
- /* @__PURE__ */ React28.createElement(
- "path",
- {
- d: "M6.9987 0.333984C10.6807 0.333984 13.6654 3.31865 13.6654 7.00065C13.6654 10.6826 10.6807 13.6673 6.9987 13.6673C3.3167 13.6673 0.332031 10.6826 0.332031 7.00065C0.332031 3.31865 3.3167 0.333984 6.9987 0.333984ZM6.9987 1.66732C5.58421 1.66732 4.22766 2.22922 3.22746 3.22941C2.22727 4.22961 1.66536 5.58616 1.66536 7.00065C1.66536 8.41514 2.22727 9.77169 3.22746 10.7719C4.22766 11.7721 5.58421 12.334 6.9987 12.334C8.41319 12.334 9.76974 11.7721 10.7699 10.7719C11.7701 9.77169 12.332 8.41514 12.332 7.00065C12.332 5.58616 11.7701 4.22961 10.7699 3.22941C9.76974 2.22922 8.41319 1.66732 6.9987 1.66732ZM6.9987 3.00065C7.16199 3.00067 7.31959 3.06062 7.44161 3.16913C7.56363 3.27763 7.64159 3.42715 7.6607 3.58932L7.66536 3.66732V6.72465L9.47003 8.52932C9.58959 8.64929 9.65901 8.81027 9.66418 8.97957C9.66935 9.14887 9.60989 9.31379 9.49786 9.44083C9.38584 9.56788 9.22966 9.64752 9.06105 9.66358C8.89243 9.67964 8.72402 9.63092 8.59003 9.52732L8.52736 9.47198L6.52736 7.47198C6.42375 7.36828 6.35721 7.23332 6.33803 7.08798L6.33203 7.00065V3.66732C6.33203 3.49051 6.40227 3.32094 6.52729 3.19591C6.65232 3.07089 6.82189 3.00065 6.9987 3.00065Z",
- fill: "currentColor"
- }
- )
- )
-);
+ /* @__PURE__ */ React28.createElement("path", {
+ d: "M6.9987 0.333984C10.6807 0.333984 13.6654 3.31865 13.6654 7.00065C13.6654 10.6826 10.6807 13.6673 6.9987 13.6673C3.3167 13.6673 0.332031 10.6826 0.332031 7.00065C0.332031 3.31865 3.3167 0.333984 6.9987 0.333984ZM6.9987 1.66732C5.58421 1.66732 4.22766 2.22922 3.22746 3.22941C2.22727 4.22961 1.66536 5.58616 1.66536 7.00065C1.66536 8.41514 2.22727 9.77169 3.22746 10.7719C4.22766 11.7721 5.58421 12.334 6.9987 12.334C8.41319 12.334 9.76974 11.7721 10.7699 10.7719C11.7701 9.77169 12.332 8.41514 12.332 7.00065C12.332 5.58616 11.7701 4.22961 10.7699 3.22941C9.76974 2.22922 8.41319 1.66732 6.9987 1.66732ZM6.9987 3.00065C7.16199 3.00067 7.31959 3.06062 7.44161 3.16913C7.56363 3.27763 7.64159 3.42715 7.6607 3.58932L7.66536 3.66732V6.72465L9.47003 8.52932C9.58959 8.64929 9.65901 8.81027 9.66418 8.97957C9.66935 9.14887 9.60989 9.31379 9.49786 9.44083C9.38584 9.56788 9.22966 9.64752 9.06105 9.66358C8.89243 9.67964 8.72402 9.63092 8.59003 9.52732L8.52736 9.47198L6.52736 7.47198C6.42375 7.36828 6.35721 7.23332 6.33803 7.08798L6.33203 7.00065V3.66732C6.33203 3.49051 6.40227 3.32094 6.52729 3.19591C6.65232 3.07089 6.82189 3.00065 6.9987 3.00065Z",
+ fill: "currentColor",
+ }),
+ );
var TimeIcon_default = TimeIcon;
// src/icons/TwitterXIcon.tsx
import * as React29 from "react";
-var TwitterXIcon = ({
- width = 37,
- height,
- pathProps,
- ...props
-}) => (
+var TwitterXIcon = ({ width = 37, height, pathProps, ...props }) =>
// height is destructed and unused, scaling is defined by width
// pathProps is destructured and unused
/* @__PURE__ */ React29.createElement(
@@ -1026,17 +872,13 @@ var TwitterXIcon = ({
viewBox: "0 0 37 37",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
- ...props
+ ...props,
},
- /* @__PURE__ */ React29.createElement(
- "path",
- {
- d: "M28.5659 3.46875H33.6657L22.5241 16.2029L35.6313 33.5312H25.3685L17.3302 23.0217L8.13271 33.5312H3.0298L14.9469 19.9106L2.37305 3.46875H12.8965L20.1623 13.0749L28.5659 3.46875ZM26.776 30.4788H29.6019L11.361 6.36092H8.3285L26.776 30.4788Z",
- fill: "currentColor"
- }
- )
- )
-);
+ /* @__PURE__ */ React29.createElement("path", {
+ d: "M28.5659 3.46875H33.6657L22.5241 16.2029L35.6313 33.5312H25.3685L17.3302 23.0217L8.13271 33.5312H3.0298L14.9469 19.9106L2.37305 3.46875H12.8965L20.1623 13.0749L28.5659 3.46875ZM26.776 30.4788H29.6019L11.361 6.36092H8.3285L26.776 30.4788Z",
+ fill: "currentColor",
+ }),
+ );
var TwitterXIcon_default = TwitterXIcon;
export {
AppsIcon_default as AppsIcon,
@@ -1067,6 +909,6 @@ export {
SortIcon_default as SortIcon,
SourceIcon_default as SourceIcon,
TimeIcon_default as TimeIcon,
- TwitterXIcon_default as TwitterXIcon
+ TwitterXIcon_default as TwitterXIcon,
};
-//# sourceMappingURL=icons.mjs.map
\ No newline at end of file
+//# sourceMappingURL=icons.mjs.map
diff --git a/dist/index.d.mts b/dist/index.d.mts
index 0ff600f..e076838 100644
--- a/dist/index.d.mts
+++ b/dist/index.d.mts
@@ -1,251 +1,309 @@
-import React__default from 'react';
+import React__default from "react";
interface ButtonProps {
- label: string;
- onClick?: () => void;
- variant?: "primary" | "secondary";
- size?: "small" | "medium" | "large";
- disabled?: boolean;
+ label: string;
+ onClick?: () => void;
+ variant?: "primary" | "secondary";
+ size?: "small" | "medium" | "large";
+ disabled?: boolean;
}
declare const Button: React__default.FC;
interface FooterPartsPrimitiveProps extends React.HTMLAttributes {
- className?: string;
+ className?: string;
}
interface FooterAboutProps extends FooterPartsPrimitiveProps {
- entityLink?: string;
- entityName?: string;
- entityText?: string;
+ entityLink?: string;
+ entityName?: string;
+ entityText?: string;
}
-interface FooterFeedbackProps extends FooterPartsPrimitiveProps {
- feedbackLink: string;
- entityText?: string;
- entityCtaText?: string;
+interface FooterFeedbackProps
+ extends FooterPartsPrimitiveProps {
+ feedbackLink: string;
+ entityText?: string;
+ entityCtaText?: string;
}
-type SupportedSocialMedia = "twitter" | "github" | "discord" | "nostr" | "linkedin";
+type SupportedSocialMedia =
+ | "twitter"
+ | "github"
+ | "discord"
+ | "nostr"
+ | "linkedin";
type MandatorySocialMediaProps = {
- entityLink: string;
- iconProps?: React__default.SVGProps;
+ entityLink: string;
+ iconProps?: React__default.SVGProps;
} & T;
-type SocialMediaProps = MandatorySocialMediaProps<{
- entity: SupportedSocialMedia;
- icon?: React__default.ReactElement;
-}> | MandatorySocialMediaProps<{
- entity: Exclude;
- icon: React__default.ReactElement;
-}>;
+type SocialMediaProps =
+ | MandatorySocialMediaProps<{
+ entity: SupportedSocialMedia;
+ icon?: React__default.ReactElement;
+ }>
+ | MandatorySocialMediaProps<{
+ entity: Exclude;
+ icon: React__default.ReactElement;
+ }>;
interface FooterSocialsProps extends FooterPartsPrimitiveProps {
- platforms: SocialMediaProps[];
+ platforms: SocialMediaProps[];
}
-interface FooterPublicProps extends FooterPartsPrimitiveProps {
- dashboardLink: string;
- entityText?: string;
+interface FooterPublicProps
+ extends FooterPartsPrimitiveProps {
+ dashboardLink: string;
+ entityText?: string;
}
interface FooterRootProps extends FooterPartsPrimitiveProps {
- separator?: React__default.ReactElement;
+ separator?: React__default.ReactElement;
}
declare const Separator: () => React__default.JSX.Element;
declare const Footer: React__default.FC & {
- About: React__default.FC;
- Feedback: React__default.FC;
- Socials: React__default.FC;
- Public: React__default.FC;
+ About: React__default.FC;
+ Feedback: React__default.FC;
+ Socials: React__default.FC;
+ Public: React__default.FC;
};
type CarouselConfig = {
- stepWidthInPercent: number;
+ stepWidthInPercent: number;
};
interface ComponentStylePrimitiveProps extends React.HTMLAttributes {
- className?: string;
+ className?: string;
}
-interface CarouselContainerProps extends ComponentStylePrimitiveProps {
- children: React__default.ReactNode;
+interface CarouselContainerProps
+ extends ComponentStylePrimitiveProps {
+ children: React__default.ReactNode;
}
type CarouselItemProps = CarouselContainerProps;
-interface CarouselControlProps extends ComponentStylePrimitiveProps {
- children: React__default.ReactNode;
+interface CarouselControlProps
+ extends ComponentStylePrimitiveProps {
+ children: React__default.ReactNode;
}
-interface CarouselButtonProps extends Omit, "children"> {
- children?: React__default.ReactNode | ((goToPreviousSlide: () => void, possibleDirection: CarouselContextType["possibleDirection"]) => React__default.ReactNode);
- icon: React__default.ReactNode;
+interface CarouselButtonProps
+ extends Omit, "children"> {
+ children?:
+ | React__default.ReactNode
+ | ((
+ goToPreviousSlide: () => void,
+ possibleDirection: CarouselContextType["possibleDirection"],
+ ) => React__default.ReactNode);
+ icon: React__default.ReactNode;
}
interface CarouselContextType {
- containerRef: React__default.RefObject;
- totalCarouselItems: number;
- goToNextSlide: () => void;
- goToPreviousSlide: () => void;
- possibleDirection: {
- canGoToNextSlide: boolean;
- canGoToPreviousSlide: boolean;
- };
+ containerRef: React__default.RefObject;
+ totalCarouselItems: number;
+ goToNextSlide: () => void;
+ goToPreviousSlide: () => void;
+ possibleDirection: {
+ canGoToNextSlide: boolean;
+ canGoToPreviousSlide: boolean;
+ };
}
interface CarouselProviderProps {
- children: React__default.ReactNode;
- containerRef: React__default.RefObject;
- config?: CarouselConfig;
+ children: React__default.ReactNode;
+ containerRef: React__default.RefObject;
+ config?: CarouselConfig;
}
-declare const Carousel: React__default.FC> & {
- Container: React__default.FC;
- Item: React__default.FC;
- Controls: React__default.FC;
- PreviousButton: React__default.FC;
- NextButton: React__default.FC;
+declare const Carousel: React__default.FC<
+ Omit
+> & {
+ Container: React__default.FC;
+ Item: React__default.FC;
+ Controls: React__default.FC;
+ PreviousButton: React__default.FC;
+ NextButton: React__default.FC;
};
type StyleConfig$4 = {
- container?: string;
- input?: string;
- searchIcon?: string;
- searchIconWrapper?: string;
- arrowIcon?: string;
- arrowIconWrapper?: string;
+ container?: string;
+ input?: string;
+ searchIcon?: string;
+ searchIconWrapper?: string;
+ arrowIcon?: string;
+ arrowIconWrapper?: string;
};
type SelectInputProps = {
- defaultPlaceholder: string;
- className?: string;
- styles?: StyleConfig$4;
+ defaultPlaceholder: string;
+ className?: string;
+ styles?: StyleConfig$4;
};
type BaseSelectContextTypeForList = {
- isListOpen: boolean;
- currentNavigateCheckbox: string;
- containerRef: React__default.MutableRefObject | null;
+ isListOpen: boolean;
+ currentNavigateCheckbox: string;
+ containerRef: React__default.MutableRefObject | null;
};
type SelectOption = {
- label: string;
- count?: number;
- value: string;
- selected: boolean;
+ label: string;
+ count?: number;
+ value: string;
+ selected: boolean;
};
type StyleConfig$3 = {
- container?: string;
- optionWrapper?: string;
- selectedOption?: string;
- optionInner?: string;
- icon?: string;
- label?: string;
- count?: string;
- noResults?: string;
-};
-type OnOptionSelect = ({ action, value, event, }: {
- action: "select" | "deselect";
- value: string;
- event: React__default.MouseEvent;
+ container?: string;
+ optionWrapper?: string;
+ selectedOption?: string;
+ optionInner?: string;
+ icon?: string;
+ label?: string;
+ count?: string;
+ noResults?: string;
+};
+type OnOptionSelect = ({
+ action,
+ value,
+ event,
+}: {
+ action: "select" | "deselect";
+ value: string;
+ event: React__default.MouseEvent;
}) => void;
type SelectListProps = {
- options: SelectOption[];
- label: string;
- onOptionSelect: OnOptionSelect;
- className?: string;
- styles?: StyleConfig$3;
- noResultsMessage?: string;
- selectContextData: BaseSelectContextTypeForList;
+ options: SelectOption[];
+ label: string;
+ onOptionSelect: OnOptionSelect;
+ className?: string;
+ styles?: StyleConfig$3;
+ noResultsMessage?: string;
+ selectContextData: BaseSelectContextTypeForList;
};
type MultiSelectListProps = Omit;
type SelectContextType$1 = {
- containerRef: React__default.MutableRefObject | null;
- setContainerRef: React__default.Dispatch | null>>;
- searchInputRef: React__default.MutableRefObject | null;
- setSearchInputRef: React__default.Dispatch | null>>;
- isListOpen: boolean;
- toggleListOpen: () => void;
- currentNavigateCheckbox: string;
- toggleRefocus: () => void;
- onSearch: (value: string) => void;
- inputValue: string;
+ containerRef: React__default.MutableRefObject | null;
+ setContainerRef: React__default.Dispatch<
+ React__default.SetStateAction | null>
+ >;
+ searchInputRef: React__default.MutableRefObject | null;
+ setSearchInputRef: React__default.Dispatch<
+ React__default.SetStateAction | null>
+ >;
+ isListOpen: boolean;
+ toggleListOpen: () => void;
+ currentNavigateCheckbox: string;
+ toggleRefocus: () => void;
+ onSearch: (value: string) => void;
+ inputValue: string;
};
type SelectProviderProps = {
- children: React__default.ReactNode;
- isCollapsible?: boolean;
+ children: React__default.ReactNode;
+ isCollapsible?: boolean;
};
declare const useMultiSelect: () => SelectContextType$1;
-declare const MultiSelectProvider: ({ children, isCollapsible, }: SelectProviderProps) => React__default.JSX.Element;
+declare const MultiSelectProvider: ({
+ children,
+ isCollapsible,
+}: SelectProviderProps) => React__default.JSX.Element;
declare const MultiSelect: React__default.FC & {
- Input: React__default.FC;
- List: React__default.FC;
+ Input: React__default.FC;
+ List: React__default.FC;
};
type SingleSelectOption = {
- label: string;
- value: string;
+ label: string;
+ value: string;
};
type OptionSelectHandler = (option: SingleSelectOption) => void;
-type SingleSelectListProps = Omit & {
- options: SingleSelectOption[];
- value: string;
- onOptionSelect: OptionSelectHandler;
+type SingleSelectListProps = Omit<
+ SelectListProps,
+ "selectContextData" | "options" | "onOptionSelect"
+> & {
+ options: SingleSelectOption[];
+ value: string;
+ onOptionSelect: OptionSelectHandler;
};
type StyleConfig$2 = {
- container?: string;
- trigger?: string;
- arrowIcon?: string;
- arrowIconWrapper?: string;
+ container?: string;
+ trigger?: string;
+ arrowIcon?: string;
+ arrowIconWrapper?: string;
};
type SingleSelectTriggerProps = {
- defaultPlaceholder: string;
- className?: string;
- styles?: StyleConfig$2;
+ defaultPlaceholder: string;
+ className?: string;
+ styles?: StyleConfig$2;
};
type StyleConfig$1 = {
- container?: string;
- input?: string;
- list?: string;
- option?: string;
+ container?: string;
+ input?: string;
+ list?: string;
+ option?: string;
};
type SelectContextType = {
- isListOpen: boolean;
- toggleListOpen: () => void;
- selectedOption: SingleSelectOption | null;
- setSelectedOption: (option: SingleSelectOption | null) => void;
- containerRef: React__default.MutableRefObject | null;
- setContainerRef: React__default.Dispatch | null>>;
- handleSelectOption: (option: SingleSelectOption) => void;
- triggerRef: React__default.RefObject;
+ isListOpen: boolean;
+ toggleListOpen: () => void;
+ selectedOption: SingleSelectOption | null;
+ setSelectedOption: (option: SingleSelectOption | null) => void;
+ containerRef: React__default.MutableRefObject | null;
+ setContainerRef: React__default.Dispatch<
+ React__default.SetStateAction | null>
+ >;
+ handleSelectOption: (option: SingleSelectOption) => void;
+ triggerRef: React__default.RefObject;
};
declare const useSingleSelect: () => SelectContextType;
type SingleSelectProviderProps = {
- children: React__default.ReactNode;
- triggerRef: React__default.RefObject;
- className?: string;
- styles?: StyleConfig$1;
- disabled?: boolean;
+ children: React__default.ReactNode;
+ triggerRef: React__default.RefObject;
+ className?: string;
+ styles?: StyleConfig$1;
+ disabled?: boolean;
};
-declare const SingleSelect: React__default.FC> & {
- List: React__default.FC;
- Trigger: React__default.FC;
+declare const SingleSelect: React__default.FC<
+ Omit
+> & {
+ List: React__default.FC;
+ Trigger: React__default.FC;
};
type StyleConfig = {
- container?: string;
- bannerInfoContainer?: string;
- bodyText?: string;
- headingText?: string;
- link?: string;
- icon?: string;
- boss?: string;
+ container?: string;
+ bannerInfoContainer?: string;
+ bodyText?: string;
+ headingText?: string;
+ link?: string;
+ icon?: string;
+ boss?: string;
};
type Links = {
- linkText: string;
- linkTo: string;
+ linkText: string;
+ linkTo: string;
};
type Props = Links & {
- bodyText?: string;
- headingText: string;
- styles?: StyleConfig;
- hasBoss?: boolean;
+ bodyText?: string;
+ headingText: string;
+ styles?: StyleConfig;
+ hasBoss?: boolean;
};
-declare function Banner({ bodyText, headingText, styles, hasBoss, ...rest }: Props): React__default.JSX.Element;
+declare function Banner({
+ bodyText,
+ headingText,
+ styles,
+ hasBoss,
+ ...rest
+}: Props): React__default.JSX.Element;
-export { Banner, Button, type ButtonProps, Carousel, type CarouselContextType, Footer, type FooterRootProps, MultiSelect, MultiSelectProvider, type SelectContextType$1 as SelectContextType, Separator, SingleSelect, useMultiSelect, useSingleSelect };
+export {
+ Banner,
+ Button,
+ type ButtonProps,
+ Carousel,
+ type CarouselContextType,
+ Footer,
+ type FooterRootProps,
+ MultiSelect,
+ MultiSelectProvider,
+ type SelectContextType$1 as SelectContextType,
+ Separator,
+ SingleSelect,
+ useMultiSelect,
+ useSingleSelect,
+};
diff --git a/dist/index.d.ts b/dist/index.d.ts
index 0ff600f..e076838 100644
--- a/dist/index.d.ts
+++ b/dist/index.d.ts
@@ -1,251 +1,309 @@
-import React__default from 'react';
+import React__default from "react";
interface ButtonProps {
- label: string;
- onClick?: () => void;
- variant?: "primary" | "secondary";
- size?: "small" | "medium" | "large";
- disabled?: boolean;
+ label: string;
+ onClick?: () => void;
+ variant?: "primary" | "secondary";
+ size?: "small" | "medium" | "large";
+ disabled?: boolean;
}
declare const Button: React__default.FC;
interface FooterPartsPrimitiveProps extends React.HTMLAttributes {
- className?: string;
+ className?: string;
}
interface FooterAboutProps extends FooterPartsPrimitiveProps {
- entityLink?: string;
- entityName?: string;
- entityText?: string;
+ entityLink?: string;
+ entityName?: string;
+ entityText?: string;
}
-interface FooterFeedbackProps extends FooterPartsPrimitiveProps {
- feedbackLink: string;
- entityText?: string;
- entityCtaText?: string;
+interface FooterFeedbackProps
+ extends FooterPartsPrimitiveProps {
+ feedbackLink: string;
+ entityText?: string;
+ entityCtaText?: string;
}
-type SupportedSocialMedia = "twitter" | "github" | "discord" | "nostr" | "linkedin";
+type SupportedSocialMedia =
+ | "twitter"
+ | "github"
+ | "discord"
+ | "nostr"
+ | "linkedin";
type MandatorySocialMediaProps = {
- entityLink: string;
- iconProps?: React__default.SVGProps