instruction stringlengths 0 1k | input stringlengths 1 1k | output stringlengths 10 6.51k |
|---|---|---|
from reflex.utils.format import to_snake_case, to_title_case
from ..state import SideBarItem
def get_component_link(category, clist, prefix="") -> str:
component_name = rx.utils.format.to_kebab_case(clist[0])
# construct the component link. The component name points to the name of the md file.
return f"/docs/library/{prefix.strip('/') + '/' if prefix.strip('/') else ''}{category.lower().replace(' ', '-')}/{component_name.lower()}"
def get_category_children(category, category_list, prefix=""):
category = category.replace("-", " ")
if isinstance(category_list, dict):
return SideBarItem(
names=category,
children=[
get_category_children(c, category_list[c]) for c in category_list
],
)
category_item_children = []
category_item_children.append(
SideBarItem(
names="Overview",
link=f"/docs/library/{prefix if prefix else ''}{category.lower().replace(' ', '-')}/", | import reflex as rx | |
import reflex as rx
|
from ..state import SideBarItem
def get_component_link(category, clist, prefix="") -> str:
component_name = rx.utils.format.to_kebab_case(clist[0])
# construct the component link. The component name points to the name of the md file.
return f"/docs/library/{prefix.strip('/') + '/' if prefix.strip('/') else ''}{category.lower().replace(' ', '-')}/{component_name.lower()}"
def get_category_children(category, category_list, prefix=""):
category = category.replace("-", " ")
if isinstance(category_list, dict):
return SideBarItem(
names=category,
children=[
get_category_children(c, category_list[c]) for c in category_list
],
)
category_item_children = []
category_item_children.append(
SideBarItem(
names="Overview",
link=f"/docs/library/{prefix if prefix else ''}{category.lower().replace(' ', '-')}/",
)
)
for c in category_list:
componen | from reflex.utils.format import to_snake_case, to_title_case |
import reflex as rx
from reflex.utils.format import to_snake_case, to_title_case
|
def get_component_link(category, clist, prefix="") -> str:
component_name = rx.utils.format.to_kebab_case(clist[0])
# construct the component link. The component name points to the name of the md file.
return f"/docs/library/{prefix.strip('/') + '/' if prefix.strip('/') else ''}{category.lower().replace(' ', '-')}/{component_name.lower()}"
def get_category_children(category, category_list, prefix=""):
category = category.replace("-", " ")
if isinstance(category_list, dict):
return SideBarItem(
names=category,
children=[
get_category_children(c, category_list[c]) for c in category_list
],
)
category_item_children = []
category_item_children.append(
SideBarItem(
names="Overview",
link=f"/docs/library/{prefix if prefix else ''}{category.lower().replace(' ', '-')}/",
)
)
for c in category_list:
component_name = to_snake_case(c[0])
| from ..state import SideBarItem |
import reflex as rx
from reflex.utils.format import to_snake_case, to_title_case
from ..state import SideBarItem
def get_component_link(category, clist, prefix="") -> str:
|
# construct the component link. The component name points to the name of the md file.
return f"/docs/library/{prefix.strip('/') + '/' if prefix.strip('/') else ''}{category.lower().replace(' ', '-')}/{component_name.lower()}"
def get_category_children(category, category_list, prefix=""):
category = category.replace("-", " ")
if isinstance(category_list, dict):
return SideBarItem(
names=category,
children=[
get_category_children(c, category_list[c]) for c in category_list
],
)
category_item_children = []
category_item_children.append(
SideBarItem(
names="Overview",
link=f"/docs/library/{prefix if prefix else ''}{category.lower().replace(' ', '-')}/",
)
)
for c in category_list:
component_name = to_snake_case(c[0])
name = to_title_case(component_name, sep=" ")
item = SideBarItem(
names=name,
link=get | component_name = rx.utils.format.to_kebab_case(clist[0]) |
import reflex as rx
from reflex.utils.format import to_snake_case, to_title_case
from ..state import SideBarItem
def get_component_link(category, clist, prefix="") -> str:
component_name = rx.utils.format.to_kebab_case(clist[0])
# construct the component link. The component name points to the name of the md file.
return f"/docs/library/{prefix.strip('/') + '/' if prefix.strip('/') else ''}{category.lower().replace(' ', '-')}/{component_name.lower()}"
def get_category_children(category, category_list, prefix=""):
|
if isinstance(category_list, dict):
return SideBarItem(
names=category,
children=[
get_category_children(c, category_list[c]) for c in category_list
],
)
category_item_children = []
category_item_children.append(
SideBarItem(
names="Overview",
link=f"/docs/library/{prefix if prefix else ''}{category.lower().replace(' ', '-')}/",
)
)
for c in category_list:
component_name = to_snake_case(c[0])
name = to_title_case(component_name, sep=" ")
item = SideBarItem(
names=name,
link=get_component_link(category, c, prefix=prefix),
)
category_item_children.append(item)
return SideBarItem(names=category, children=category_item_children)
def get_sidebar_items_component_lib():
from pcweb.pages.docs import component_list
library_item_children = []
for category in component_list:
cate | category = category.replace("-", " ") |
import reflex as rx
from reflex.utils.format import to_snake_case, to_title_case
from ..state import SideBarItem
def get_component_link(category, clist, prefix="") -> str:
component_name = rx.utils.format.to_kebab_case(clist[0])
# construct the component link. The component name points to the name of the md file.
return f"/docs/library/{prefix.strip('/') + '/' if prefix.strip('/') else ''}{category.lower().replace(' ', '-')}/{component_name.lower()}"
def get_category_children(category, category_list, prefix=""):
category = category.replace("-", " ")
|
category_item_children = []
category_item_children.append(
SideBarItem(
names="Overview",
link=f"/docs/library/{prefix if prefix else ''}{category.lower().replace(' ', '-')}/",
)
)
for c in category_list:
component_name = to_snake_case(c[0])
name = to_title_case(component_name, sep=" ")
item = SideBarItem(
names=name,
link=get_component_link(category, c, prefix=prefix),
)
category_item_children.append(item)
return SideBarItem(names=category, children=category_item_children)
def get_sidebar_items_component_lib():
from pcweb.pages.docs import component_list
library_item_children = []
for category in component_list:
category_item = get_category_children(category, component_list[category])
library_item_children.append(category_item)
return [
*library_item_children,
]
def get_sidebar_items_graphings():
from pcweb. | if isinstance(category_list, dict):
return SideBarItem(
names=category,
children=[
get_category_children(c, category_list[c]) for c in category_list
],
) |
import reflex as rx
from reflex.utils.format import to_snake_case, to_title_case
from ..state import SideBarItem
def get_component_link(category, clist, prefix="") -> str:
component_name = rx.utils.format.to_kebab_case(clist[0])
# construct the component link. The component name points to the name of the md file.
return f"/docs/library/{prefix.strip('/') + '/' if prefix.strip('/') else ''}{category.lower().replace(' ', '-')}/{component_name.lower()}"
def get_category_children(category, category_list, prefix=""):
category = category.replace("-", " ")
if isinstance(category_list, dict):
return SideBarItem(
names=category,
children=[
get_category_children(c, category_list[c]) for c in category_list
],
)
|
category_item_children.append(
SideBarItem(
names="Overview",
link=f"/docs/library/{prefix if prefix else ''}{category.lower().replace(' ', '-')}/",
)
)
for c in category_list:
component_name = to_snake_case(c[0])
name = to_title_case(component_name, sep=" ")
item = SideBarItem(
names=name,
link=get_component_link(category, c, prefix=prefix),
)
category_item_children.append(item)
return SideBarItem(names=category, children=category_item_children)
def get_sidebar_items_component_lib():
from pcweb.pages.docs import component_list
library_item_children = []
for category in component_list:
category_item = get_category_children(category, component_list[category])
library_item_children.append(category_item)
return [
*library_item_children,
]
def get_sidebar_items_graphings():
from pcweb.pages.docs import graphing_compo | category_item_children = [] |
tle_case
from ..state import SideBarItem
def get_component_link(category, clist, prefix="") -> str:
component_name = rx.utils.format.to_kebab_case(clist[0])
# construct the component link. The component name points to the name of the md file.
return f"/docs/library/{prefix.strip('/') + '/' if prefix.strip('/') else ''}{category.lower().replace(' ', '-')}/{component_name.lower()}"
def get_category_children(category, category_list, prefix=""):
category = category.replace("-", " ")
if isinstance(category_list, dict):
return SideBarItem(
names=category,
children=[
get_category_children(c, category_list[c]) for c in category_list
],
)
category_item_children = []
category_item_children.append(
SideBarItem(
names="Overview",
link=f"/docs/library/{prefix if prefix else ''}{category.lower().replace(' ', '-')}/",
)
)
for c in category_list:
|
name = to_title_case(component_name, sep=" ")
item = SideBarItem(
names=name,
link=get_component_link(category, c, prefix=prefix),
)
category_item_children.append(item)
return SideBarItem(names=category, children=category_item_children)
def get_sidebar_items_component_lib():
from pcweb.pages.docs import component_list
library_item_children = []
for category in component_list:
category_item = get_category_children(category, component_list[category])
library_item_children.append(category_item)
return [
*library_item_children,
]
def get_sidebar_items_graphings():
from pcweb.pages.docs import graphing_components
graphing_children = []
for category in graphing_components:
category_item = get_category_children(
category, graphing_components[category], prefix="graphing/"
)
graphing_children.append(category_item)
return [*graphing | component_name = to_snake_case(c[0]) |
ef get_component_link(category, clist, prefix="") -> str:
component_name = rx.utils.format.to_kebab_case(clist[0])
# construct the component link. The component name points to the name of the md file.
return f"/docs/library/{prefix.strip('/') + '/' if prefix.strip('/') else ''}{category.lower().replace(' ', '-')}/{component_name.lower()}"
def get_category_children(category, category_list, prefix=""):
category = category.replace("-", " ")
if isinstance(category_list, dict):
return SideBarItem(
names=category,
children=[
get_category_children(c, category_list[c]) for c in category_list
],
)
category_item_children = []
category_item_children.append(
SideBarItem(
names="Overview",
link=f"/docs/library/{prefix if prefix else ''}{category.lower().replace(' ', '-')}/",
)
)
for c in category_list:
component_name = to_snake_case(c[0])
|
item = SideBarItem(
names=name,
link=get_component_link(category, c, prefix=prefix),
)
category_item_children.append(item)
return SideBarItem(names=category, children=category_item_children)
def get_sidebar_items_component_lib():
from pcweb.pages.docs import component_list
library_item_children = []
for category in component_list:
category_item = get_category_children(category, component_list[category])
library_item_children.append(category_item)
return [
*library_item_children,
]
def get_sidebar_items_graphings():
from pcweb.pages.docs import graphing_components
graphing_children = []
for category in graphing_components:
category_item = get_category_children(
category, graphing_components[category], prefix="graphing/"
)
graphing_children.append(category_item)
return [*graphing_children]
component_lib = get_sidebar_items_compone | name = to_title_case(component_name, sep=" ") |
tr:
component_name = rx.utils.format.to_kebab_case(clist[0])
# construct the component link. The component name points to the name of the md file.
return f"/docs/library/{prefix.strip('/') + '/' if prefix.strip('/') else ''}{category.lower().replace(' ', '-')}/{component_name.lower()}"
def get_category_children(category, category_list, prefix=""):
category = category.replace("-", " ")
if isinstance(category_list, dict):
return SideBarItem(
names=category,
children=[
get_category_children(c, category_list[c]) for c in category_list
],
)
category_item_children = []
category_item_children.append(
SideBarItem(
names="Overview",
link=f"/docs/library/{prefix if prefix else ''}{category.lower().replace(' ', '-')}/",
)
)
for c in category_list:
component_name = to_snake_case(c[0])
name = to_title_case(component_name, sep=" ")
|
category_item_children.append(item)
return SideBarItem(names=category, children=category_item_children)
def get_sidebar_items_component_lib():
from pcweb.pages.docs import component_list
library_item_children = []
for category in component_list:
category_item = get_category_children(category, component_list[category])
library_item_children.append(category_item)
return [
*library_item_children,
]
def get_sidebar_items_graphings():
from pcweb.pages.docs import graphing_components
graphing_children = []
for category in graphing_components:
category_item = get_category_children(
category, graphing_components[category], prefix="graphing/"
)
graphing_children.append(category_item)
return [*graphing_children]
component_lib = get_sidebar_items_component_lib()
graphing_libs = get_sidebar_items_graphings()
| item = SideBarItem(
names=name,
link=get_component_link(category, c, prefix=prefix),
) |
ent_name.lower()}"
def get_category_children(category, category_list, prefix=""):
category = category.replace("-", " ")
if isinstance(category_list, dict):
return SideBarItem(
names=category,
children=[
get_category_children(c, category_list[c]) for c in category_list
],
)
category_item_children = []
category_item_children.append(
SideBarItem(
names="Overview",
link=f"/docs/library/{prefix if prefix else ''}{category.lower().replace(' ', '-')}/",
)
)
for c in category_list:
component_name = to_snake_case(c[0])
name = to_title_case(component_name, sep=" ")
item = SideBarItem(
names=name,
link=get_component_link(category, c, prefix=prefix),
)
category_item_children.append(item)
return SideBarItem(names=category, children=category_item_children)
def get_sidebar_items_component_lib():
|
library_item_children = []
for category in component_list:
category_item = get_category_children(category, component_list[category])
library_item_children.append(category_item)
return [
*library_item_children,
]
def get_sidebar_items_graphings():
from pcweb.pages.docs import graphing_components
graphing_children = []
for category in graphing_components:
category_item = get_category_children(
category, graphing_components[category], prefix="graphing/"
)
graphing_children.append(category_item)
return [*graphing_children]
component_lib = get_sidebar_items_component_lib()
graphing_libs = get_sidebar_items_graphings()
| from pcweb.pages.docs import component_list |
tegory, category_list, prefix=""):
category = category.replace("-", " ")
if isinstance(category_list, dict):
return SideBarItem(
names=category,
children=[
get_category_children(c, category_list[c]) for c in category_list
],
)
category_item_children = []
category_item_children.append(
SideBarItem(
names="Overview",
link=f"/docs/library/{prefix if prefix else ''}{category.lower().replace(' ', '-')}/",
)
)
for c in category_list:
component_name = to_snake_case(c[0])
name = to_title_case(component_name, sep=" ")
item = SideBarItem(
names=name,
link=get_component_link(category, c, prefix=prefix),
)
category_item_children.append(item)
return SideBarItem(names=category, children=category_item_children)
def get_sidebar_items_component_lib():
from pcweb.pages.docs import component_list
|
for category in component_list:
category_item = get_category_children(category, component_list[category])
library_item_children.append(category_item)
return [
*library_item_children,
]
def get_sidebar_items_graphings():
from pcweb.pages.docs import graphing_components
graphing_children = []
for category in graphing_components:
category_item = get_category_children(
category, graphing_components[category], prefix="graphing/"
)
graphing_children.append(category_item)
return [*graphing_children]
component_lib = get_sidebar_items_component_lib()
graphing_libs = get_sidebar_items_graphings()
| library_item_children = [] |
):
category = category.replace("-", " ")
if isinstance(category_list, dict):
return SideBarItem(
names=category,
children=[
get_category_children(c, category_list[c]) for c in category_list
],
)
category_item_children = []
category_item_children.append(
SideBarItem(
names="Overview",
link=f"/docs/library/{prefix if prefix else ''}{category.lower().replace(' ', '-')}/",
)
)
for c in category_list:
component_name = to_snake_case(c[0])
name = to_title_case(component_name, sep=" ")
item = SideBarItem(
names=name,
link=get_component_link(category, c, prefix=prefix),
)
category_item_children.append(item)
return SideBarItem(names=category, children=category_item_children)
def get_sidebar_items_component_lib():
from pcweb.pages.docs import component_list
library_item_children = []
|
return [
*library_item_children,
]
def get_sidebar_items_graphings():
from pcweb.pages.docs import graphing_components
graphing_children = []
for category in graphing_components:
category_item = get_category_children(
category, graphing_components[category], prefix="graphing/"
)
graphing_children.append(category_item)
return [*graphing_children]
component_lib = get_sidebar_items_component_lib()
graphing_libs = get_sidebar_items_graphings()
| for category in component_list:
category_item = get_category_children(category, component_list[category])
library_item_children.append(category_item) |
" ")
if isinstance(category_list, dict):
return SideBarItem(
names=category,
children=[
get_category_children(c, category_list[c]) for c in category_list
],
)
category_item_children = []
category_item_children.append(
SideBarItem(
names="Overview",
link=f"/docs/library/{prefix if prefix else ''}{category.lower().replace(' ', '-')}/",
)
)
for c in category_list:
component_name = to_snake_case(c[0])
name = to_title_case(component_name, sep=" ")
item = SideBarItem(
names=name,
link=get_component_link(category, c, prefix=prefix),
)
category_item_children.append(item)
return SideBarItem(names=category, children=category_item_children)
def get_sidebar_items_component_lib():
from pcweb.pages.docs import component_list
library_item_children = []
for category in component_list:
|
library_item_children.append(category_item)
return [
*library_item_children,
]
def get_sidebar_items_graphings():
from pcweb.pages.docs import graphing_components
graphing_children = []
for category in graphing_components:
category_item = get_category_children(
category, graphing_components[category], prefix="graphing/"
)
graphing_children.append(category_item)
return [*graphing_children]
component_lib = get_sidebar_items_component_lib()
graphing_libs = get_sidebar_items_graphings()
| category_item = get_category_children(category, component_list[category]) |
,
)
category_item_children = []
category_item_children.append(
SideBarItem(
names="Overview",
link=f"/docs/library/{prefix if prefix else ''}{category.lower().replace(' ', '-')}/",
)
)
for c in category_list:
component_name = to_snake_case(c[0])
name = to_title_case(component_name, sep=" ")
item = SideBarItem(
names=name,
link=get_component_link(category, c, prefix=prefix),
)
category_item_children.append(item)
return SideBarItem(names=category, children=category_item_children)
def get_sidebar_items_component_lib():
from pcweb.pages.docs import component_list
library_item_children = []
for category in component_list:
category_item = get_category_children(category, component_list[category])
library_item_children.append(category_item)
return [
*library_item_children,
]
def get_sidebar_items_graphings():
|
graphing_children = []
for category in graphing_components:
category_item = get_category_children(
category, graphing_components[category], prefix="graphing/"
)
graphing_children.append(category_item)
return [*graphing_children]
component_lib = get_sidebar_items_component_lib()
graphing_libs = get_sidebar_items_graphings()
| from pcweb.pages.docs import graphing_components |
ry_item_children.append(
SideBarItem(
names="Overview",
link=f"/docs/library/{prefix if prefix else ''}{category.lower().replace(' ', '-')}/",
)
)
for c in category_list:
component_name = to_snake_case(c[0])
name = to_title_case(component_name, sep=" ")
item = SideBarItem(
names=name,
link=get_component_link(category, c, prefix=prefix),
)
category_item_children.append(item)
return SideBarItem(names=category, children=category_item_children)
def get_sidebar_items_component_lib():
from pcweb.pages.docs import component_list
library_item_children = []
for category in component_list:
category_item = get_category_children(category, component_list[category])
library_item_children.append(category_item)
return [
*library_item_children,
]
def get_sidebar_items_graphings():
from pcweb.pages.docs import graphing_components
|
for category in graphing_components:
category_item = get_category_children(
category, graphing_components[category], prefix="graphing/"
)
graphing_children.append(category_item)
return [*graphing_children]
component_lib = get_sidebar_items_component_lib()
graphing_libs = get_sidebar_items_graphings()
| graphing_children = [] |
SideBarItem(
names="Overview",
link=f"/docs/library/{prefix if prefix else ''}{category.lower().replace(' ', '-')}/",
)
)
for c in category_list:
component_name = to_snake_case(c[0])
name = to_title_case(component_name, sep=" ")
item = SideBarItem(
names=name,
link=get_component_link(category, c, prefix=prefix),
)
category_item_children.append(item)
return SideBarItem(names=category, children=category_item_children)
def get_sidebar_items_component_lib():
from pcweb.pages.docs import component_list
library_item_children = []
for category in component_list:
category_item = get_category_children(category, component_list[category])
library_item_children.append(category_item)
return [
*library_item_children,
]
def get_sidebar_items_graphings():
from pcweb.pages.docs import graphing_components
graphing_children = []
|
return [*graphing_children]
component_lib = get_sidebar_items_component_lib()
graphing_libs = get_sidebar_items_graphings()
| for category in graphing_components:
category_item = get_category_children(
category, graphing_components[category], prefix="graphing/"
)
graphing_children.append(category_item) |
w",
link=f"/docs/library/{prefix if prefix else ''}{category.lower().replace(' ', '-')}/",
)
)
for c in category_list:
component_name = to_snake_case(c[0])
name = to_title_case(component_name, sep=" ")
item = SideBarItem(
names=name,
link=get_component_link(category, c, prefix=prefix),
)
category_item_children.append(item)
return SideBarItem(names=category, children=category_item_children)
def get_sidebar_items_component_lib():
from pcweb.pages.docs import component_list
library_item_children = []
for category in component_list:
category_item = get_category_children(category, component_list[category])
library_item_children.append(category_item)
return [
*library_item_children,
]
def get_sidebar_items_graphings():
from pcweb.pages.docs import graphing_components
graphing_children = []
for category in graphing_components:
|
graphing_children.append(category_item)
return [*graphing_children]
component_lib = get_sidebar_items_component_lib()
graphing_libs = get_sidebar_items_graphings()
| category_item = get_category_children(
category, graphing_components[category], prefix="graphing/"
) |
= to_title_case(component_name, sep=" ")
item = SideBarItem(
names=name,
link=get_component_link(category, c, prefix=prefix),
)
category_item_children.append(item)
return SideBarItem(names=category, children=category_item_children)
def get_sidebar_items_component_lib():
from pcweb.pages.docs import component_list
library_item_children = []
for category in component_list:
category_item = get_category_children(category, component_list[category])
library_item_children.append(category_item)
return [
*library_item_children,
]
def get_sidebar_items_graphings():
from pcweb.pages.docs import graphing_components
graphing_children = []
for category in graphing_components:
category_item = get_category_children(
category, graphing_components[category], prefix="graphing/"
)
graphing_children.append(category_item)
return [*graphing_children]
|
graphing_libs = get_sidebar_items_graphings()
| component_lib = get_sidebar_items_component_lib() |
item = SideBarItem(
names=name,
link=get_component_link(category, c, prefix=prefix),
)
category_item_children.append(item)
return SideBarItem(names=category, children=category_item_children)
def get_sidebar_items_component_lib():
from pcweb.pages.docs import component_list
library_item_children = []
for category in component_list:
category_item = get_category_children(category, component_list[category])
library_item_children.append(category_item)
return [
*library_item_children,
]
def get_sidebar_items_graphings():
from pcweb.pages.docs import graphing_components
graphing_children = []
for category in graphing_components:
category_item = get_category_children(
category, graphing_components[category], prefix="graphing/"
)
graphing_children.append(category_item)
return [*graphing_children]
component_lib = get_sidebar_items_component_lib()
| graphing_libs = get_sidebar_items_graphings() | |
"""Enterprise sidebar items."""
|
def get_sidebar_items_enterprise_usage():
"""Get the enterprise usage sidebar items."""
from pcweb.pages.docs import enterprise
return [
SideBarItem(
names="Overview",
children=[
SideBarItem(
names="How to use Enterprise",
link=enterprise.overview.path,
),
],
),
SideBarItem(
names="Configuration",
children=[
SideBarItem(
names="Built with Reflex",
link=enterprise.built_with_reflex.path,
),
SideBarItem(
names="Single Port Proxy",
link=enterprise.single_port_proxy.path,
),
],
),
]
def get_sidebar_items_enterprise_components():
"""Get the enterprise components sidebar items."""
from pcweb.pages.docs import enterprise
return [
SideBa | from ..state import SideBarItem |
"""Enterprise sidebar items."""
from ..state import SideBarItem
def get_sidebar_items_enterprise_usage():
"""Get the enterprise usage sidebar items."""
|
return [
SideBarItem(
names="Overview",
children=[
SideBarItem(
names="How to use Enterprise",
link=enterprise.overview.path,
),
],
),
SideBarItem(
names="Configuration",
children=[
SideBarItem(
names="Built with Reflex",
link=enterprise.built_with_reflex.path,
),
SideBarItem(
names="Single Port Proxy",
link=enterprise.single_port_proxy.path,
),
],
),
]
def get_sidebar_items_enterprise_components():
"""Get the enterprise components sidebar items."""
from pcweb.pages.docs import enterprise
return [
SideBarItem(
names="AG Grid",
children=[
SideBarItem(
names="Overview",
| from pcweb.pages.docs import enterprise |
"""Enterprise sidebar items."""
from ..state import SideBarItem
def get_sidebar_items_enterprise_usage():
"""Get the enterprise usage sidebar items."""
from pcweb.pages.docs import enterprise
return [
SideBarItem(
names="Overview",
children=[
SideBarItem(
names="How to use Enterprise",
link=enterprise.overview.path,
),
],
),
SideBarItem(
names="Configuration",
children=[
SideBarItem(
names="Built with Reflex",
link=enterprise.built_with_reflex.path,
),
SideBarItem(
names="Single Port Proxy",
link=enterprise.single_port_proxy.path,
),
],
),
]
def get_sidebar_items_enterprise_components():
"""Get the enterprise components sidebar items."""
|
return [
SideBarItem(
names="AG Grid",
children=[
SideBarItem(
names="Overview",
link=enterprise.ag_grid.index.path,
),
SideBarItem(
names="Column Definitions",
link=enterprise.ag_grid.column_defs.path,
),
SideBarItem(
names="Aligned Grids",
link=enterprise.ag_grid.aligned_grids.path,
),
SideBarItem(
names="Model Wrapper",
link=enterprise.ag_grid.model_wrapper.path,
),
SideBarItem(
names="Pivot Mode",
link=enterprise.ag_grid.pivot_mode.path,
),
SideBarItem(
names="Theme",
link=enterprise.ag_grid.theme.path,
),
| from pcweb.pages.docs import enterprise |
link=enterprise.mantine.pill.path,
),
SideBarItem(
names="Ring Progress",
link=enterprise.mantine.ring_progress.path,
),
SideBarItem(
names="Semi Circle Progress",
link=enterprise.mantine.semi_circle_progress.path,
),
SideBarItem(
names="Spoiler",
link=enterprise.mantine.spoiler.path,
),
SideBarItem(
names="Tags Input",
link=enterprise.mantine.tags_input.path,
),
SideBarItem(
names="Timeline",
link=enterprise.mantine.timeline.path,
),
SideBarItem(
names="Tree",
link=enterprise.mantine.tree.path,
),
],
),
]
|
enterprise_component_items = get_sidebar_items_enterprise_components()
enterprise_items = (
enterprise_usage_items + enterprise_component_items
) # Keep for backward compatibility
| enterprise_usage_items = get_sidebar_items_enterprise_usage() |
),
SideBarItem(
names="Ring Progress",
link=enterprise.mantine.ring_progress.path,
),
SideBarItem(
names="Semi Circle Progress",
link=enterprise.mantine.semi_circle_progress.path,
),
SideBarItem(
names="Spoiler",
link=enterprise.mantine.spoiler.path,
),
SideBarItem(
names="Tags Input",
link=enterprise.mantine.tags_input.path,
),
SideBarItem(
names="Timeline",
link=enterprise.mantine.timeline.path,
),
SideBarItem(
names="Tree",
link=enterprise.mantine.tree.path,
),
],
),
]
enterprise_usage_items = get_sidebar_items_enterprise_usage()
|
enterprise_items = (
enterprise_usage_items + enterprise_component_items
) # Keep for backward compatibility
| enterprise_component_items = get_sidebar_items_enterprise_components() |
ress",
link=enterprise.mantine.ring_progress.path,
),
SideBarItem(
names="Semi Circle Progress",
link=enterprise.mantine.semi_circle_progress.path,
),
SideBarItem(
names="Spoiler",
link=enterprise.mantine.spoiler.path,
),
SideBarItem(
names="Tags Input",
link=enterprise.mantine.tags_input.path,
),
SideBarItem(
names="Timeline",
link=enterprise.mantine.timeline.path,
),
SideBarItem(
names="Tree",
link=enterprise.mantine.tree.path,
),
],
),
]
enterprise_usage_items = get_sidebar_items_enterprise_usage()
enterprise_component_items = get_sidebar_items_enterprise_components()
| # Keep for backward compatibility
| enterprise_items = (
enterprise_usage_items + enterprise_component_items
) |
import re
|
from ..state import SideBarItem
def create_item(route: Route, children=None):
"""Create a sidebar item from a route."""
if children is None:
name = route.title
url = route.path
# For "Overview", we want to keep the qualifier prefix ("Components overview")
alt_name_for_next_prev = name if name.endswith("Overview") else ""
# Capitalize acronyms
acronyms = {"Api": "API", "Cli": "CLI", "Ide": "IDE", "Mcp": "MCP", "Ai": "AI"}
name = re.sub(
r"\b(" + "|".join(acronyms.keys()) + r")\b",
lambda m: acronyms[m.group(0)],
name,
)
return SideBarItem(
names=name, alt_name_for_next_prev=alt_name_for_next_prev, link=url
)
return SideBarItem(
names=route,
children=list(map(create_item, children)),
)
| from pcweb.route import Route |
import re
from pcweb.route import Route
|
def create_item(route: Route, children=None):
"""Create a sidebar item from a route."""
if children is None:
name = route.title
url = route.path
# For "Overview", we want to keep the qualifier prefix ("Components overview")
alt_name_for_next_prev = name if name.endswith("Overview") else ""
# Capitalize acronyms
acronyms = {"Api": "API", "Cli": "CLI", "Ide": "IDE", "Mcp": "MCP", "Ai": "AI"}
name = re.sub(
r"\b(" + "|".join(acronyms.keys()) + r")\b",
lambda m: acronyms[m.group(0)],
name,
)
return SideBarItem(
names=name, alt_name_for_next_prev=alt_name_for_next_prev, link=url
)
return SideBarItem(
names=route,
children=list(map(create_item, children)),
)
| from ..state import SideBarItem |
import re
from pcweb.route import Route
from ..state import SideBarItem
def create_item(route: Route, children=None):
"""Create a sidebar item from a route."""
if children is None:
|
url = route.path
# For "Overview", we want to keep the qualifier prefix ("Components overview")
alt_name_for_next_prev = name if name.endswith("Overview") else ""
# Capitalize acronyms
acronyms = {"Api": "API", "Cli": "CLI", "Ide": "IDE", "Mcp": "MCP", "Ai": "AI"}
name = re.sub(
r"\b(" + "|".join(acronyms.keys()) + r")\b",
lambda m: acronyms[m.group(0)],
name,
)
return SideBarItem(
names=name, alt_name_for_next_prev=alt_name_for_next_prev, link=url
)
return SideBarItem(
names=route,
children=list(map(create_item, children)),
)
| name = route.title |
import re
from pcweb.route import Route
from ..state import SideBarItem
def create_item(route: Route, children=None):
"""Create a sidebar item from a route."""
if children is None:
name = route.title
|
# For "Overview", we want to keep the qualifier prefix ("Components overview")
alt_name_for_next_prev = name if name.endswith("Overview") else ""
# Capitalize acronyms
acronyms = {"Api": "API", "Cli": "CLI", "Ide": "IDE", "Mcp": "MCP", "Ai": "AI"}
name = re.sub(
r"\b(" + "|".join(acronyms.keys()) + r")\b",
lambda m: acronyms[m.group(0)],
name,
)
return SideBarItem(
names=name, alt_name_for_next_prev=alt_name_for_next_prev, link=url
)
return SideBarItem(
names=route,
children=list(map(create_item, children)),
)
| url = route.path |
import re
from pcweb.route import Route
from ..state import SideBarItem
def create_item(route: Route, children=None):
"""Create a sidebar item from a route."""
if children is None:
name = route.title
url = route.path
# For "Overview", we want to keep the qualifier prefix ("Components overview")
|
# Capitalize acronyms
acronyms = {"Api": "API", "Cli": "CLI", "Ide": "IDE", "Mcp": "MCP", "Ai": "AI"}
name = re.sub(
r"\b(" + "|".join(acronyms.keys()) + r")\b",
lambda m: acronyms[m.group(0)],
name,
)
return SideBarItem(
names=name, alt_name_for_next_prev=alt_name_for_next_prev, link=url
)
return SideBarItem(
names=route,
children=list(map(create_item, children)),
)
| alt_name_for_next_prev = name if name.endswith("Overview") else "" |
import re
from pcweb.route import Route
from ..state import SideBarItem
def create_item(route: Route, children=None):
"""Create a sidebar item from a route."""
if children is None:
name = route.title
url = route.path
# For "Overview", we want to keep the qualifier prefix ("Components overview")
alt_name_for_next_prev = name if name.endswith("Overview") else ""
# Capitalize acronyms
|
name = re.sub(
r"\b(" + "|".join(acronyms.keys()) + r")\b",
lambda m: acronyms[m.group(0)],
name,
)
return SideBarItem(
names=name, alt_name_for_next_prev=alt_name_for_next_prev, link=url
)
return SideBarItem(
names=route,
children=list(map(create_item, children)),
)
| acronyms = {"Api": "API", "Cli": "CLI", "Ide": "IDE", "Mcp": "MCP", "Ai": "AI"} |
from .item import create_item
def get_sidebar_items_learn():
from pcweb.pages.docs import advanced_onboarding, getting_started
items = [
create_item(
"Getting Started",
children=[
getting_started.introduction,
getting_started.installation,
getting_started.basics,
getting_started.project_structure,
getting_started.dashboard_tutorial,
getting_started.chatapp_tutorial,
getting_started.open_source_templates,
],
),
create_item(
"Advanced Onboarding",
children=[
advanced_onboarding.how_reflex_works,
advanced_onboarding.configuration,
advanced_onboarding.code_structure,
],
),
]
return items
def get_sidebar_items_frontend():
from pcweb.components.docpage.sidebar.state import SideBarSection
from pcweb.pag | from pcweb.pages.docs import cloud_cliref | |
from pcweb.pages.docs import cloud_cliref
|
def get_sidebar_items_learn():
from pcweb.pages.docs import advanced_onboarding, getting_started
items = [
create_item(
"Getting Started",
children=[
getting_started.introduction,
getting_started.installation,
getting_started.basics,
getting_started.project_structure,
getting_started.dashboard_tutorial,
getting_started.chatapp_tutorial,
getting_started.open_source_templates,
],
),
create_item(
"Advanced Onboarding",
children=[
advanced_onboarding.how_reflex_works,
advanced_onboarding.configuration,
advanced_onboarding.code_structure,
],
),
]
return items
def get_sidebar_items_frontend():
from pcweb.components.docpage.sidebar.state import SideBarSection
from pcweb.pages.docs import (
assets | from .item import create_item |
from pcweb.pages.docs import cloud_cliref
from .item import create_item
def get_sidebar_items_learn():
|
items = [
create_item(
"Getting Started",
children=[
getting_started.introduction,
getting_started.installation,
getting_started.basics,
getting_started.project_structure,
getting_started.dashboard_tutorial,
getting_started.chatapp_tutorial,
getting_started.open_source_templates,
],
),
create_item(
"Advanced Onboarding",
children=[
advanced_onboarding.how_reflex_works,
advanced_onboarding.configuration,
advanced_onboarding.code_structure,
],
),
]
return items
def get_sidebar_items_frontend():
from pcweb.components.docpage.sidebar.state import SideBarSection
from pcweb.pages.docs import (
assets,
components,
custom_components,
library_,
pages,
styling,
| from pcweb.pages.docs import advanced_onboarding, getting_started |
from pcweb.pages.docs import cloud_cliref
from .item import create_item
def get_sidebar_items_learn():
from pcweb.pages.docs import advanced_onboarding, getting_started
items = [
create_item(
"Getting Started",
children=[
getting_started.introduction,
getting_started.installation,
getting_started.basics,
getting_started.project_structure,
getting_started.dashboard_tutorial,
getting_started.chatapp_tutorial,
getting_started.open_source_templates,
],
),
create_item(
"Advanced Onboarding",
children=[
advanced_onboarding.how_reflex_works,
advanced_onboarding.configuration,
advanced_onboarding.code_structure,
],
),
]
return items
def get_sidebar_items_frontend():
|
from pcweb.pages.docs import (
assets,
components,
custom_components,
library_,
pages,
styling,
ui,
wrapping_react,
)
items = [
SideBarSection(
names="User Interface Overview",
alt_name_for_next_prev="",
link=ui.overview.path,
),
create_item(
"Components",
children=[
components.props,
components.conditional_rendering,
components.rendering_iterables,
components.html_to_reflex,
library_,
],
),
create_item(
"Pages",
children=[
pages.overview,
pages.dynamic_routing,
],
),
create_item(
"Styling",
children=[
styling.overview,
styling.theming,
styling.responsive,
| from pcweb.components.docpage.sidebar.state import SideBarSection |
t cloud_cliref
from .item import create_item
def get_sidebar_items_learn():
from pcweb.pages.docs import advanced_onboarding, getting_started
items = [
create_item(
"Getting Started",
children=[
getting_started.introduction,
getting_started.installation,
getting_started.basics,
getting_started.project_structure,
getting_started.dashboard_tutorial,
getting_started.chatapp_tutorial,
getting_started.open_source_templates,
],
),
create_item(
"Advanced Onboarding",
children=[
advanced_onboarding.how_reflex_works,
advanced_onboarding.configuration,
advanced_onboarding.code_structure,
],
),
]
return items
def get_sidebar_items_frontend():
from pcweb.components.docpage.sidebar.state import SideBarSection
|
items = [
SideBarSection(
names="User Interface Overview",
alt_name_for_next_prev="",
link=ui.overview.path,
),
create_item(
"Components",
children=[
components.props,
components.conditional_rendering,
components.rendering_iterables,
components.html_to_reflex,
library_,
],
),
create_item(
"Pages",
children=[
pages.overview,
pages.dynamic_routing,
],
),
create_item(
"Styling",
children=[
styling.overview,
styling.theming,
styling.responsive,
styling.custom_stylesheets,
styling.layout,
styling.common_props,
styling.tailwind,
],
),
create_item(
| from pcweb.pages.docs import (
assets,
components,
custom_components,
library_,
pages,
styling,
ui,
wrapping_react,
) |
"Assets",
children=[
assets.overview,
assets.upload_and_download_files,
],
),
create_item(
"Wrapping React",
children=[
wrapping_react.overview,
wrapping_react.library_and_tags,
wrapping_react.props,
wrapping_react.custom_code_and_hooks,
wrapping_react.imports_and_styles,
wrapping_react.local_packages,
wrapping_react.serializers,
wrapping_react.example,
wrapping_react.more_wrapping_examples,
],
),
create_item(
"Custom Components",
children=[
custom_components.overview,
custom_components.prerequisites_for_publishing,
custom_components.command_reference,
],
),
]
return items
def get_sidebar_items_backend():
|
from pcweb.pages.docs import (
api_routes,
authentication,
client_storage,
database,
events,
state,
state_structure,
utility_methods,
vars,
)
items = [
SideBarSection(
names="State Overview", alt_name_for_next_prev="", link=state.overview.path
),
create_item(
"Vars",
children=[
vars.base_vars,
vars.computed_vars,
vars.var_operations,
vars.custom_vars,
],
),
create_item(
"Events",
children=[
events.events_overview,
events.event_arguments,
events.setters,
events.yield_events,
events.chaining_events,
events.special_events,
events.page_load_events,
events.background_events,
events.event_acti | from pcweb.components.docpage.sidebar.state import SideBarSection |
verview,
assets.upload_and_download_files,
],
),
create_item(
"Wrapping React",
children=[
wrapping_react.overview,
wrapping_react.library_and_tags,
wrapping_react.props,
wrapping_react.custom_code_and_hooks,
wrapping_react.imports_and_styles,
wrapping_react.local_packages,
wrapping_react.serializers,
wrapping_react.example,
wrapping_react.more_wrapping_examples,
],
),
create_item(
"Custom Components",
children=[
custom_components.overview,
custom_components.prerequisites_for_publishing,
custom_components.command_reference,
],
),
]
return items
def get_sidebar_items_backend():
from pcweb.components.docpage.sidebar.state import SideBarSection
|
items = [
SideBarSection(
names="State Overview", alt_name_for_next_prev="", link=state.overview.path
),
create_item(
"Vars",
children=[
vars.base_vars,
vars.computed_vars,
vars.var_operations,
vars.custom_vars,
],
),
create_item(
"Events",
children=[
events.events_overview,
events.event_arguments,
events.setters,
events.yield_events,
events.chaining_events,
events.special_events,
events.page_load_events,
events.background_events,
events.event_actions,
events.decentralized_event_handlers,
],
),
create_item(
"State Structure",
children=[
state_structure.overview,
state | from pcweb.pages.docs import (
api_routes,
authentication,
client_storage,
database,
events,
state,
state_structure,
utility_methods,
vars,
) |
],
),
create_item(
"API Routes",
children=[
api_routes.overview,
],
),
create_item(
"Client Storage",
children=[
client_storage.overview,
],
),
create_item(
"Database",
children=[
database.overview,
database.tables,
database.queries,
database.relationships,
],
),
create_item(
"Authentication",
children=[
authentication.authentication_overview,
],
),
create_item(
"Utility Methods",
children=[
utility_methods.router_attributes,
utility_methods.lifespan_tasks,
utility_methods.other_methods,
],
),
]
return items
def get_sidebar_items_hosting():
|
items = [
create_item(
"Deploy Quick Start",
children=[
hosting.deploy_quick_start,
],
),
create_item(
"Project",
children=[
hosting.adding_members,
],
),
create_item(
"App",
children=[
hosting.app_management,
hosting.machine_types,
hosting.regions,
hosting.logs,
hosting.secrets_environment_vars,
hosting.custom_domains,
hosting.config_file,
hosting.tokens,
hosting.deploy_with_github_actions,
],
),
create_item(
"Usage",
children=[
hosting.billing,
hosting.compute,
],
),
create_item("CLI Reference", children=cloud_cliref.pages),
create_item(
"Sel | from pcweb.pages.docs import hosting |
),
create_item(
"Project",
children=[
hosting.adding_members,
],
),
create_item(
"App",
children=[
hosting.app_management,
hosting.machine_types,
hosting.regions,
hosting.logs,
hosting.secrets_environment_vars,
hosting.custom_domains,
hosting.config_file,
hosting.tokens,
hosting.deploy_with_github_actions,
],
),
create_item(
"Usage",
children=[
hosting.billing,
hosting.compute,
],
),
create_item("CLI Reference", children=cloud_cliref.pages),
create_item(
"Self Hosting",
children=[
hosting.self_hosting,
hosting.databricks,
],
),
]
return items
|
learn = get_sidebar_items_learn()
frontend = get_sidebar_items_frontend()
backend = get_sidebar_items_backend()
hosting = get_sidebar_items_hosting()
cli_ref = get_sidebar_items_hosting_cli_ref()
| def get_sidebar_items_hosting_cli_ref():
items = [
create_item("CLI Reference", children=cloud_cliref.pages),
]
return items |
",
children=[
hosting.adding_members,
],
),
create_item(
"App",
children=[
hosting.app_management,
hosting.machine_types,
hosting.regions,
hosting.logs,
hosting.secrets_environment_vars,
hosting.custom_domains,
hosting.config_file,
hosting.tokens,
hosting.deploy_with_github_actions,
],
),
create_item(
"Usage",
children=[
hosting.billing,
hosting.compute,
],
),
create_item("CLI Reference", children=cloud_cliref.pages),
create_item(
"Self Hosting",
children=[
hosting.self_hosting,
hosting.databricks,
],
),
]
return items
def get_sidebar_items_hosting_cli_ref():
|
return items
learn = get_sidebar_items_learn()
frontend = get_sidebar_items_frontend()
backend = get_sidebar_items_backend()
hosting = get_sidebar_items_hosting()
cli_ref = get_sidebar_items_hosting_cli_ref()
| items = [
create_item("CLI Reference", children=cloud_cliref.pages),
] |
eate_item(
"App",
children=[
hosting.app_management,
hosting.machine_types,
hosting.regions,
hosting.logs,
hosting.secrets_environment_vars,
hosting.custom_domains,
hosting.config_file,
hosting.tokens,
hosting.deploy_with_github_actions,
],
),
create_item(
"Usage",
children=[
hosting.billing,
hosting.compute,
],
),
create_item("CLI Reference", children=cloud_cliref.pages),
create_item(
"Self Hosting",
children=[
hosting.self_hosting,
hosting.databricks,
],
),
]
return items
def get_sidebar_items_hosting_cli_ref():
items = [
create_item("CLI Reference", children=cloud_cliref.pages),
]
return items
|
frontend = get_sidebar_items_frontend()
backend = get_sidebar_items_backend()
hosting = get_sidebar_items_hosting()
cli_ref = get_sidebar_items_hosting_cli_ref()
| learn = get_sidebar_items_learn() |
ng.app_management,
hosting.machine_types,
hosting.regions,
hosting.logs,
hosting.secrets_environment_vars,
hosting.custom_domains,
hosting.config_file,
hosting.tokens,
hosting.deploy_with_github_actions,
],
),
create_item(
"Usage",
children=[
hosting.billing,
hosting.compute,
],
),
create_item("CLI Reference", children=cloud_cliref.pages),
create_item(
"Self Hosting",
children=[
hosting.self_hosting,
hosting.databricks,
],
),
]
return items
def get_sidebar_items_hosting_cli_ref():
items = [
create_item("CLI Reference", children=cloud_cliref.pages),
]
return items
learn = get_sidebar_items_learn()
frontend = get_sidebar_items_frontend()
|
hosting = get_sidebar_items_hosting()
cli_ref = get_sidebar_items_hosting_cli_ref()
| backend = get_sidebar_items_backend() |
ting.machine_types,
hosting.regions,
hosting.logs,
hosting.secrets_environment_vars,
hosting.custom_domains,
hosting.config_file,
hosting.tokens,
hosting.deploy_with_github_actions,
],
),
create_item(
"Usage",
children=[
hosting.billing,
hosting.compute,
],
),
create_item("CLI Reference", children=cloud_cliref.pages),
create_item(
"Self Hosting",
children=[
hosting.self_hosting,
hosting.databricks,
],
),
]
return items
def get_sidebar_items_hosting_cli_ref():
items = [
create_item("CLI Reference", children=cloud_cliref.pages),
]
return items
learn = get_sidebar_items_learn()
frontend = get_sidebar_items_frontend()
backend = get_sidebar_items_backend()
|
cli_ref = get_sidebar_items_hosting_cli_ref()
| hosting = get_sidebar_items_hosting() |
sting.regions,
hosting.logs,
hosting.secrets_environment_vars,
hosting.custom_domains,
hosting.config_file,
hosting.tokens,
hosting.deploy_with_github_actions,
],
),
create_item(
"Usage",
children=[
hosting.billing,
hosting.compute,
],
),
create_item("CLI Reference", children=cloud_cliref.pages),
create_item(
"Self Hosting",
children=[
hosting.self_hosting,
hosting.databricks,
],
),
]
return items
def get_sidebar_items_hosting_cli_ref():
items = [
create_item("CLI Reference", children=cloud_cliref.pages),
]
return items
learn = get_sidebar_items_learn()
frontend = get_sidebar_items_frontend()
backend = get_sidebar_items_backend()
hosting = get_sidebar_items_hosting()
| cli_ref = get_sidebar_items_hosting_cli_ref() | |
def get_sidebar_items_recipes():
from pcweb.pages.docs import recipes
return [
create_item(
"Layout",
children=[
recipes.layout.navbar,
recipes.layout.sidebar,
recipes.layout.footer,
],
),
create_item(
"Content",
children=[
recipes.content.forms,
recipes.content.multi_column_row,
recipes.content.grid,
recipes.content.stats,
recipes.content.top_banner,
],
),
create_item(
"Auth",
children=[
recipes.auth.login_form,
recipes.auth.signup_form,
],
),
create_item(
"Other",
children=[
recipes.others.checkboxes,
recipes.others.pricing_cards,
recipes.others.chips,
recipes.others. | from .item import create_item | |
from .item import create_item
def get_sidebar_items_recipes():
|
return [
create_item(
"Layout",
children=[
recipes.layout.navbar,
recipes.layout.sidebar,
recipes.layout.footer,
],
),
create_item(
"Content",
children=[
recipes.content.forms,
recipes.content.multi_column_row,
recipes.content.grid,
recipes.content.stats,
recipes.content.top_banner,
],
),
create_item(
"Auth",
children=[
recipes.auth.login_form,
recipes.auth.signup_form,
],
),
create_item(
"Other",
children=[
recipes.others.checkboxes,
recipes.others.pricing_cards,
recipes.others.chips,
recipes.others.speed_dial,
recipes.others.dark_mode_toggle,
],
| from pcweb.pages.docs import recipes |
create_item(
"Layout",
children=[
recipes.layout.navbar,
recipes.layout.sidebar,
recipes.layout.footer,
],
),
create_item(
"Content",
children=[
recipes.content.forms,
recipes.content.multi_column_row,
recipes.content.grid,
recipes.content.stats,
recipes.content.top_banner,
],
),
create_item(
"Auth",
children=[
recipes.auth.login_form,
recipes.auth.signup_form,
],
),
create_item(
"Other",
children=[
recipes.others.checkboxes,
recipes.others.pricing_cards,
recipes.others.chips,
recipes.others.speed_dial,
recipes.others.dark_mode_toggle,
],
),
]
| recipes = get_sidebar_items_recipes() | |
def get_sidebar_items_api_reference():
from pcweb.pages.docs import api_reference, apiref
return [
create_item(
"API Reference",
children=[
*apiref.pages,
api_reference.var_system,
api_reference.cli,
api_reference.event_triggers,
api_reference.special_events,
api_reference.browser_storage,
api_reference.browser_javascript,
api_reference.plugins,
api_reference.utils,
],
)
]
api_reference = get_sidebar_items_api_reference()
| from .item import create_item | |
from .item import create_item
def get_sidebar_items_api_reference():
|
return [
create_item(
"API Reference",
children=[
*apiref.pages,
api_reference.var_system,
api_reference.cli,
api_reference.event_triggers,
api_reference.special_events,
api_reference.browser_storage,
api_reference.browser_javascript,
api_reference.plugins,
api_reference.utils,
],
)
]
api_reference = get_sidebar_items_api_reference()
| from pcweb.pages.docs import api_reference, apiref |
from .item import create_item
def get_sidebar_items_api_reference():
from pcweb.pages.docs import api_reference, apiref
return [
create_item(
"API Reference",
children=[
*apiref.pages,
api_reference.var_system,
api_reference.cli,
api_reference.event_triggers,
api_reference.special_events,
api_reference.browser_storage,
api_reference.browser_javascript,
api_reference.plugins,
api_reference.utils,
],
)
]
| api_reference = get_sidebar_items_api_reference() | |
"""Hugeicons Icon component."""
|
from reflex.utils import format
from reflex.vars.base import Var
class HugeIconComponent(Component):
"""Huge Icon Component."""
library = "hugeicons-react@0.3.0"
class HugeIcon(HugeIconComponent):
"""A HugeIcon component."""
tag = "None"
# The size of the icon in pixels.
size: Var[int] = 16
@classmethod
def create(cls, *children, **props) -> Component:
"""Initialize the Icon component.
Run some additional checks on Icon component.
Args:
*children: The positional arguments
**props: The keyword arguments
Raises:
AttributeError: The errors tied to bad usage of the Icon component.
ValueError: If the icon tag is invalid.
Returns:
The created component.
"""
if children:
if len(children) == 1 and isinstance(children[0], str):
props["tag"] = children[0]
children = []
else:
| from reflex.components.component import Component |
"""Hugeicons Icon component."""
from reflex.components.component import Component
|
from reflex.vars.base import Var
class HugeIconComponent(Component):
"""Huge Icon Component."""
library = "hugeicons-react@0.3.0"
class HugeIcon(HugeIconComponent):
"""A HugeIcon component."""
tag = "None"
# The size of the icon in pixels.
size: Var[int] = 16
@classmethod
def create(cls, *children, **props) -> Component:
"""Initialize the Icon component.
Run some additional checks on Icon component.
Args:
*children: The positional arguments
**props: The keyword arguments
Raises:
AttributeError: The errors tied to bad usage of the Icon component.
ValueError: If the icon tag is invalid.
Returns:
The created component.
"""
if children:
if len(children) == 1 and isinstance(children[0], str):
props["tag"] = children[0]
children = []
else:
raise AttributeError(
| from reflex.utils import format |
"""Hugeicons Icon component."""
from reflex.components.component import Component
from reflex.utils import format
|
class HugeIconComponent(Component):
"""Huge Icon Component."""
library = "hugeicons-react@0.3.0"
class HugeIcon(HugeIconComponent):
"""A HugeIcon component."""
tag = "None"
# The size of the icon in pixels.
size: Var[int] = 16
@classmethod
def create(cls, *children, **props) -> Component:
"""Initialize the Icon component.
Run some additional checks on Icon component.
Args:
*children: The positional arguments
**props: The keyword arguments
Raises:
AttributeError: The errors tied to bad usage of the Icon component.
ValueError: If the icon tag is invalid.
Returns:
The created component.
"""
if children:
if len(children) == 1 and isinstance(children[0], str):
props["tag"] = children[0]
children = []
else:
raise AttributeError(
f"Passing mul | from reflex.vars.base import Var |
"""Hugeicons Icon component."""
from reflex.components.component import Component
from reflex.utils import format
from reflex.vars.base import Var
|
class HugeIcon(HugeIconComponent):
"""A HugeIcon component."""
tag = "None"
# The size of the icon in pixels.
size: Var[int] = 16
@classmethod
def create(cls, *children, **props) -> Component:
"""Initialize the Icon component.
Run some additional checks on Icon component.
Args:
*children: The positional arguments
**props: The keyword arguments
Raises:
AttributeError: The errors tied to bad usage of the Icon component.
ValueError: If the icon tag is invalid.
Returns:
The created component.
"""
if children:
if len(children) == 1 and isinstance(children[0], str):
props["tag"] = children[0]
children = []
else:
raise AttributeError(
f"Passing multiple children to Icon component is not allowed: remove positional arguments {children[1:]} to fix"
| class HugeIconComponent(Component):
"""Huge Icon Component."""
library = "hugeicons-react@0.3.0" |
"""Hugeicons Icon component."""
from reflex.components.component import Component
from reflex.utils import format
from reflex.vars.base import Var
class HugeIconComponent(Component):
"""Huge Icon Component."""
|
class HugeIcon(HugeIconComponent):
"""A HugeIcon component."""
tag = "None"
# The size of the icon in pixels.
size: Var[int] = 16
@classmethod
def create(cls, *children, **props) -> Component:
"""Initialize the Icon component.
Run some additional checks on Icon component.
Args:
*children: The positional arguments
**props: The keyword arguments
Raises:
AttributeError: The errors tied to bad usage of the Icon component.
ValueError: If the icon tag is invalid.
Returns:
The created component.
"""
if children:
if len(children) == 1 and isinstance(children[0], str):
props["tag"] = children[0]
children = []
else:
raise AttributeError(
f"Passing multiple children to Icon component is not allowed: remove positional arguments {children[1:]} to fix"
| library = "hugeicons-react@0.3.0" |
"""Hugeicons Icon component."""
from reflex.components.component import Component
from reflex.utils import format
from reflex.vars.base import Var
class HugeIconComponent(Component):
"""Huge Icon Component."""
library = "hugeicons-react@0.3.0"
class HugeIcon(HugeIconComponent):
"""A HugeIcon component."""
|
# The size of the icon in pixels.
size: Var[int] = 16
@classmethod
def create(cls, *children, **props) -> Component:
"""Initialize the Icon component.
Run some additional checks on Icon component.
Args:
*children: The positional arguments
**props: The keyword arguments
Raises:
AttributeError: The errors tied to bad usage of the Icon component.
ValueError: If the icon tag is invalid.
Returns:
The created component.
"""
if children:
if len(children) == 1 and isinstance(children[0], str):
props["tag"] = children[0]
children = []
else:
raise AttributeError(
f"Passing multiple children to Icon component is not allowed: remove positional arguments {children[1:]} to fix"
)
if "tag" not in props:
raise AttributeError("Missing 'tag | tag = "None" |
""Hugeicons Icon component."""
from reflex.components.component import Component
from reflex.utils import format
from reflex.vars.base import Var
class HugeIconComponent(Component):
"""Huge Icon Component."""
library = "hugeicons-react@0.3.0"
class HugeIcon(HugeIconComponent):
"""A HugeIcon component."""
tag = "None"
# The size of the icon in pixels.
size: Var[int] = 16
@classmethod
def create(cls, *children, **props) -> Component:
"""Initialize the Icon component.
Run some additional checks on Icon component.
Args:
*children: The positional arguments
**props: The keyword arguments
Raises:
AttributeError: The errors tied to bad usage of the Icon component.
ValueError: If the icon tag is invalid.
Returns:
The created component.
"""
if children:
if len(children) == 1 and isinstance(children[0], str):
|
children = []
else:
raise AttributeError(
f"Passing multiple children to Icon component is not allowed: remove positional arguments {children[1:]} to fix"
)
if "tag" not in props:
raise AttributeError("Missing 'tag' keyword-argument for HugeIcon")
if not isinstance(props["tag"], str):
raise ValueError(f"Invalid icon tag: {props['tag']}.")
props["tag"] = format.to_title_case(format.to_snake_case(props["tag"])) + "Icon"
props["alias"] = f"Huge{props['tag']}"
props.setdefault("stroke_width", 2)
return super().create(*children, **props)
hi = HugeIcon.create
| props["tag"] = children[0] |
.components.component import Component
from reflex.utils import format
from reflex.vars.base import Var
class HugeIconComponent(Component):
"""Huge Icon Component."""
library = "hugeicons-react@0.3.0"
class HugeIcon(HugeIconComponent):
"""A HugeIcon component."""
tag = "None"
# The size of the icon in pixels.
size: Var[int] = 16
@classmethod
def create(cls, *children, **props) -> Component:
"""Initialize the Icon component.
Run some additional checks on Icon component.
Args:
*children: The positional arguments
**props: The keyword arguments
Raises:
AttributeError: The errors tied to bad usage of the Icon component.
ValueError: If the icon tag is invalid.
Returns:
The created component.
"""
if children:
if len(children) == 1 and isinstance(children[0], str):
props["tag"] = children[0]
|
else:
raise AttributeError(
f"Passing multiple children to Icon component is not allowed: remove positional arguments {children[1:]} to fix"
)
if "tag" not in props:
raise AttributeError("Missing 'tag' keyword-argument for HugeIcon")
if not isinstance(props["tag"], str):
raise ValueError(f"Invalid icon tag: {props['tag']}.")
props["tag"] = format.to_title_case(format.to_snake_case(props["tag"])) + "Icon"
props["alias"] = f"Huge{props['tag']}"
props.setdefault("stroke_width", 2)
return super().create(*children, **props)
hi = HugeIcon.create
| children = [] |
HugeIconComponent):
"""A HugeIcon component."""
tag = "None"
# The size of the icon in pixels.
size: Var[int] = 16
@classmethod
def create(cls, *children, **props) -> Component:
"""Initialize the Icon component.
Run some additional checks on Icon component.
Args:
*children: The positional arguments
**props: The keyword arguments
Raises:
AttributeError: The errors tied to bad usage of the Icon component.
ValueError: If the icon tag is invalid.
Returns:
The created component.
"""
if children:
if len(children) == 1 and isinstance(children[0], str):
props["tag"] = children[0]
children = []
else:
raise AttributeError(
f"Passing multiple children to Icon component is not allowed: remove positional arguments {children[1:]} to fix"
)
|
if not isinstance(props["tag"], str):
raise ValueError(f"Invalid icon tag: {props['tag']}.")
props["tag"] = format.to_title_case(format.to_snake_case(props["tag"])) + "Icon"
props["alias"] = f"Huge{props['tag']}"
props.setdefault("stroke_width", 2)
return super().create(*children, **props)
hi = HugeIcon.create
| if "tag" not in props:
raise AttributeError("Missing 'tag' keyword-argument for HugeIcon") |
size: Var[int] = 16
@classmethod
def create(cls, *children, **props) -> Component:
"""Initialize the Icon component.
Run some additional checks on Icon component.
Args:
*children: The positional arguments
**props: The keyword arguments
Raises:
AttributeError: The errors tied to bad usage of the Icon component.
ValueError: If the icon tag is invalid.
Returns:
The created component.
"""
if children:
if len(children) == 1 and isinstance(children[0], str):
props["tag"] = children[0]
children = []
else:
raise AttributeError(
f"Passing multiple children to Icon component is not allowed: remove positional arguments {children[1:]} to fix"
)
if "tag" not in props:
raise AttributeError("Missing 'tag' keyword-argument for HugeIcon")
|
props["tag"] = format.to_title_case(format.to_snake_case(props["tag"])) + "Icon"
props["alias"] = f"Huge{props['tag']}"
props.setdefault("stroke_width", 2)
return super().create(*children, **props)
hi = HugeIcon.create
| if not isinstance(props["tag"], str):
raise ValueError(f"Invalid icon tag: {props['tag']}.") |
the Icon component.
Run some additional checks on Icon component.
Args:
*children: The positional arguments
**props: The keyword arguments
Raises:
AttributeError: The errors tied to bad usage of the Icon component.
ValueError: If the icon tag is invalid.
Returns:
The created component.
"""
if children:
if len(children) == 1 and isinstance(children[0], str):
props["tag"] = children[0]
children = []
else:
raise AttributeError(
f"Passing multiple children to Icon component is not allowed: remove positional arguments {children[1:]} to fix"
)
if "tag" not in props:
raise AttributeError("Missing 'tag' keyword-argument for HugeIcon")
if not isinstance(props["tag"], str):
raise ValueError(f"Invalid icon tag: {props['tag']}.")
|
props["alias"] = f"Huge{props['tag']}"
props.setdefault("stroke_width", 2)
return super().create(*children, **props)
hi = HugeIcon.create
| props["tag"] = format.to_title_case(format.to_snake_case(props["tag"])) + "Icon" |
:
*children: The positional arguments
**props: The keyword arguments
Raises:
AttributeError: The errors tied to bad usage of the Icon component.
ValueError: If the icon tag is invalid.
Returns:
The created component.
"""
if children:
if len(children) == 1 and isinstance(children[0], str):
props["tag"] = children[0]
children = []
else:
raise AttributeError(
f"Passing multiple children to Icon component is not allowed: remove positional arguments {children[1:]} to fix"
)
if "tag" not in props:
raise AttributeError("Missing 'tag' keyword-argument for HugeIcon")
if not isinstance(props["tag"], str):
raise ValueError(f"Invalid icon tag: {props['tag']}.")
props["tag"] = format.to_title_case(format.to_snake_case(props["tag"])) + "Icon"
|
props.setdefault("stroke_width", 2)
return super().create(*children, **props)
hi = HugeIcon.create
| props["alias"] = f"Huge{props['tag']}" |
r: The errors tied to bad usage of the Icon component.
ValueError: If the icon tag is invalid.
Returns:
The created component.
"""
if children:
if len(children) == 1 and isinstance(children[0], str):
props["tag"] = children[0]
children = []
else:
raise AttributeError(
f"Passing multiple children to Icon component is not allowed: remove positional arguments {children[1:]} to fix"
)
if "tag" not in props:
raise AttributeError("Missing 'tag' keyword-argument for HugeIcon")
if not isinstance(props["tag"], str):
raise ValueError(f"Invalid icon tag: {props['tag']}.")
props["tag"] = format.to_title_case(format.to_snake_case(props["tag"])) + "Icon"
props["alias"] = f"Huge{props['tag']}"
props.setdefault("stroke_width", 2)
return super().create(*children, **props)
| hi = HugeIcon.create | |
import reflex as rx
github = """<svg width="17.25" height="17.25" viewBox="0 0 17.25 17.25" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_8358_8381)">
<path d="M4.68516 12.3006C4.97029 12.7159 5.83472 13.6041 7.01409 13.8293M7.10229 15.8287C6.35944 15.7064 1.43903 14.1016 1.43903 8.69098C1.43903 3.63814 5.75437 1.43814 8.63929 1.43814C11.5241 1.43814 15.8384 3.63814 15.8384 8.69098C15.8384 14.1016 10.918 15.7064 10.1752 15.8287C10.1752 15.8287 10.0243 13.3534 10.1119 12.9301C10.1993 12.5069 9.89953 11.8267 9.89953 11.8267C10.6028 11.5648 11.6742 11.1901 12.0308 10.1837C12.3092 9.39926 12.4842 8.25913 11.7061 7.18252C11.7061 7.18252 11.9089 5.45485 11.5241 5.38784C11.1395 5.32084 10.0138 6.07219 10.0138 6.07219C9.67354 5.97987 8.93679 5.80247 8.63003 5.83472C8.32319 5.80247 7.58391 5.97987 7.24366 6.07219C7.24366 6.07219 6.11814 5.32084 5.73325 5.38784C5.34836 5.45485 5.55114 7.18252 5.55114 7.18252C4.77315 8.25913 4.94819 9.39926 5.22656 10.1837C5.58326 11 | from typing import Literal | |
from typing import Literal
|
github = """<svg width="17.25" height="17.25" viewBox="0 0 17.25 17.25" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_8358_8381)">
<path d="M4.68516 12.3006C4.97029 12.7159 5.83472 13.6041 7.01409 13.8293M7.10229 15.8287C6.35944 15.7064 1.43903 14.1016 1.43903 8.69098C1.43903 3.63814 5.75437 1.43814 8.63929 1.43814C11.5241 1.43814 15.8384 3.63814 15.8384 8.69098C15.8384 14.1016 10.918 15.7064 10.1752 15.8287C10.1752 15.8287 10.0243 13.3534 10.1119 12.9301C10.1993 12.5069 9.89953 11.8267 9.89953 11.8267C10.6028 11.5648 11.6742 11.1901 12.0308 10.1837C12.3092 9.39926 12.4842 8.25913 11.7061 7.18252C11.7061 7.18252 11.9089 5.45485 11.5241 5.38784C11.1395 5.32084 10.0138 6.07219 10.0138 6.07219C9.67354 5.97987 8.93679 5.80247 8.63003 5.83472C8.32319 5.80247 7.58391 5.97987 7.24366 6.07219C7.24366 6.07219 6.11814 5.32084 5.73325 5.38784C5.34836 5.45485 5.55114 7.18252 5.55114 7.18252C4.77315 8.25913 4.94819 9.39926 5.22656 10.1837C5.58326 11.1901 6.65456 11.5648 | import reflex as rx |
from typing import Literal
import reflex as rx
|
discord = """<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<path d="M10.94 11.3911C10.6957 11.0566 10.2264 10.9835 9.89197 11.2279C9.5575 11.4722 9.48443 11.9414 9.72878 12.2759L10.94 11.3911ZM11.1967 13.0138L11.8308 12.6133C11.8217 12.599 11.8122 12.5851 11.8023 12.5714L11.1967 13.0138ZM11.5751 13.1484L11.3228 12.4421L11.3228 12.4422L11.5751 13.1484ZM14.5328 11.6485L14.9719 12.2565L14.972 12.2564L14.5328 11.6485ZM14.6667 11.3784H13.9166L13.9167 11.3831L14.6667 11.3784ZM13.0011 3.83349L13.5316 3.30333C13.4847 3.25646 13.4319 3.216 13.3744 3.18302L13.0011 3.83349ZM10.237 2.83751L10.1175 3.57793L10.1176 3.57794L10.237 2.83751ZM9.89579 3.01944L10.5707 3.34663L10.5707 3.34643L9.89579 3.01944ZM9.59912 3.63134L9.44552 4.36544C9.78232 4.43592 10.1239 4.26816 10.274 3.95853L9.59912 3.63134ZM6.40192 3.63134L5.72705 3.95853C5.87716 4.26816 6.21872 4.43592 6.55552 4.36544L6.40192 3.63134ZM6.10526 3.01944L6.78013 2.69225L6.78013 2.69224L6.10526 3 | github = """<svg width="17.25" height="17.25" viewBox="0 0 17.25 17.25" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_8358_8381)">
<path d="M4.68516 12.3006C4.97029 12.7159 5.83472 13.6041 7.01409 13.8293M7.10229 15.8287C6.35944 15.7064 1.43903 14.1016 1.43903 8.69098C1.43903 3.63814 5.75437 1.43814 8.63929 1.43814C11.5241 1.43814 15.8384 3.63814 15.8384 8.69098C15.8384 14.1016 10.918 15.7064 10.1752 15.8287C10.1752 15.8287 10.0243 13.3534 10.1119 12.9301C10.1993 12.5069 9.89953 11.8267 9.89953 11.8267C10.6028 11.5648 11.6742 11.1901 12.0308 10.1837C12.3092 9.39926 12.4842 8.25913 11.7061 7.18252C11.7061 7.18252 11.9089 5.45485 11.5241 5.38784C11.1395 5.32084 10.0138 6.07219 10.0138 6.07219C9.67354 5.97987 8.93679 5.80247 8.63003 5.83472C8.32319 5.80247 7.58391 5.97987 7.24366 6.07219C7.24366 6.07219 6.11814 5.32084 5.73325 5.38784C5.34836 5.45485 5.55114 7.18252 5.55114 7.18252C4.77315 8.25913 4.94819 9.39926 5.22656 10.1837C5.58326 11.1901 6.65456 11.5648 7.35806 11.8267C7.35806 11.8267 7.05829 12.5069 7.14571 12.9301C7.23317 13.3534 7.10229 15.8287 7.10229 15.8287Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</g>
</svg>
""" |
0.3344 8.75016V10.2502C11.4839 10.2502 12.2511 9.22024 12.2511 8.16683H10.7511ZM10.3344 8.75016C10.1952 8.75016 9.91772 8.58621 9.91772 8.16683H8.41772C8.41772 9.22024 9.18491 10.2502 10.3344 10.2502V8.75016ZM9.91772 8.16683C9.91772 7.74744 10.1952 7.5835 10.3344 7.5835V6.0835C9.18491 6.0835 8.41772 7.11341 8.41772 8.16683H9.91772ZM10.3344 7.5835C10.4736 7.5835 10.7511 7.74744 10.7511 8.16683H12.2511C12.2511 7.11341 11.4839 6.0835 10.3344 6.0835V7.5835ZM6.08439 8.16683C6.08439 8.58621 5.80691 8.75016 5.66771 8.75016V10.2502C6.81719 10.2502 7.58439 9.22025 7.58439 8.16683H6.08439ZM5.66771 8.75016C5.52853 8.75016 5.25105 8.58621 5.25105 8.16683H3.75105C3.75105 9.22025 4.51824 10.2502 5.66771 10.2502V8.75016ZM5.25105 8.16683C5.25105 7.74745 5.52853 7.5835 5.66771 7.5835V6.0835C4.51824 6.0835 3.75105 7.11341 3.75105 8.16683H5.25105ZM5.66771 7.5835C5.80691 7.5835 6.08439 7.74745 6.08439 8.16683H7.58439C7.58439 7.11341 6.81719 6.0835 5.66771 6.0835V7.5835Z" fill="currentColor"/>
</svg>
"""
|
arrow_down_big = """<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="20" height="20" color="currentColor" fill="none">
<circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="1.5" />
<path d="M12 16L12 8M12 16C11.2998 16 9.99153 14.0057 9.5 13.5M12 16C12.7002 16 14.0085 14.0057 14.5 13.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
</svg>
"""
new_tab = """<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 14 14" fill="none">
<g clip-path="url(#clip0_8639_335)">
<path d="M8.75004 5.24992L4.66671 9.33325M5.83337 4.73235C5.83337 4.73235 8.65017 4.4949 9.07758 4.92236C9.50505 5.34981 9.26757 8.16659 9.26757 8.16659M11.8429 2.4807C12.5417 3.2989 12.5417 4.53258 12.5417 6.99992C12.5417 9.46724 12.5417 10.7009 11.8429 11.5191C11.7436 11.6353 11.6354 11.7435 11.5192 11.8428C10.7011 12.5416 9.46737 12.5416 7.00004 12.5416C4.5327 12.5416 3.29902 12.5416 2.48082 11.8428C2.36463 11.7435 2.25642 | arrow_down = """<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 14 14" fill="none">
<g clip-path="url(#clip0_8286_7352)">
<path d="M7.74996 4.66675C7.74996 4.25253 7.41417 3.91675 6.99996 3.91675C6.58575 3.91675 6.24996 4.25253 6.24996 4.66675H7.74996ZM6.07944 7.35234C5.79074 7.05532 5.31591 7.04857 5.01888 7.33727C4.72186 7.62597 4.71511 8.1008 5.00381 8.39782L6.07944 7.35234ZM8.99612 8.39781C9.28481 8.10077 9.27805 7.62595 8.98102 7.33725C8.68398 7.04856 8.20916 7.05532 7.92046 7.35236L8.99612 8.39781ZM12.0833 7.00008C12.0833 9.80753 9.80741 12.0834 6.99996 12.0834V13.5834C10.6358 13.5834 13.5833 10.636 13.5833 7.00008H12.0833ZM6.99996 12.0834C4.19251 12.0834 1.91663 9.80753 1.91663 7.00008H0.416626C0.416626 10.636 3.36408 13.5834 6.99996 13.5834V12.0834ZM1.91663 7.00008C1.91663 4.19263 4.19251 1.91675 6.99996 1.91675V0.416748C3.36408 0.416748 0.416626 3.36421 0.416626 7.00008H1.91663ZM6.99996 1.91675C9.80741 1.91675 12.0833 4.19263 12.0833 7.00008H13.5833C13.5833 3.36421 10.6358 0.416748 6.99996 0.416748V1.91675ZM7.74996 9.33342V4.66675H6.24996V9.33342H7.74996ZM6.99996 8.58342C7.06289 8.58342 7.11068 8.59448 7.13876 8.60307C7.16679 8.61164 7.18283 8.62007 7.18567 8.62159C7.18879 8.62326 7.16949 8.61276 7.1264 8.57606C7.03961 8.50214 6.928 8.38421 6.79735 8.23001C6.66946 8.07909 6.54397 7.91835 6.42283 7.76412C6.31506 7.62692 6.1853 7.46125 6.07944 7.35234L5.00381 8.39782C5.04132 8.43641 5.11447 8.52678 5.2432 8.69067C5.35856 8.83754 5.50314 9.02294 5.65295 9.19973C5.79998 9.37324 5.97366 9.56458 6.1538 9.71801C6.24418 9.79498 6.35375 9.87767 6.47791 9.94412C6.59612 10.0074 6.77814 10.0834 6.99996 10.0834V8.58342ZM6.99996 10.0834C7.22178 10.0834 7.4038 10.0074 7.52201 9.94412C7.64617 9.87767 7.75574 9.79499 7.84612 9.71801C8.02626 9.56458 8.19994 9.37325 8.34698 9.19973C8.49678 9.02294 8.64136 8.83754 8.75672 8.69067C8.88545 8.52678 8.95861 8.4364 8.99612 8.39781L7.92046 7.35236C7.81462 7.46126 7.68486 7.62692 7.5771 7.76412C7.45596 7.91835 7.33046 8.07909 7.20258 8.23001C7.07192 8.3842 6.96031 8.50214 6.87352 8.57606C6.83044 8.61275 6.81113 8.62326 6.81426 8.62159C6.81709 8.62007 6.83313 8.61164 6.86116 8.60307C6.88924 8.59448 6.93703 8.58342 6.99996 8.58342V10.0834Z" fill="currentColor"/>
</g>
</svg>
""" |
.50214 6.928 8.38421 6.79735 8.23001C6.66946 8.07909 6.54397 7.91835 6.42283 7.76412C6.31506 7.62692 6.1853 7.46125 6.07944 7.35234L5.00381 8.39782C5.04132 8.43641 5.11447 8.52678 5.2432 8.69067C5.35856 8.83754 5.50314 9.02294 5.65295 9.19973C5.79998 9.37324 5.97366 9.56458 6.1538 9.71801C6.24418 9.79498 6.35375 9.87767 6.47791 9.94412C6.59612 10.0074 6.77814 10.0834 6.99996 10.0834V8.58342ZM6.99996 10.0834C7.22178 10.0834 7.4038 10.0074 7.52201 9.94412C7.64617 9.87767 7.75574 9.79499 7.84612 9.71801C8.02626 9.56458 8.19994 9.37325 8.34698 9.19973C8.49678 9.02294 8.64136 8.83754 8.75672 8.69067C8.88545 8.52678 8.95861 8.4364 8.99612 8.39781L7.92046 7.35236C7.81462 7.46126 7.68486 7.62692 7.5771 7.76412C7.45596 7.91835 7.33046 8.07909 7.20258 8.23001C7.07192 8.3842 6.96031 8.50214 6.87352 8.57606C6.83044 8.61275 6.81113 8.62326 6.81426 8.62159C6.81709 8.62007 6.83313 8.61164 6.86116 8.60307C6.88924 8.59448 6.93703 8.58342 6.99996 8.58342V10.0834Z" fill="currentColor"/>
</g>
</svg>
"""
|
new_tab = """<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 14 14" fill="none">
<g clip-path="url(#clip0_8639_335)">
<path d="M8.75004 5.24992L4.66671 9.33325M5.83337 4.73235C5.83337 4.73235 8.65017 4.4949 9.07758 4.92236C9.50505 5.34981 9.26757 8.16659 9.26757 8.16659M11.8429 2.4807C12.5417 3.2989 12.5417 4.53258 12.5417 6.99992C12.5417 9.46724 12.5417 10.7009 11.8429 11.5191C11.7436 11.6353 11.6354 11.7435 11.5192 11.8428C10.7011 12.5416 9.46737 12.5416 7.00004 12.5416C4.5327 12.5416 3.29902 12.5416 2.48082 11.8428C2.36463 11.7435 2.25642 11.6353 2.15719 11.5191C1.45837 10.7009 1.45837 9.46724 1.45837 6.99992C1.45837 4.53258 1.45837 3.2989 2.15719 2.4807C2.25642 2.36451 2.36463 2.2563 2.48082 2.15707C3.29902 1.45825 4.5327 1.45825 7.00004 1.45825C9.46737 1.45825 10.7011 1.45825 11.5192 2.15707C11.6354 2.2563 11.7436 2.36451 11.8429 2.4807Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</g>
</svg>
"""
copy = | arrow_down_big = """<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="20" height="20" color="currentColor" fill="none">
<circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="1.5" />
<path d="M12 16L12 8M12 16C11.2998 16 9.99153 14.0057 9.5 13.5M12 16C12.7002 16 14.0085 14.0057 14.5 13.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
</svg>
""" |
0834 7.4038 10.0074 7.52201 9.94412C7.64617 9.87767 7.75574 9.79499 7.84612 9.71801C8.02626 9.56458 8.19994 9.37325 8.34698 9.19973C8.49678 9.02294 8.64136 8.83754 8.75672 8.69067C8.88545 8.52678 8.95861 8.4364 8.99612 8.39781L7.92046 7.35236C7.81462 7.46126 7.68486 7.62692 7.5771 7.76412C7.45596 7.91835 7.33046 8.07909 7.20258 8.23001C7.07192 8.3842 6.96031 8.50214 6.87352 8.57606C6.83044 8.61275 6.81113 8.62326 6.81426 8.62159C6.81709 8.62007 6.83313 8.61164 6.86116 8.60307C6.88924 8.59448 6.93703 8.58342 6.99996 8.58342V10.0834Z" fill="currentColor"/>
</g>
</svg>
"""
arrow_down_big = """<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="20" height="20" color="currentColor" fill="none">
<circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="1.5" />
<path d="M12 16L12 8M12 16C11.2998 16 9.99153 14.0057 9.5 13.5M12 16C12.7002 16 14.0085 14.0057 14.5 13.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
</svg>
"""
|
copy = """<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 14 14" fill="none">
<g clip-path="url(#clip0_8639_330)">
<path d="M9.91657 5.25008C9.91517 3.52511 9.88909 2.63162 9.38696 2.01983C9.29001 1.90168 9.18168 1.79335 9.06356 1.69639C8.41816 1.16675 7.45933 1.16675 5.54163 1.16675C3.62393 1.16675 2.66508 1.16675 2.01971 1.69639C1.90156 1.79335 1.79323 1.90168 1.69627 2.01983C1.16663 2.6652 1.16663 3.62405 1.16663 5.54175C1.16663 7.45946 1.16663 8.41828 1.69627 9.06368C1.79323 9.18181 1.90156 9.29013 2.01971 9.38708C2.6315 9.88921 3.52499 9.91529 5.24996 9.91669M5.24996 8.75008C5.24996 7.10018 5.24996 6.27523 5.76252 5.76264C6.27511 5.25008 7.10006 5.25008 8.74996 5.25008H9.33329C10.9832 5.25008 11.8081 5.25008 12.3207 5.76264C12.8333 6.27523 12.8333 7.10018 12.8333 8.75008V9.33341C12.8333 10.9833 12.8333 11.8083 12.3207 12.3208C11.8081 12.8334 10.9832 12.8334 9.33329 12.8334H8.74996C7.10006 12.8334 6.27511 12.8334 5.76252 12.3208C5.24996 11.8083 5.24996 | new_tab = """<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 14 14" fill="none">
<g clip-path="url(#clip0_8639_335)">
<path d="M8.75004 5.24992L4.66671 9.33325M5.83337 4.73235C5.83337 4.73235 8.65017 4.4949 9.07758 4.92236C9.50505 5.34981 9.26757 8.16659 9.26757 8.16659M11.8429 2.4807C12.5417 3.2989 12.5417 4.53258 12.5417 6.99992C12.5417 9.46724 12.5417 10.7009 11.8429 11.5191C11.7436 11.6353 11.6354 11.7435 11.5192 11.8428C10.7011 12.5416 9.46737 12.5416 7.00004 12.5416C4.5327 12.5416 3.29902 12.5416 2.48082 11.8428C2.36463 11.7435 2.25642 11.6353 2.15719 11.5191C1.45837 10.7009 1.45837 9.46724 1.45837 6.99992C1.45837 4.53258 1.45837 3.2989 2.15719 2.4807C2.25642 2.36451 2.36463 2.2563 2.48082 2.15707C3.29902 1.45825 4.5327 1.45825 7.00004 1.45825C9.46737 1.45825 10.7011 1.45825 11.5192 2.15707C11.6354 2.2563 11.7436 2.36451 11.8429 2.4807Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</g>
</svg>
""" |
">
<path d="M9.91657 5.25008C9.91517 3.52511 9.88909 2.63162 9.38696 2.01983C9.29001 1.90168 9.18168 1.79335 9.06356 1.69639C8.41816 1.16675 7.45933 1.16675 5.54163 1.16675C3.62393 1.16675 2.66508 1.16675 2.01971 1.69639C1.90156 1.79335 1.79323 1.90168 1.69627 2.01983C1.16663 2.6652 1.16663 3.62405 1.16663 5.54175C1.16663 7.45946 1.16663 8.41828 1.69627 9.06368C1.79323 9.18181 1.90156 9.29013 2.01971 9.38708C2.6315 9.88921 3.52499 9.91529 5.24996 9.91669M5.24996 8.75008C5.24996 7.10018 5.24996 6.27523 5.76252 5.76264C6.27511 5.25008 7.10006 5.25008 8.74996 5.25008H9.33329C10.9832 5.25008 11.8081 5.25008 12.3207 5.76264C12.8333 6.27523 12.8333 7.10018 12.8333 8.75008V9.33341C12.8333 10.9833 12.8333 11.8083 12.3207 12.3208C11.8081 12.8334 10.9832 12.8334 9.33329 12.8334H8.74996C7.10006 12.8334 6.27511 12.8334 5.76252 12.3208C5.24996 11.8083 5.24996 10.9833 5.24996 9.33341V8.75008Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</g>
</svg>
"""
|
twitter = """<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M2.39941 13.6L7.0322 8.9677M7.0322 8.9677L2.2666 2.39997H5.59993L8.96767 7.03224M7.0322 8.9677L10.3999 13.6H13.7333L8.96767 7.03224M13.5999 2.39984L8.96767 7.03224" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
"""
moon = """<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" class="injected-svg" data-src="https://cdn.hugeicons.com/icons/moon-02-solid-rounded.svg" xmlns:xlink="http://www.w3.org/1999/xlink" role="img" color="currentColor">
<path d="M10.5163 2.04296C10.6958 2.27649 10.722 2.59345 10.5832 2.85326C9.99927 3.9469 9.66792 5.19607 9.66792 6.52485C9.66792 10.8367 13.1633 14.3321 17.4751 14.3321C18.8039 14.3321 20.0531 14.0007 21.1467 13.4168C21.4065 13.278 21.7235 13.3042 21.957 13.4837C22.1906 13.6632 22.2974 13.9627 22.2302 14.2495C21.1556 18.8349 17.0409 22.25 12 | eye = """<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 14 14" fill="none">
<path d="M12.5681 6.44324C12.7455 6.69192 12.8341 6.81628 12.8341 7.00033C12.8341 7.18437 12.7455 7.30873 12.5681 7.55741C11.7713 8.67484 9.73618 11.0837 7.00081 11.0837C4.26544 11.0837 2.23037 8.67484 1.4335 7.55741C1.25615 7.30873 1.16748 7.18437 1.16748 7.00033C1.16748 6.81628 1.25615 6.69192 1.4335 6.44324C2.23037 5.32583 4.26544 2.91699 7.00081 2.91699C9.73618 2.91699 11.7713 5.32583 12.5681 6.44324Z" stroke="currentColor" stroke-width="1.5"/>
<path d="M8.75081 7.00033C8.75081 6.0338 7.96734 5.25033 7.00081 5.25033C6.03429 5.25033 5.25081 6.0338 5.25081 7.00033C5.25081 7.96685 6.03429 8.75033 7.00081 8.75033C7.96734 8.75033 8.75081 7.96685 8.75081 7.00033Z" stroke="currentColor" stroke-width="1.5"/>
</svg>
""" |
208C5.24996 11.8083 5.24996 10.9833 5.24996 9.33341V8.75008Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</g>
</svg>
"""
eye = """<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 14 14" fill="none">
<path d="M12.5681 6.44324C12.7455 6.69192 12.8341 6.81628 12.8341 7.00033C12.8341 7.18437 12.7455 7.30873 12.5681 7.55741C11.7713 8.67484 9.73618 11.0837 7.00081 11.0837C4.26544 11.0837 2.23037 8.67484 1.4335 7.55741C1.25615 7.30873 1.16748 7.18437 1.16748 7.00033C1.16748 6.81628 1.25615 6.69192 1.4335 6.44324C2.23037 5.32583 4.26544 2.91699 7.00081 2.91699C9.73618 2.91699 11.7713 5.32583 12.5681 6.44324Z" stroke="currentColor" stroke-width="1.5"/>
<path d="M8.75081 7.00033C8.75081 6.0338 7.96734 5.25033 7.00081 5.25033C6.03429 5.25033 5.25081 6.0338 5.25081 7.00033C5.25081 7.96685 6.03429 8.75033 7.00081 8.75033C7.96734 8.75033 8.75081 7.96685 8.75081 7.00033Z" stroke="currentColor" stroke-width="1.5"/>
</svg>
"""
|
moon = """<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" class="injected-svg" data-src="https://cdn.hugeicons.com/icons/moon-02-solid-rounded.svg" xmlns:xlink="http://www.w3.org/1999/xlink" role="img" color="currentColor">
<path d="M10.5163 2.04296C10.6958 2.27649 10.722 2.59345 10.5832 2.85326C9.99927 3.9469 9.66792 5.19607 9.66792 6.52485C9.66792 10.8367 13.1633 14.3321 17.4751 14.3321C18.8039 14.3321 20.0531 14.0007 21.1467 13.4168C21.4065 13.278 21.7235 13.3042 21.957 13.4837C22.1906 13.6632 22.2974 13.9627 22.2302 14.2495C21.1556 18.8349 17.0409 22.25 12.1269 22.25C6.39589 22.25 1.75 17.6041 1.75 11.8731C1.75 6.95906 5.16505 2.84445 9.7505 1.76979C10.0373 1.70258 10.3368 1.80944 10.5163 2.04296Z" fill="currentColor"></path>
</svg>
"""
sun = """<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g clip-path="url(#clip0_10583_5600)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.166 | twitter = """<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M2.39941 13.6L7.0322 8.9677M7.0322 8.9677L2.2666 2.39997H5.59993L8.96767 7.03224M7.0322 8.9677L10.3999 13.6H13.7333L8.96767 7.03224M13.5999 2.39984L8.96767 7.03224" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
""" |
81 7.55741C11.7713 8.67484 9.73618 11.0837 7.00081 11.0837C4.26544 11.0837 2.23037 8.67484 1.4335 7.55741C1.25615 7.30873 1.16748 7.18437 1.16748 7.00033C1.16748 6.81628 1.25615 6.69192 1.4335 6.44324C2.23037 5.32583 4.26544 2.91699 7.00081 2.91699C9.73618 2.91699 11.7713 5.32583 12.5681 6.44324Z" stroke="currentColor" stroke-width="1.5"/>
<path d="M8.75081 7.00033C8.75081 6.0338 7.96734 5.25033 7.00081 5.25033C6.03429 5.25033 5.25081 6.0338 5.25081 7.00033C5.25081 7.96685 6.03429 8.75033 7.00081 8.75033C7.96734 8.75033 8.75081 7.96685 8.75081 7.00033Z" stroke="currentColor" stroke-width="1.5"/>
</svg>
"""
twitter = """<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M2.39941 13.6L7.0322 8.9677M7.0322 8.9677L2.2666 2.39997H5.59993L8.96767 7.03224M7.0322 8.9677L10.3999 13.6H13.7333L8.96767 7.03224M13.5999 2.39984L8.96767 7.03224" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
"""
|
sun = """<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g clip-path="url(#clip0_10583_5600)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.1665 7.99996C4.1665 5.88287 5.88274 4.16663 7.99984 4.16663C10.1169 4.16663 11.8332 5.88287 11.8332 7.99996C11.8332 10.117 10.1169 11.8333 7.99984 11.8333C5.88274 11.8333 4.1665 10.117 4.1665 7.99996Z" fill="currentColor"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M7.99864 0.666626C8.36677 0.666626 8.6653 0.965106 8.6653 1.33329V2.66663C8.6653 3.03481 8.36677 3.33329 7.99864 3.33329C7.63044 3.33329 7.33197 3.03481 7.33197 2.66663V1.33329C7.33197 0.965106 7.63044 0.666626 7.99864 0.666626ZM2.86176 2.86254C3.12212 2.60219 3.54422 2.60219 3.80458 2.86254L4.80392 3.86189C5.06427 4.12224 5.06427 4.54435 4.80392 4.8047C4.54358 5.06505 4.12146 5.06505 3.86112 4.8047L2.86176 3.80535C2.60142 3.545 2.60142 3.12289 2.86176 2.86254ZM13.1366 2.86254C13.397 3.12289 13.397 3.545 13.1366 3.80535L12. | moon = """<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" class="injected-svg" data-src="https://cdn.hugeicons.com/icons/moon-02-solid-rounded.svg" xmlns:xlink="http://www.w3.org/1999/xlink" role="img" color="currentColor">
<path d="M10.5163 2.04296C10.6958 2.27649 10.722 2.59345 10.5832 2.85326C9.99927 3.9469 9.66792 5.19607 9.66792 6.52485C9.66792 10.8367 13.1633 14.3321 17.4751 14.3321C18.8039 14.3321 20.0531 14.0007 21.1467 13.4168C21.4065 13.278 21.7235 13.3042 21.957 13.4837C22.1906 13.6632 22.2974 13.9627 22.2302 14.2495C21.1556 18.8349 17.0409 22.25 12.1269 22.25C6.39589 22.25 1.75 17.6041 1.75 11.8731C1.75 6.95906 5.16505 2.84445 9.7505 1.76979C10.0373 1.70258 10.3368 1.80944 10.5163 2.04296Z" fill="currentColor"></path>
</svg>
""" |
.96767 7.03224M7.0322 8.9677L10.3999 13.6H13.7333L8.96767 7.03224M13.5999 2.39984L8.96767 7.03224" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
"""
moon = """<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" class="injected-svg" data-src="https://cdn.hugeicons.com/icons/moon-02-solid-rounded.svg" xmlns:xlink="http://www.w3.org/1999/xlink" role="img" color="currentColor">
<path d="M10.5163 2.04296C10.6958 2.27649 10.722 2.59345 10.5832 2.85326C9.99927 3.9469 9.66792 5.19607 9.66792 6.52485C9.66792 10.8367 13.1633 14.3321 17.4751 14.3321C18.8039 14.3321 20.0531 14.0007 21.1467 13.4168C21.4065 13.278 21.7235 13.3042 21.957 13.4837C22.1906 13.6632 22.2974 13.9627 22.2302 14.2495C21.1556 18.8349 17.0409 22.25 12.1269 22.25C6.39589 22.25 1.75 17.6041 1.75 11.8731C1.75 6.95906 5.16505 2.84445 9.7505 1.76979C10.0373 1.70258 10.3368 1.80944 10.5163 2.04296Z" fill="currentColor"></path>
</svg>
"""
|
arrow_right = """<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 14 14" fill="none">
<path d="M8.5 4L11.5 7M8.5 10L11.5 7M11.5 7L2.5 7" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
"""
select = """<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M4 9L7.00065 12L10 9M4 5L7.00065 2L10 5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
"""
history = """<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_6098_5327)">
<path d="M4.20795 7.17247L2.11617 7.04513C3.61557 3.08764 7.92047 0.833589 12.1176 1.95428C16.588 3.14792 19.2433 7.71789 18.0484 12.1616C16.8536 16.6053 12.261 19.24 7.79064 18.0464C4.47146 17.1601 2.1529 14.4125 1.66797 11.2373M10.0013 6.66699V10.0003L11.668 11.667" stroke="currentColor" stroke-width="1.5" stroke-linecap= | sun = """<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g clip-path="url(#clip0_10583_5600)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.1665 7.99996C4.1665 5.88287 5.88274 4.16663 7.99984 4.16663C10.1169 4.16663 11.8332 5.88287 11.8332 7.99996C11.8332 10.117 10.1169 11.8333 7.99984 11.8333C5.88274 11.8333 4.1665 10.117 4.1665 7.99996Z" fill="currentColor"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M7.99864 0.666626C8.36677 0.666626 8.6653 0.965106 8.6653 1.33329V2.66663C8.6653 3.03481 8.36677 3.33329 7.99864 3.33329C7.63044 3.33329 7.33197 3.03481 7.33197 2.66663V1.33329C7.33197 0.965106 7.63044 0.666626 7.99864 0.666626ZM2.86176 2.86254C3.12212 2.60219 3.54422 2.60219 3.80458 2.86254L4.80392 3.86189C5.06427 4.12224 5.06427 4.54435 4.80392 4.8047C4.54358 5.06505 4.12146 5.06505 3.86112 4.8047L2.86176 3.80535C2.60142 3.545 2.60142 3.12289 2.86176 2.86254ZM13.1366 2.86254C13.397 3.12289 13.397 3.545 13.1366 3.80535L12.1372 4.8047C11.8769 5.06505 11.4548 5.06505 11.1944 4.8047C10.9341 4.54435 10.9341 4.12224 11.1944 3.86189L12.1938 2.86254C12.4542 2.60219 12.8762 2.60219 13.1366 2.86254ZM0.666504 7.99996C0.666504 7.63176 0.964984 7.33329 1.33317 7.33329H2.6665C3.03469 7.33329 3.33317 7.63176 3.33317 7.99996C3.33317 8.36816 3.03469 8.66663 2.6665 8.66663H1.33317C0.964984 8.66663 0.666504 8.36816 0.666504 7.99996ZM12.6665 7.99996C12.6665 7.63176 12.965 7.33329 13.3332 7.33329H14.6665C15.0347 7.33329 15.3332 7.63176 15.3332 7.99996C15.3332 8.36816 15.0347 8.66663 14.6665 8.66663H13.3332C12.965 8.66663 12.6665 8.36816 12.6665 7.99996ZM4.80458 11.1952C5.06492 11.4556 5.06492 11.8777 4.80458 12.138L3.80458 13.138C3.54422 13.3984 3.12212 13.3984 2.86176 13.138C2.60142 12.8777 2.60142 12.4556 2.86176 12.1952L3.86176 11.1952C4.12212 10.9349 4.54422 10.9349 4.80458 11.1952ZM11.1951 11.1959C11.4554 10.9355 11.8776 10.9355 12.1379 11.1959L13.1379 12.1959C13.3982 12.4562 13.3982 12.8784 13.1379 13.1387C12.8776 13.399 12.4554 13.399 12.1951 13.1387L11.1951 12.1387C10.9348 11.8784 10.9348 11.4562 11.1951 11.1959ZM7.99864 12.6666C8.36677 12.6666 8.6653 12.9651 8.6653 13.3333V14.6666C8.6653 15.0348 8.36677 15.3333 7.99864 15.3333C7.63044 15.3333 7.33197 15.0348 7.33197 14.6666V13.3333C7.33197 12.9651 7.63044 12.6666 7.99864 12.6666Z" fill="currentColor"/>
</g>
""" |
4 8.66663 0.666504 8.36816 0.666504 7.99996ZM12.6665 7.99996C12.6665 7.63176 12.965 7.33329 13.3332 7.33329H14.6665C15.0347 7.33329 15.3332 7.63176 15.3332 7.99996C15.3332 8.36816 15.0347 8.66663 14.6665 8.66663H13.3332C12.965 8.66663 12.6665 8.36816 12.6665 7.99996ZM4.80458 11.1952C5.06492 11.4556 5.06492 11.8777 4.80458 12.138L3.80458 13.138C3.54422 13.3984 3.12212 13.3984 2.86176 13.138C2.60142 12.8777 2.60142 12.4556 2.86176 12.1952L3.86176 11.1952C4.12212 10.9349 4.54422 10.9349 4.80458 11.1952ZM11.1951 11.1959C11.4554 10.9355 11.8776 10.9355 12.1379 11.1959L13.1379 12.1959C13.3982 12.4562 13.3982 12.8784 13.1379 13.1387C12.8776 13.399 12.4554 13.399 12.1951 13.1387L11.1951 12.1387C10.9348 11.8784 10.9348 11.4562 11.1951 11.1959ZM7.99864 12.6666C8.36677 12.6666 8.6653 12.9651 8.6653 13.3333V14.6666C8.6653 15.0348 8.36677 15.3333 7.99864 15.3333C7.63044 15.3333 7.33197 15.0348 7.33197 14.6666V13.3333C7.33197 12.9651 7.63044 12.6666 7.99864 12.6666Z" fill="currentColor"/>
</g>
"""
|
select = """<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M4 9L7.00065 12L10 9M4 5L7.00065 2L10 5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
"""
history = """<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_6098_5327)">
<path d="M4.20795 7.17247L2.11617 7.04513C3.61557 3.08764 7.92047 0.833589 12.1176 1.95428C16.588 3.14792 19.2433 7.71789 18.0484 12.1616C16.8536 16.6053 12.261 19.24 7.79064 18.0464C4.47146 17.1601 2.1529 14.4125 1.66797 11.2373M10.0013 6.66699V10.0003L11.668 11.667" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</g>
</svg>
"""
clipboard = """<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none">
<path d="M6.6657 12.5837C6.25148 12.5837 5.9157 12.9194 5.9157 13.3337C5.9157 13.7479 6.25148 14.0837 6. | arrow_right = """<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 14 14" fill="none">
<path d="M8.5 4L11.5 7M8.5 10L11.5 7M11.5 7L2.5 7" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
""" |
ZM4.80458 11.1952C5.06492 11.4556 5.06492 11.8777 4.80458 12.138L3.80458 13.138C3.54422 13.3984 3.12212 13.3984 2.86176 13.138C2.60142 12.8777 2.60142 12.4556 2.86176 12.1952L3.86176 11.1952C4.12212 10.9349 4.54422 10.9349 4.80458 11.1952ZM11.1951 11.1959C11.4554 10.9355 11.8776 10.9355 12.1379 11.1959L13.1379 12.1959C13.3982 12.4562 13.3982 12.8784 13.1379 13.1387C12.8776 13.399 12.4554 13.399 12.1951 13.1387L11.1951 12.1387C10.9348 11.8784 10.9348 11.4562 11.1951 11.1959ZM7.99864 12.6666C8.36677 12.6666 8.6653 12.9651 8.6653 13.3333V14.6666C8.6653 15.0348 8.36677 15.3333 7.99864 15.3333C7.63044 15.3333 7.33197 15.0348 7.33197 14.6666V13.3333C7.33197 12.9651 7.63044 12.6666 7.99864 12.6666Z" fill="currentColor"/>
</g>
"""
arrow_right = """<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 14 14" fill="none">
<path d="M8.5 4L11.5 7M8.5 10L11.5 7M11.5 7L2.5 7" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
"""
|
history = """<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_6098_5327)">
<path d="M4.20795 7.17247L2.11617 7.04513C3.61557 3.08764 7.92047 0.833589 12.1176 1.95428C16.588 3.14792 19.2433 7.71789 18.0484 12.1616C16.8536 16.6053 12.261 19.24 7.79064 18.0464C4.47146 17.1601 2.1529 14.4125 1.66797 11.2373M10.0013 6.66699V10.0003L11.668 11.667" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</g>
</svg>
"""
clipboard = """<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none">
<path d="M6.6657 12.5837C6.25148 12.5837 5.9157 12.9194 5.9157 13.3337C5.9157 13.7479 6.25148 14.0837 6.6657 14.0837V12.5837ZM9.99899 14.0837C10.4132 14.0837 10.749 13.7479 10.749 13.3337C10.749 12.9194 10.4132 12.5837 9.99899 12.5837V14.0837ZM6.6657 8.41699C6.25148 8.41699 5.9157 8.75278 5.9157 9.16699C5.9157 9.58121 6.25148 9.91699 6.6657 9.91699V8.41699ZM13.3 | select = """<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M4 9L7.00065 12L10 9M4 5L7.00065 2L10 5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
""" |
554 10.9355 11.8776 10.9355 12.1379 11.1959L13.1379 12.1959C13.3982 12.4562 13.3982 12.8784 13.1379 13.1387C12.8776 13.399 12.4554 13.399 12.1951 13.1387L11.1951 12.1387C10.9348 11.8784 10.9348 11.4562 11.1951 11.1959ZM7.99864 12.6666C8.36677 12.6666 8.6653 12.9651 8.6653 13.3333V14.6666C8.6653 15.0348 8.36677 15.3333 7.99864 15.3333C7.63044 15.3333 7.33197 15.0348 7.33197 14.6666V13.3333C7.33197 12.9651 7.63044 12.6666 7.99864 12.6666Z" fill="currentColor"/>
</g>
"""
arrow_right = """<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 14 14" fill="none">
<path d="M8.5 4L11.5 7M8.5 10L11.5 7M11.5 7L2.5 7" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
"""
select = """<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M4 9L7.00065 12L10 9M4 5L7.00065 2L10 5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
"""
|
clipboard = """<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none">
<path d="M6.6657 12.5837C6.25148 12.5837 5.9157 12.9194 5.9157 13.3337C5.9157 13.7479 6.25148 14.0837 6.6657 14.0837V12.5837ZM9.99899 14.0837C10.4132 14.0837 10.749 13.7479 10.749 13.3337C10.749 12.9194 10.4132 12.5837 9.99899 12.5837V14.0837ZM6.6657 8.41699C6.25148 8.41699 5.9157 8.75278 5.9157 9.16699C5.9157 9.58121 6.25148 9.91699 6.6657 9.91699V8.41699ZM13.3323 9.91699C13.7465 9.91699 14.0823 9.58121 14.0823 9.16699C14.0823 8.75278 13.7465 8.41699 13.3323 8.41699V9.91699ZM3.6463 3.63555L3.11572 3.10546L3.11572 3.10547L3.6463 3.63555ZM16.3485 3.63556L15.8179 4.16562L15.8179 4.16565L16.3485 3.63556ZM6.6657 14.0837H9.99899V12.5837H6.6657V14.0837ZM6.6657 9.91699H13.3323V8.41699H6.6657V9.91699ZM6.22817 2.16733C4.94314 2.20588 3.88146 2.33902 3.11572 3.10546L4.17687 4.16564C4.48087 3.86136 4.96517 3.70589 6.27314 3.66665L6.22817 2.16733ZM3.11572 3.10547C2.58715 3.63453 2.36495 | history = """<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_6098_5327)">
<path d="M4.20795 7.17247L2.11617 7.04513C3.61557 3.08764 7.92047 0.833589 12.1176 1.95428C16.588 3.14792 19.2433 7.71789 18.0484 12.1616C16.8536 16.6053 12.261 19.24 7.79064 18.0464C4.47146 17.1601 2.1529 14.4125 1.66797 11.2373M10.0013 6.66699V10.0003L11.668 11.667" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</g>
</svg>
""" |
00/svg" width="14" height="14" viewBox="0 0 14 14" fill="none">
<path d="M8.5 4L11.5 7M8.5 10L11.5 7M11.5 7L2.5 7" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
"""
select = """<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M4 9L7.00065 12L10 9M4 5L7.00065 2L10 5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
"""
history = """<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_6098_5327)">
<path d="M4.20795 7.17247L2.11617 7.04513C3.61557 3.08764 7.92047 0.833589 12.1176 1.95428C16.588 3.14792 19.2433 7.71789 18.0484 12.1616C16.8536 16.6053 12.261 19.24 7.79064 18.0464C4.47146 17.1601 2.1529 14.4125 1.66797 11.2373M10.0013 6.66699V10.0003L11.668 11.667" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</g>
</svg>
"""
|
radial_small = """<svg xmlns="http://www.w3.org/2000/svg" width="1113" height="946" viewBox="0 0 1113 946" fill="none">
<path d="M374.945 944.945L804.732 644.005L280.317 -104.937M291.44 913.953L766.955 692.216L380.56 -136.411M214.585 868.931L721.38 733.136L484.745 -150M146.716 811.248L669.393 765.52L589.707 -145.29M89.8944 742.655L612.571 788.384L692.257 -122.426M45.8472 665.238L552.643 801.034L789.278 -82.1019M15.9125 581.348L491.428 803.085L877.823 -25.5426M0.999961 493.535L430.787 794.475L955.202 45.5331M1.56259 404.466L372.563 775.466L1019.06 128.966M17.5833 316.848L318.524 746.635L1067.47 222.22M48.5754 233.343L270.312 708.858L1098.94 322.463M93.5971 156.488L229.393 663.283L1112.53 426.648M151.281 88.6189L197.009 611.296L1107.82 531.61M219.873 31.7975L174.145 554.474L1084.95 634.16M297.29 -12.2497L161.495 494.546L1044.63 731.181M381.18 -42.1842L159.444 433.331L988.071 819.726M468.994 -57.0968L168.053 372.69L916.995 897.105" stroke="url(#paint0_radial_10067_25682)" stroke-dasha | clipboard = """<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none">
<path d="M6.6657 12.5837C6.25148 12.5837 5.9157 12.9194 5.9157 13.3337C5.9157 13.7479 6.25148 14.0837 6.6657 14.0837V12.5837ZM9.99899 14.0837C10.4132 14.0837 10.749 13.7479 10.749 13.3337C10.749 12.9194 10.4132 12.5837 9.99899 12.5837V14.0837ZM6.6657 8.41699C6.25148 8.41699 5.9157 8.75278 5.9157 9.16699C5.9157 9.58121 6.25148 9.91699 6.6657 9.91699V8.41699ZM13.3323 9.91699C13.7465 9.91699 14.0823 9.58121 14.0823 9.16699C14.0823 8.75278 13.7465 8.41699 13.3323 8.41699V9.91699ZM3.6463 3.63555L3.11572 3.10546L3.11572 3.10547L3.6463 3.63555ZM16.3485 3.63556L15.8179 4.16562L15.8179 4.16565L16.3485 3.63556ZM6.6657 14.0837H9.99899V12.5837H6.6657V14.0837ZM6.6657 9.91699H13.3323V8.41699H6.6657V9.91699ZM6.22817 2.16733C4.94314 2.20588 3.88146 2.33902 3.11572 3.10546L4.17687 4.16564C4.48087 3.86136 4.96517 3.70589 6.27314 3.66665L6.22817 2.16733ZM3.11572 3.10547C2.58715 3.63453 2.36495 4.29726 2.26227 5.06171C2.16247 5.80467 2.16406 6.74887 2.16406 7.90729H3.66406C3.66406 6.7065 3.66565 5.88129 3.74892 5.2614C3.82929 4.66302 3.97321 4.36949 4.17687 4.16563L3.11572 3.10547ZM2.16406 7.90729V13.329H3.66406V7.90729H2.16406ZM2.16406 13.329C2.16406 14.4874 2.16247 15.4316 2.26227 16.1746C2.36495 16.939 2.58715 17.6018 3.11572 18.1308L4.17687 17.0707C3.97321 16.8668 3.82929 16.5733 3.74892 15.9749C3.66565 15.355 3.66406 14.5298 3.66406 13.329H2.16406ZM3.11572 18.1308C3.64438 18.66 4.30678 18.8825 5.07086 18.9853C5.81329 19.0853 6.75678 19.0837 7.91406 19.0837V17.5837C6.71433 17.5837 5.89005 17.5821 5.27091 17.4987C4.67342 17.4183 4.38044 17.2744 4.17687 17.0707L3.11572 18.1308ZM7.91406 19.0837H12.0807V17.5837H7.91406V19.0837ZM12.0807 19.0837C13.238 19.0837 14.1815 19.0853 14.9239 18.9853C15.688 18.8825 16.3504 18.66 16.8791 18.1308L15.8179 17.0707C15.6143 17.2744 15.3214 17.4183 14.7239 17.4987C14.1047 17.5821 13.2805 17.5837 12.0807 17.5837V19.0837ZM16.8791 18.1308C17.4076 17.6018 17.6298 16.9391 17.7325 16.1746C17.8323 15.4316 17.8307 14.4874 17.8307 13.329H16.3307C16.3307 14.5298 16.3291 15.355 16.2459 15.9749C16.1655 16.5733 16.0216 16.8668 15.8179 17.0707L16.8791 18.1308ZM17.8307 13.329V7.90729H16.3307V13.329H17.8307ZM17.8307 7.90729C17.8307 6.74887 17.8323 5.80467 17.7325 5.06171C17.6298 4.29725 17.4076 3.63453 16.8791 3.10547L15.8179 4.16565C16.0216 4.3695 16.1655 4.66303 16.2459 5.26141C16.3291 5.88129 16.3307 6.7065 16.3307 7.90729H17.8307ZM16.8791 3.10549C16.1134 2.33902 15.0517 2.20588 13.7666 2.16733L13.7217 3.66665C15.0297 3.70589 15.5139 3.86136 15.8179 4.16562L16.8791 3.10549ZM6.9974 3.12533C6.9974 2.73413 7.31453 2.41699 7.70573 2.41699V0.916992C6.48611 0.916992 5.4974 1.90569 5.4974 3.12533H6.9974ZM7.70573 2.41699H12.2891V0.916992H7.70573V2.41699ZM12.2891 2.41699C12.6803 2.41699 12.9974 2.73412 12.9974 3.12533H14.4974C14.4974 1.9057 13.5087 0.916992 12.2891 0.916992V2.41699ZM12.9974 3.12533C12.9974 3.51653 12.6803 3.83366 12.2891 3.83366V5.33366C13.5087 5.33366 14.4974 4.34495 14.4974 3.12533H12.9974ZM12.2891 3.83366H7.70573V5.33366H12.2891V3.83366ZM7.70573 3.83366C7.31453 3.83366 6.9974 3.51653 6.9974 3.12533H5.4974C5.4974 4.34496 6.48611 5.33366 7.70573 5.33366V3.83366Z" fill="currentColor"/>
</svg>
""" |
307 6.74887 17.8323 5.80467 17.7325 5.06171C17.6298 4.29725 17.4076 3.63453 16.8791 3.10547L15.8179 4.16565C16.0216 4.3695 16.1655 4.66303 16.2459 5.26141C16.3291 5.88129 16.3307 6.7065 16.3307 7.90729H17.8307ZM16.8791 3.10549C16.1134 2.33902 15.0517 2.20588 13.7666 2.16733L13.7217 3.66665C15.0297 3.70589 15.5139 3.86136 15.8179 4.16562L16.8791 3.10549ZM6.9974 3.12533C6.9974 2.73413 7.31453 2.41699 7.70573 2.41699V0.916992C6.48611 0.916992 5.4974 1.90569 5.4974 3.12533H6.9974ZM7.70573 2.41699H12.2891V0.916992H7.70573V2.41699ZM12.2891 2.41699C12.6803 2.41699 12.9974 2.73412 12.9974 3.12533H14.4974C14.4974 1.9057 13.5087 0.916992 12.2891 0.916992V2.41699ZM12.9974 3.12533C12.9974 3.51653 12.6803 3.83366 12.2891 3.83366V5.33366C13.5087 5.33366 14.4974 4.34495 14.4974 3.12533H12.9974ZM12.2891 3.83366H7.70573V5.33366H12.2891V3.83366ZM7.70573 3.83366C7.31453 3.83366 6.9974 3.51653 6.9974 3.12533H5.4974C5.4974 4.34496 6.48611 5.33366 7.70573 5.33366V3.83366Z" fill="currentColor"/>
</svg>
"""
|
radial_big = """<svg xmlns="http://www.w3.org/2000/svg" width="1113" height="1096" viewBox="0 0 1113 1096" fill="none">
<path d="M738.584 0.998991L308.797 301.939L833.211 1050.88M822.089 31.9911L346.573 253.728L732.968 1082.35M898.943 77.0128L392.148 212.808L628.783 1095.94M966.812 134.696L444.136 180.424L523.821 1091.23M1023.63 203.289L500.957 157.56L421.272 1068.37M1067.68 280.706L560.886 144.91L324.25 1028.05M1097.62 364.596L622.1 142.859L235.705 971.487M1112.53 452.409L682.741 151.469L158.326 900.411M1111.97 541.478L740.966 170.478L94.4656 816.978M1095.94 629.096L795.005 199.309L46.0628 723.724M1064.95 712.601L843.216 237.086L14.5891 623.481M1019.93 789.456L884.136 282.661L1.00032 519.296M962.248 857.325L916.519 334.648L5.70944 414.334M893.655 914.147L939.384 391.47L28.5736 311.784M816.238 958.194L952.033 451.398L68.8979 214.763M732.348 988.128L954.085 512.613L125.457 126.218M644.535 1003.04L945.475 573.254L196.533 48.839" stroke="url(#paint0_radial_10067_25683)" stroke-dasharra | radial_small = """<svg xmlns="http://www.w3.org/2000/svg" width="1113" height="946" viewBox="0 0 1113 946" fill="none">
<path d="M374.945 944.945L804.732 644.005L280.317 -104.937M291.44 913.953L766.955 692.216L380.56 -136.411M214.585 868.931L721.38 733.136L484.745 -150M146.716 811.248L669.393 765.52L589.707 -145.29M89.8944 742.655L612.571 788.384L692.257 -122.426M45.8472 665.238L552.643 801.034L789.278 -82.1019M15.9125 581.348L491.428 803.085L877.823 -25.5426M0.999961 493.535L430.787 794.475L955.202 45.5331M1.56259 404.466L372.563 775.466L1019.06 128.966M17.5833 316.848L318.524 746.635L1067.47 222.22M48.5754 233.343L270.312 708.858L1098.94 322.463M93.5971 156.488L229.393 663.283L1112.53 426.648M151.281 88.6189L197.009 611.296L1107.82 531.61M219.873 31.7975L174.145 554.474L1084.95 634.16M297.29 -12.2497L161.495 494.546L1044.63 731.181M381.18 -42.1842L159.444 433.331L988.071 819.726M468.994 -57.0968L168.053 372.69L916.995 897.105" stroke="url(#paint0_radial_10067_25682)" stroke-dasharray="3 3"/>
<defs>
<radialGradient id="paint0_radial_10067_25682" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(556.764 397.473) rotate(-90) scale(547.472 223.333)">
<stop offset="0.8" stop-color="var(--c-slate-5)"/>
<stop offset="1" stop-color="var(--c-slate-1)" stop-opacity="0"/>
</radialGradient>
</defs>
</svg>
""" |
.238L552.643 801.034L789.278 -82.1019M15.9125 581.348L491.428 803.085L877.823 -25.5426M0.999961 493.535L430.787 794.475L955.202 45.5331M1.56259 404.466L372.563 775.466L1019.06 128.966M17.5833 316.848L318.524 746.635L1067.47 222.22M48.5754 233.343L270.312 708.858L1098.94 322.463M93.5971 156.488L229.393 663.283L1112.53 426.648M151.281 88.6189L197.009 611.296L1107.82 531.61M219.873 31.7975L174.145 554.474L1084.95 634.16M297.29 -12.2497L161.495 494.546L1044.63 731.181M381.18 -42.1842L159.444 433.331L988.071 819.726M468.994 -57.0968L168.053 372.69L916.995 897.105" stroke="url(#paint0_radial_10067_25682)" stroke-dasharray="3 3"/>
<defs>
<radialGradient id="paint0_radial_10067_25682" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(556.764 397.473) rotate(-90) scale(547.472 223.333)">
<stop offset="0.8" stop-color="var(--c-slate-5)"/>
<stop offset="1" stop-color="var(--c-slate-1)" stop-opacity="0"/>
</radialGradient>
</defs>
</svg>
"""
|
bottom_logo = """<svg xmlns="http://www.w3.org/2000/svg" width="974" height="182" viewBox="0 0 974 182" fill="none">
<path d="M853 73H817V1H853V73ZM853 73V109M853 73H937M853 109H817V181H853V109ZM853 109H937M937 109V181H973V109H937ZM937 109V73M937 73H973V1H937V73ZM121 109V181H157V109H121ZM121 109V73M121 109H37V181H1V1H157V73H121M121 73V37H37V73H121ZM349 181V1H469V37H385V73H469V109H385V181H349ZM505 181V1H541V145H625V181H505ZM661 181V1H781V37H697V73H781V109H697L697.526 145H781V181H661ZM193 1V181H313V145H229.526L229 109H313V73H229V37H313V1H193Z" stroke="url(#paint0_linear_10039_17181)" stroke-width="1.5"/>
<defs>
<linearGradient id="paint0_linear_10039_17181" x1="487" y1="1" x2="487" y2="181" gradientUnits="userSpaceOnUse">
<stop stop-color="var(--c-slate-4)"/>
<stop offset="1" stop-color="var(--c-slate-1)"/>
</linearGradient>
</defs>
</svg>
"""
feather = """<svg xmlns="http://www.w3.org/2000/svg" width="28" height="64" viewBox="0 0 28 64" fill="none">
<path d="M18.7241 58.989 | radial_big = """<svg xmlns="http://www.w3.org/2000/svg" width="1113" height="1096" viewBox="0 0 1113 1096" fill="none">
<path d="M738.584 0.998991L308.797 301.939L833.211 1050.88M822.089 31.9911L346.573 253.728L732.968 1082.35M898.943 77.0128L392.148 212.808L628.783 1095.94M966.812 134.696L444.136 180.424L523.821 1091.23M1023.63 203.289L500.957 157.56L421.272 1068.37M1067.68 280.706L560.886 144.91L324.25 1028.05M1097.62 364.596L622.1 142.859L235.705 971.487M1112.53 452.409L682.741 151.469L158.326 900.411M1111.97 541.478L740.966 170.478L94.4656 816.978M1095.94 629.096L795.005 199.309L46.0628 723.724M1064.95 712.601L843.216 237.086L14.5891 623.481M1019.93 789.456L884.136 282.661L1.00032 519.296M962.248 857.325L916.519 334.648L5.70944 414.334M893.655 914.147L939.384 391.47L28.5736 311.784M816.238 958.194L952.033 451.398L68.8979 214.763M732.348 988.128L954.085 512.613L125.457 126.218M644.535 1003.04L945.475 573.254L196.533 48.839" stroke="url(#paint0_radial_10067_25683)" stroke-dasharray="3 3"/>
<defs>
<radialGradient id="paint0_radial_10067_25683" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(556.764 548.471) rotate(90) scale(547.472 223.333)">
<stop offset="0.893272" stop-color="var(--c-slate-4)"/>
<stop offset="1" stop-color="var(--c-slate-1)" stop-opacity="0"/>
</radialGradient>
</defs>
</svg>
""" |
421.272 1068.37M1067.68 280.706L560.886 144.91L324.25 1028.05M1097.62 364.596L622.1 142.859L235.705 971.487M1112.53 452.409L682.741 151.469L158.326 900.411M1111.97 541.478L740.966 170.478L94.4656 816.978M1095.94 629.096L795.005 199.309L46.0628 723.724M1064.95 712.601L843.216 237.086L14.5891 623.481M1019.93 789.456L884.136 282.661L1.00032 519.296M962.248 857.325L916.519 334.648L5.70944 414.334M893.655 914.147L939.384 391.47L28.5736 311.784M816.238 958.194L952.033 451.398L68.8979 214.763M732.348 988.128L954.085 512.613L125.457 126.218M644.535 1003.04L945.475 573.254L196.533 48.839" stroke="url(#paint0_radial_10067_25683)" stroke-dasharray="3 3"/>
<defs>
<radialGradient id="paint0_radial_10067_25683" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(556.764 548.471) rotate(90) scale(547.472 223.333)">
<stop offset="0.893272" stop-color="var(--c-slate-4)"/>
<stop offset="1" stop-color="var(--c-slate-1)" stop-opacity="0"/>
</radialGradient>
</defs>
</svg>
"""
|
feather = """<svg xmlns="http://www.w3.org/2000/svg" width="28" height="64" viewBox="0 0 28 64" fill="none">
<path d="M18.7241 58.9893C14.9594 58.7752 11.7858 61.1 11.7858 61.1C11.7858 61.1 14.7161 63.7719 18.4809 63.9861C22.2456 64.2002 25.4192 61.8754 25.4192 61.8754C25.4192 61.8754 22.4889 59.2035 18.7241 58.9893Z" fill="url(#paint0_linear_10744_8875)"/>
<path d="M12.5702 50.9467C8.86615 50.1928 5.42753 52.0393 5.42753 52.0393C5.42753 52.0393 7.99433 55.108 11.6984 55.8619C15.4024 56.6158 18.841 54.7693 18.841 54.7693C18.841 54.7693 16.2742 51.7005 12.5702 50.9467Z" fill="url(#paint1_linear_10744_8875)"/>
<path d="M8.63301 41.892C5.38806 40.8125 2.13169 42.0901 2.13169 42.0901C2.13169 42.0901 4.1364 45.1179 7.38135 46.1974C10.6263 47.2768 13.8827 45.9993 13.8827 45.9993C13.8827 45.9993 11.8779 42.9715 8.63301 41.892Z" fill="url(#paint2_linear_10744_8875)"/>
<path d="M6.36583 30.9632C3.44705 29.1025 0 29.5296 0 29.5296C0 29.5296 1.28522 32.9737 4.204 34.8344C7.12277 36.6952 | bottom_logo = """<svg xmlns="http://www.w3.org/2000/svg" width="974" height="182" viewBox="0 0 974 182" fill="none">
<path d="M853 73H817V1H853V73ZM853 73V109M853 73H937M853 109H817V181H853V109ZM853 109H937M937 109V181H973V109H937ZM937 109V73M937 73H973V1H937V73ZM121 109V181H157V109H121ZM121 109V73M121 109H37V181H1V1H157V73H121M121 73V37H37V73H121ZM349 181V1H469V37H385V73H469V109H385V181H349ZM505 181V1H541V145H625V181H505ZM661 181V1H781V37H697V73H781V109H697L697.526 145H781V181H661ZM193 1V181H313V145H229.526L229 109H313V73H229V37H313V1H193Z" stroke="url(#paint0_linear_10039_17181)" stroke-width="1.5"/>
<defs>
<linearGradient id="paint0_linear_10039_17181" x1="487" y1="1" x2="487" y2="181" gradientUnits="userSpaceOnUse">
<stop stop-color="var(--c-slate-4)"/>
<stop offset="1" stop-color="var(--c-slate-1)"/>
</linearGradient>
</defs>
</svg>
""" |
stop-color="var(--c-slate-4)"/>
<stop offset="1" stop-color="var(--c-slate-1)" stop-opacity="0"/>
</radialGradient>
</defs>
</svg>
"""
bottom_logo = """<svg xmlns="http://www.w3.org/2000/svg" width="974" height="182" viewBox="0 0 974 182" fill="none">
<path d="M853 73H817V1H853V73ZM853 73V109M853 73H937M853 109H817V181H853V109ZM853 109H937M937 109V181H973V109H937ZM937 109V73M937 73H973V1H937V73ZM121 109V181H157V109H121ZM121 109V73M121 109H37V181H1V1H157V73H121M121 73V37H37V73H121ZM349 181V1H469V37H385V73H469V109H385V181H349ZM505 181V1H541V145H625V181H505ZM661 181V1H781V37H697V73H781V109H697L697.526 145H781V181H661ZM193 1V181H313V145H229.526L229 109H313V73H229V37H313V1H193Z" stroke="url(#paint0_linear_10039_17181)" stroke-width="1.5"/>
<defs>
<linearGradient id="paint0_linear_10039_17181" x1="487" y1="1" x2="487" y2="181" gradientUnits="userSpaceOnUse">
<stop stop-color="var(--c-slate-4)"/>
<stop offset="1" stop-color="var(--c-slate-1)"/>
</linearGradient>
</defs>
</svg>
"""
|
feather_unstyled = """<svg xmlns="http://www.w3.org/2000/svg" width="28" height="64" viewBox="0 0 28 64" fill="none"><path d="M18.724 58.99c-3.765-.215-6.938 2.11-6.938 2.11s2.93 2.672 6.695 2.886 6.938-2.11 6.938-2.11-2.93-2.672-6.695-2.887m-6.154-8.042c-3.704-.754-7.142 1.092-7.142 1.092s2.566 3.069 6.27 3.823 7.143-1.093 7.143-1.093-2.567-3.068-6.27-3.822m-3.938-9.055c-3.245-1.08-6.501.198-6.501.198s2.004 3.028 5.25 4.107c3.244 1.08 6.5-.198 6.5-.198s-2.004-3.028-5.249-4.107M6.366 30.963C3.447 29.103 0 29.53 0 29.53s1.285 3.444 4.204 5.304 6.366 1.434 6.366 1.434-1.285-3.444-4.204-5.305m-.057-11.368C3.755 17.198.292 16.947.292 16.947s.677 3.636 3.23 6.033 6.016 2.647 6.016 2.647-.676-3.635-3.23-6.032m4.199-10.158C9.479 7.096 7.284 5.878 7.284 5.878s-.529 2.578.5 4.92c1.027 2.34 3.222 3.558 3.222 3.558s.529-2.578-.499-4.92" fill="currentColor"/><path d="M23.308 54.588C23.112 58.608 25.293 62 25.293 62s2.499-3.125 2.695-7.145-1.986-7.41-1.986-7.41-2.499 3.125-2.694 7.144m-5.573-7.33 | feather = """<svg xmlns="http://www.w3.org/2000/svg" width="28" height="64" viewBox="0 0 28 64" fill="none">
<path d="M18.7241 58.9893C14.9594 58.7752 11.7858 61.1 11.7858 61.1C11.7858 61.1 14.7161 63.7719 18.4809 63.9861C22.2456 64.2002 25.4192 61.8754 25.4192 61.8754C25.4192 61.8754 22.4889 59.2035 18.7241 58.9893Z" fill="url(#paint0_linear_10744_8875)"/>
<path d="M12.5702 50.9467C8.86615 50.1928 5.42753 52.0393 5.42753 52.0393C5.42753 52.0393 7.99433 55.108 11.6984 55.8619C15.4024 56.6158 18.841 54.7693 18.841 54.7693C18.841 54.7693 16.2742 51.7005 12.5702 50.9467Z" fill="url(#paint1_linear_10744_8875)"/>
<path d="M8.63301 41.892C5.38806 40.8125 2.13169 42.0901 2.13169 42.0901C2.13169 42.0901 4.1364 45.1179 7.38135 46.1974C10.6263 47.2768 13.8827 45.9993 13.8827 45.9993C13.8827 45.9993 11.8779 42.9715 8.63301 41.892Z" fill="url(#paint2_linear_10744_8875)"/>
<path d="M6.36583 30.9632C3.44705 29.1025 0 29.5296 0 29.5296C0 29.5296 1.28522 32.9737 4.204 34.8344C7.12277 36.6952 10.5698 36.2681 10.5698 36.2681C10.5698 36.2681 9.2846 32.824 6.36583 30.9632Z" fill="url(#paint3_linear_10744_8875)"/>
<path d="M6.30859 19.5949C3.75549 17.1979 0.292441 16.9472 0.292441 16.9472C0.292441 16.9472 0.968777 20.5828 3.52187 22.9798C6.07497 25.3768 9.53802 25.6274 9.53802 25.6274C9.53802 25.6274 8.86169 21.9918 6.30859 19.5949Z" fill="url(#paint4_linear_10744_8875)"/>
<path d="M10.507 9.43692C9.47929 7.09598 7.28417 5.87849 7.28417 5.87849C7.28417 5.87849 6.75538 8.45641 7.78314 10.7974C8.8109 13.1383 11.006 14.3558 11.006 14.3558C11.006 14.3558 11.5348 11.7779 10.507 9.43692Z" fill="url(#paint5_linear_10744_8875)"/>
<path d="M23.3075 54.5881C23.1117 58.6075 25.2932 61.999 25.2932 61.999C25.2932 61.999 27.7919 58.8737 27.9876 54.8543C28.1833 50.8348 26.0019 47.4434 26.0019 47.4434C26.0019 47.4434 23.5032 50.5687 23.3075 54.5881Z" fill="url(#paint6_linear_10744_8875)"/>
<path d="M17.7347 47.2517C17.0334 51.2056 18.7672 54.8794 18.7672 54.8794C18.7672 54.8794 21.6381 52.1427 22.3394 48.1888C23.0407 44.2349 21.3069 40.5611 21.3069 40.5611C21.3069 40.5611 18.436 43.2978 17.7347 47.2517Z" fill="url(#paint7_linear_10744_8875)"/>
<path d="M13.6121 39.1481C12.6052 42.6114 13.8059 46.0899 13.8059 46.0899C13.8059 46.0899 16.6391 43.9533 17.646 40.49C18.6528 37.0267 17.4521 33.5482 17.4521 33.5482C17.4521 33.5482 14.6189 35.6848 13.6121 39.1481Z" fill="url(#paint8_linear_10744_8875)"/>
<path d="M11.8098 29.5419C10.0708 32.656 10.4753 36.337 10.4753 36.337C10.4753 36.337 13.6993 34.9692 15.4383 31.8551C17.1773 28.7411 16.7728 25.06 16.7728 25.06C16.7728 25.06 13.5488 26.4279 11.8098 29.5419Z" fill="url(#paint9_linear_10744_8875)"/>
<path d="M11.9053 19.2566C9.66363 21.9795 9.43333 25.6768 9.43333 25.6768C9.43333 25.6768 12.8375 24.9593 15.0792 22.2364C17.3208 19.5135 17.5511 15.8162 17.5511 15.8162C17.5511 15.8162 14.147 16.5337 11.9053 19.2566Z" fill="url(#paint10_linear_10744_8875)"/>
<path d="M14.2531 10.9195C12.0619 12.0139 10.9245 14.3561 10.9245 14.3561C10.9245 14.3561 13.3396 14.924 15.5307 13.8296C17.7219 12.7353 18.8593 10.3931 18.8593 10.3931C18.8593 10.3931 16.4442 9.82517 14.2531 10.9195Z" fill="url(#paint11_linear_10744_8875)"/>
<path d="M14.0802 3.24658C12.8714 5.48365 13.1948 8.10115 13.1948 8.10115C13.1948 8.10115 15.478 7.09165 16.6867 4.85457C17.8955 2.6175 17.5721 0 17.5721 0C17.5721 0 15.2889 1.00951 14.0802 3.24658Z" fill="url(#paint12_linear_10744_8875)"/>
<defs>
<linearGradient id="paint0_linear_10744_8875" x1="28" y1="32" x2="0" y2="32" gradientUnits="userSpaceOnUse">
<stop stop-color="var(--c-slate-5)"/>
<stop offset="1" stop-color="var(--c-slate-4)"/>
</linearGradient>
<linearGradient id="paint1_linear_10744_8875" x1="28" y1="32" x2="0" y2="32" gradientUnits="userSpaceOnUse">
<stop stop-color="var(--c-slate-5)"/>
<stop offset="1" stop-color="var(--c-slate-4)"/>
</linearGradient>
<linearGradient id="paint2_linear_10744_8875" x1="28" y1="32" x2="0" y2="32" gradientUnits="userSpaceOnUse">
<stop stop-color="var(--c-slate-5)"/>
<stop offset="1" stop-color="var(--c-slate-4)"/>
</linearGradient>
<linearGradient id="paint3_linear_10744_8875" x1="28" y1="32" x2="0" y2="32" gradientUnits="userSpaceOnUse">
<stop stop-color="var(--c-slate-5)"/>
<stop offset="1" stop-color="var(--c-slate-4)"/>
</linearGradient>
<linearGradient id="paint4_linear_10744_8875" x1="28" y1="32" x2="0" y2="32" gradientUnits="userSpaceOnUse">
<stop stop-color="var(--c-slate-5)"/>
<stop offset="1" stop-color="var(--c-slate-4)"/>
</linearGradient>
<linearGradient id="paint5_linear_10744_8875" x1="28" y1="32" x2="0" y2="32" gradientUnits="userSpaceOnUse">
<stop stop-color="var(--c-slate-5)"/>
<stop offset="1" stop-color="var(--c-slate-4)"/>
</linearGradient>
<linearGradient id="paint6_linear_10744_8875" x1="28" y1="32" x2="0" y2="32" gradientUnits="userSpaceOnUse">
<stop stop-color="var(--c-slate-5)"/>
<stop offset="1" stop-color="var(--c-slate-4)"/>
</linearGradient>
<linearGradient id="paint7_linear_10744_8875" x1="28" y1="32" x2="0" y2="32" gradientUnits="userSpaceOnUse">
<stop stop-color="var(--c-slate-5)"/>
<stop offset="1" stop-color="var(--c-slate-4)"/>
</linearGradient>
<linearGradient id="paint8_linear_10744_8875" x1="28" y1="32" x2="0" y2="32" gradientUnits="userSpaceOnUse">
<stop stop-color="var(--c-slate-5)"/>
<stop offset="1" stop-color="var(--c-slate-4)"/>
</linearGradient>
<linearGradient id="paint9_linear_10744_8875" x1="28" y1="32" x2="0" y2="32" gradientUnits="userSpaceOnUse">
<stop stop-color="var(--c-slate-5)"/>
<stop offset="1" stop-color="var(--c-slate-4)"/>
</linearGradient>
<linearGradient id="paint10_linear_10744_8875" x1="28" y1="32" x2="0" y2="32" gradientUnits="userSpaceOnUse">
<stop stop-color="var(--c-slate-5)"/>
<stop offset="1" stop-color="var(--c-slate-4)"/>
</linearGradient>
<linearGradient id="paint11_linear_10744_8875" x1="28" y1="32" x2="0" y2="32" gradientUnits="userSpaceOnUse">
<stop stop-color="var(--c-slate-5)"/>
<stop offset="1" stop-color="var(--c-slate-4)"/>
</linearGradient>
<linearGradient id="paint12_linear_10744_8875" x1="28" y1="32" x2="0" y2="32" gradientUnits="userSpaceOnUse">
<stop stop-color="var(--c-slate-5)"/>
<stop offset="1" stop-color="var(--c-slate-4)"/>
</linearGradient>
</defs>
</svg>
""" |
(--c-slate-4)"/>
</linearGradient>
<linearGradient id="paint9_linear_10744_8875" x1="28" y1="32" x2="0" y2="32" gradientUnits="userSpaceOnUse">
<stop stop-color="var(--c-slate-5)"/>
<stop offset="1" stop-color="var(--c-slate-4)"/>
</linearGradient>
<linearGradient id="paint10_linear_10744_8875" x1="28" y1="32" x2="0" y2="32" gradientUnits="userSpaceOnUse">
<stop stop-color="var(--c-slate-5)"/>
<stop offset="1" stop-color="var(--c-slate-4)"/>
</linearGradient>
<linearGradient id="paint11_linear_10744_8875" x1="28" y1="32" x2="0" y2="32" gradientUnits="userSpaceOnUse">
<stop stop-color="var(--c-slate-5)"/>
<stop offset="1" stop-color="var(--c-slate-4)"/>
</linearGradient>
<linearGradient id="paint12_linear_10744_8875" x1="28" y1="32" x2="0" y2="32" gradientUnits="userSpaceOnUse">
<stop stop-color="var(--c-slate-5)"/>
<stop offset="1" stop-color="var(--c-slate-4)"/>
</linearGradient>
</defs>
</svg>
"""
|
cloud = """<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40" fill="none">
<path d="M29.9045 24.8605C30.2119 25.7282 29.7575 26.6807 28.8899 26.988C28.0005 27.303 26.973 27.981 25.8847 28.9357C24.8135 29.875 23.7715 31.0032 22.8485 32.1095C21.9289 33.212 21.1475 34.2683 20.5959 35.05C20.3205 35.4398 19.8869 36.0905 19.7404 36.3107C19.4182 36.8175 18.848 37.1122 18.2482 37.0813C17.6484 37.0507 17.1114 36.6995 16.8429 36.1623C16.1083 34.6933 15.4494 34.1083 15.1173 33.887C14.9768 33.7933 14.8818 33.7558 14.8441 33.743C13.9968 33.6643 13.3335 32.9515 13.3335 32.0837C13.3335 31.1632 14.0797 30.417 15.0002 30.417C15.2345 30.417 15.5725 30.484 15.7445 30.5332C16.0909 30.6322 16.509 30.8087 16.9664 31.1135C17.4235 31.4183 17.9029 31.8395 18.3842 32.416C18.9095 31.698 19.5569 30.852 20.289 29.9743C21.2779 28.789 22.4419 27.5213 23.6869 26.4295C24.9145 25.3528 26.3135 24.3642 27.777 23.8458C28.6447 23.5385 29.5972 23.9928 29.9045 24.8605Z" fill="var(--c-slate-9 | feather_unstyled = """<svg xmlns="http://www.w3.org/2000/svg" width="28" height="64" viewBox="0 0 28 64" fill="none"><path d="M18.724 58.99c-3.765-.215-6.938 2.11-6.938 2.11s2.93 2.672 6.695 2.886 6.938-2.11 6.938-2.11-2.93-2.672-6.695-2.887m-6.154-8.042c-3.704-.754-7.142 1.092-7.142 1.092s2.566 3.069 6.27 3.823 7.143-1.093 7.143-1.093-2.567-3.068-6.27-3.822m-3.938-9.055c-3.245-1.08-6.501.198-6.501.198s2.004 3.028 5.25 4.107c3.244 1.08 6.5-.198 6.5-.198s-2.004-3.028-5.249-4.107M6.366 30.963C3.447 29.103 0 29.53 0 29.53s1.285 3.444 4.204 5.304 6.366 1.434 6.366 1.434-1.285-3.444-4.204-5.305m-.057-11.368C3.755 17.198.292 16.947.292 16.947s.677 3.636 3.23 6.033 6.016 2.647 6.016 2.647-.676-3.635-3.23-6.032m4.199-10.158C9.479 7.096 7.284 5.878 7.284 5.878s-.529 2.578.5 4.92c1.027 2.34 3.222 3.558 3.222 3.558s.529-2.578-.499-4.92" fill="currentColor"/><path d="M23.308 54.588C23.112 58.608 25.293 62 25.293 62s2.499-3.125 2.695-7.145-1.986-7.41-1.986-7.41-2.499 3.125-2.694 7.144m-5.573-7.337c-.702 3.954 1.032 7.627 1.032 7.627s2.871-2.736 3.572-6.69-1.032-7.628-1.032-7.628-2.871 2.737-3.572 6.69m-4.123-8.103c-1.007 3.463.194 6.942.194 6.942s2.833-2.137 3.84-5.6-.194-6.942-.194-6.942-2.833 2.137-3.84 5.6m-1.802-9.606c-1.74 3.114-1.335 6.795-1.335 6.795s3.224-1.368 4.963-4.482c1.74-3.114 1.335-6.795 1.335-6.795s-3.224 1.368-4.963 4.482m.095-10.285c-2.241 2.723-2.472 6.42-2.472 6.42s3.405-.718 5.646-3.44 2.472-6.42 2.472-6.42-3.404.717-5.646 3.44m2.348-8.337c-2.191 1.094-3.328 3.436-3.328 3.436s2.415.568 4.606-.526c2.19-1.095 3.328-3.437 3.328-3.437s-2.415-.568-4.606.526m-.173-7.672c-1.209 2.237-.885 4.854-.885 4.854s2.283-1.01 3.492-3.246C17.895 2.617 17.572 0 17.572 0S15.29 1.01 14.08 3.247" fill="currentColor"/></svg>""" |
.878 7.284 5.878s-.529 2.578.5 4.92c1.027 2.34 3.222 3.558 3.222 3.558s.529-2.578-.499-4.92" fill="currentColor"/><path d="M23.308 54.588C23.112 58.608 25.293 62 25.293 62s2.499-3.125 2.695-7.145-1.986-7.41-1.986-7.41-2.499 3.125-2.694 7.144m-5.573-7.337c-.702 3.954 1.032 7.627 1.032 7.627s2.871-2.736 3.572-6.69-1.032-7.628-1.032-7.628-2.871 2.737-3.572 6.69m-4.123-8.103c-1.007 3.463.194 6.942.194 6.942s2.833-2.137 3.84-5.6-.194-6.942-.194-6.942-2.833 2.137-3.84 5.6m-1.802-9.606c-1.74 3.114-1.335 6.795-1.335 6.795s3.224-1.368 4.963-4.482c1.74-3.114 1.335-6.795 1.335-6.795s-3.224 1.368-4.963 4.482m.095-10.285c-2.241 2.723-2.472 6.42-2.472 6.42s3.405-.718 5.646-3.44 2.472-6.42 2.472-6.42-3.404.717-5.646 3.44m2.348-8.337c-2.191 1.094-3.328 3.436-3.328 3.436s2.415.568 4.606-.526c2.19-1.095 3.328-3.437 3.328-3.437s-2.415-.568-4.606.526m-.173-7.672c-1.209 2.237-.885 4.854-.885 4.854s2.283-1.01 3.492-3.246C17.895 2.617 17.572 0 17.572 0S15.29 1.01 14.08 3.247" fill="currentColor"/></svg>"""
|
database = """<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40" fill="none">
<g opacity="0.4">
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.1665 8.33341C4.1665 6.99526 4.89565 5.91998 5.77529 5.1401C6.65687 4.35848 7.83744 3.73075 9.1532 3.23733C11.7971 2.2459 15.3377 1.66675 19.1665 1.66675C22.9953 1.66675 26.536 2.2459 29.1798 3.23733C30.4955 3.73075 31.6762 4.35848 32.5577 5.1401C33.4373 5.91998 34.1665 6.99526 34.1665 8.33341V16.6461C34.1665 17.2586 34.1278 17.7669 34.0017 18.2109C33.91 18.5332 33.8643 18.6942 33.695 18.7491C33.5257 18.8039 33.3515 18.6667 33.0032 18.3922C32.294 17.8334 31.3992 17.5001 30.4263 17.5001C28.1252 17.5001 26.2597 19.3656 26.2597 21.6667V21.7241C26.2597 22.1064 26.2597 22.2976 26.1473 22.4354C26.0352 22.5734 25.8523 22.6112 25.4867 22.6869C23.4185 23.1147 21.245 23.3334 19.1665 23.3334C15.1853 23.3334 10.8557 22.5314 7.5845 20.9921C6.91282 20.6759 6.30525 20.3396 5.76327 19.9846C4.42212 19.1062 4.1665 18.2207 4.1 | cloud = """<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40" fill="none">
<path d="M29.9045 24.8605C30.2119 25.7282 29.7575 26.6807 28.8899 26.988C28.0005 27.303 26.973 27.981 25.8847 28.9357C24.8135 29.875 23.7715 31.0032 22.8485 32.1095C21.9289 33.212 21.1475 34.2683 20.5959 35.05C20.3205 35.4398 19.8869 36.0905 19.7404 36.3107C19.4182 36.8175 18.848 37.1122 18.2482 37.0813C17.6484 37.0507 17.1114 36.6995 16.8429 36.1623C16.1083 34.6933 15.4494 34.1083 15.1173 33.887C14.9768 33.7933 14.8818 33.7558 14.8441 33.743C13.9968 33.6643 13.3335 32.9515 13.3335 32.0837C13.3335 31.1632 14.0797 30.417 15.0002 30.417C15.2345 30.417 15.5725 30.484 15.7445 30.5332C16.0909 30.6322 16.509 30.8087 16.9664 31.1135C17.4235 31.4183 17.9029 31.8395 18.3842 32.416C18.9095 31.698 19.5569 30.852 20.289 29.9743C21.2779 28.789 22.4419 27.5213 23.6869 26.4295C24.9145 25.3528 26.3135 24.3642 27.777 23.8458C28.6447 23.5385 29.5972 23.9928 29.9045 24.8605Z" fill="var(--c-slate-9)"/>
<path opacity="0.4" d="M9.75565 11.439C5.37837 12.3255 2.08398 16.1931 2.08398 20.8315C2.08398 25.963 6.1171 30.1525 11.1864 30.403C11.8323 28.9383 13.2971 27.916 15.0007 27.916C15.5537 27.916 16.1384 28.0445 16.4318 28.1283C16.9219 28.2685 17.4544 28.4876 18.0058 28.8136C18.1246 28.6676 18.2459 28.5201 18.3698 28.3718C19.4081 27.1273 20.6636 25.7551 22.0389 24.549C23.3714 23.3803 25.0491 22.1591 26.9429 21.4883C29.1121 20.7201 31.4933 21.8558 32.2616 24.025C33.0298 26.1941 31.8941 28.5753 29.7249 29.3436C29.3434 29.4786 28.7606 29.8096 28.0083 30.4148H29.1673C33.9998 30.4148 37.9173 26.4973 37.9173 21.6648C37.9173 17.255 34.6551 13.607 30.4123 13.0027C30.2386 7.40186 25.6436 2.91479 20.0006 2.91479C14.8937 2.91479 10.6462 6.58906 9.75565 11.439Z" fill="var(--c-slate-9)"/>
</svg>
""" |
698 19.5569 30.852 20.289 29.9743C21.2779 28.789 22.4419 27.5213 23.6869 26.4295C24.9145 25.3528 26.3135 24.3642 27.777 23.8458C28.6447 23.5385 29.5972 23.9928 29.9045 24.8605Z" fill="var(--c-slate-9)"/>
<path opacity="0.4" d="M9.75565 11.439C5.37837 12.3255 2.08398 16.1931 2.08398 20.8315C2.08398 25.963 6.1171 30.1525 11.1864 30.403C11.8323 28.9383 13.2971 27.916 15.0007 27.916C15.5537 27.916 16.1384 28.0445 16.4318 28.1283C16.9219 28.2685 17.4544 28.4876 18.0058 28.8136C18.1246 28.6676 18.2459 28.5201 18.3698 28.3718C19.4081 27.1273 20.6636 25.7551 22.0389 24.549C23.3714 23.3803 25.0491 22.1591 26.9429 21.4883C29.1121 20.7201 31.4933 21.8558 32.2616 24.025C33.0298 26.1941 31.8941 28.5753 29.7249 29.3436C29.3434 29.4786 28.7606 29.8096 28.0083 30.4148H29.1673C33.9998 30.4148 37.9173 26.4973 37.9173 21.6648C37.9173 17.255 34.6551 13.607 30.4123 13.0027C30.2386 7.40186 25.6436 2.91479 20.0006 2.91479C14.8937 2.91479 10.6462 6.58906 9.75565 11.439Z" fill="var(--c-slate-9)"/>
</svg>
"""
|
star = """<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none">
<path opacity="0.4" d="M1.0415 9.99996C1.0415 14.9475 5.05229 18.9583 9.99984 18.9583C14.9474 18.9583 18.9582 14.9475 18.9582 9.99996C18.9582 5.05241 14.9474 1.04163 9.99984 1.04163C5.05229 1.04163 1.0415 5.05241 1.0415 9.99996Z" fill="currentColor"/>
<path d="M9.999 5.20837C10.4667 5.20837 10.835 5.56161 11.0702 6.03824L11.8556 7.62195C11.8794 7.67097 11.9358 7.73998 12.0207 7.80312C12.1055 7.86619 12.1885 7.90099 12.2431 7.91017L13.6647 8.14832C14.1782 8.23461 14.6087 8.48629 14.7484 8.92462C14.8881 9.36262 14.6835 9.81771 14.3142 10.1876L13.2094 11.3015C13.1657 11.3457 13.1166 11.4289 13.0858 11.5372C13.0553 11.6448 13.0526 11.7427 13.0665 11.806L13.0667 11.807L13.3827 13.1845C13.5137 13.7578 13.4702 14.3264 13.0659 14.6235C12.6602 14.9218 12.1057 14.7896 11.6019 14.4896L10.2692 13.6942C10.2133 13.6608 10.1172 13.6337 10.0012 13.6337C9.88608 13.6337 9.78792 13.6604 9.72833 | database = """<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40" fill="none">
<g opacity="0.4">
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.1665 8.33341C4.1665 6.99526 4.89565 5.91998 5.77529 5.1401C6.65687 4.35848 7.83744 3.73075 9.1532 3.23733C11.7971 2.2459 15.3377 1.66675 19.1665 1.66675C22.9953 1.66675 26.536 2.2459 29.1798 3.23733C30.4955 3.73075 31.6762 4.35848 32.5577 5.1401C33.4373 5.91998 34.1665 6.99526 34.1665 8.33341V16.6461C34.1665 17.2586 34.1278 17.7669 34.0017 18.2109C33.91 18.5332 33.8643 18.6942 33.695 18.7491C33.5257 18.8039 33.3515 18.6667 33.0032 18.3922C32.294 17.8334 31.3992 17.5001 30.4263 17.5001C28.1252 17.5001 26.2597 19.3656 26.2597 21.6667V21.7241C26.2597 22.1064 26.2597 22.2976 26.1473 22.4354C26.0352 22.5734 25.8523 22.6112 25.4867 22.6869C23.4185 23.1147 21.245 23.3334 19.1665 23.3334C15.1853 23.3334 10.8557 22.5314 7.5845 20.9921C6.91282 20.6759 6.30525 20.3396 5.76327 19.9846C4.42212 19.1062 4.1665 18.2207 4.1665 16.6461V8.33341ZM10.1217 10.2308C9.13122 9.84091 8.42524 9.4214 7.98665 9.03255C7.39217 8.50548 7.39217 8.16135 7.98665 7.63428C8.45449 7.21951 9.22654 6.76983 10.3236 6.35843C12.5055 5.54023 15.6316 5.00008 19.1665 5.00008C22.7015 5.00008 25.8275 5.54023 28.0093 6.35843C29.1065 6.76983 29.8785 7.21951 30.3463 7.63428C30.9408 8.16135 30.9408 8.50548 30.3463 9.03255C29.8785 9.44731 29.1065 9.897 28.0093 10.3084C25.8275 11.1266 22.7015 11.6667 19.1665 11.6667C17.6713 11.6667 16.2493 11.5701 14.941 11.3967C13.3129 11.1809 11.7044 10.8538 10.1217 10.2308ZM11.193 16.8729C10.5318 16.6742 9.83475 17.0491 9.636 17.7102C9.43727 18.3714 9.8121 19.0684 10.4732 19.2671C11.5393 19.5876 12.7188 19.8479 13.9788 20.0391C14.6614 20.1427 15.2987 19.6734 15.4023 18.9909C15.5059 18.3082 15.0366 17.6711 14.354 17.5674C13.1952 17.3916 12.1322 17.1554 11.193 16.8729Z" fill="var(--c-slate-9)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M26.2597 26.3412C26.2597 26.1517 26.2597 26.057 26.1988 26.007C26.138 25.957 26.0445 25.9755 25.8573 26.0124C23.6313 26.4512 21.3385 26.6665 19.1665 26.6665C14.7432 26.6665 10.182 25.8982 6.16517 24.0079C5.84324 23.8564 5.52504 23.6964 5.21229 23.5275C4.73184 23.2682 4.4916 23.1385 4.32905 23.2355C4.1665 23.3324 4.1665 23.5975 4.1665 24.1277V31.6665C4.1665 33.0047 4.89565 34.08 5.77529 34.8599C6.65687 35.6415 7.83744 36.2692 9.1532 36.7627C11.7971 37.754 15.3377 38.3332 19.1665 38.3332C21.4907 38.3332 23.7087 38.1199 25.6843 37.7304C26.0575 37.6567 26.183 37.1834 25.9178 36.9109C25.1763 36.1487 24.46 35.2365 23.9805 34.6249C23.7018 34.2697 23.4285 33.913 23.1932 33.5272C23.0267 33.2542 21.8835 31.3795 22.94 29.2015C23.744 27.5442 25.1962 26.9975 25.9845 26.8139C26.1198 26.7824 26.1873 26.7667 26.2235 26.7212C26.2597 26.6757 26.2597 26.6094 26.2597 26.477V26.3412ZM11.193 28.5397C10.5318 28.341 9.83475 28.7159 9.636 29.377C9.43727 30.0382 9.8121 30.7352 10.4732 30.9339C11.5393 31.2544 12.7188 31.5147 13.9788 31.7059C14.6614 31.8095 15.2987 31.3402 15.4023 30.6577C15.5059 29.975 15.0366 29.3379 14.354 29.2342C13.1952 29.0584 12.1322 28.8222 11.193 28.5397Z" fill="var(--c-slate-9)"/>
</g>
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.1937 16.8697C10.5325 16.6709 9.83548 17.0457 9.63675 17.7069C9.438 18.368 9.81285 19.065 10.474 19.2639C11.54 19.5844 12.7195 19.8445 13.9796 20.0359C14.6621 20.1394 15.2994 19.67 15.403 18.9875C15.5066 18.305 15.0373 17.6677 14.3548 17.5642C13.1959 17.3882 12.1329 17.152 11.1937 16.8697Z" fill="var(--c-slate-9)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.1937 28.5364C10.5325 28.3376 9.83548 28.7124 9.63675 29.3736C9.438 30.0348 9.81285 30.7318 10.474 30.9306C11.54 31.2511 12.7195 31.5113 13.9796 31.7026C14.6621 31.8061 15.2994 31.3368 15.403 30.6543C15.5066 29.9718 15.0373 29.3344 14.3548 29.2309C13.1959 29.0549 12.1329 28.8188 11.1937 28.5364Z" fill="var(--c-slate-9)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M32.0931 21.6667C32.0931 20.7462 31.3468 20 30.4265 20C29.506 20 28.7598 20.7462 28.7598 21.6667V29.1667H27.7693C27.4521 29.1665 27.1328 29.1643 26.8175 29.2037C26.6068 29.23 25.6466 29.3497 25.1895 30.2923C24.7311 31.2372 25.2345 32.0707 25.3433 32.251C25.5206 32.545 25.7365 32.8125 25.948 33.0822C26.4391 33.7087 27.0756 34.5157 27.7098 35.1673C28.4286 35.9062 29.3271 36.6667 30.4166 36.6667C31.5061 36.6667 32.4046 35.9062 33.1235 35.1673C33.7576 34.5157 34.3941 33.7087 34.8853 33.0822C35.0968 32.8125 35.3125 32.545 35.49 32.251C35.5988 32.0707 36.1021 31.237 35.6438 30.2923C35.3316 29.6488 34.7005 29.2892 34.0101 29.203C33.7161 29.1662 33.3566 29.1665 33.064 29.1667H32.0931V21.6667Z" fill="var(--c-slate-9)"/>
</svg>
""" |
C11.54 31.2511 12.7195 31.5113 13.9796 31.7026C14.6621 31.8061 15.2994 31.3368 15.403 30.6543C15.5066 29.9718 15.0373 29.3344 14.3548 29.2309C13.1959 29.0549 12.1329 28.8188 11.1937 28.5364Z" fill="var(--c-slate-9)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M32.0931 21.6667C32.0931 20.7462 31.3468 20 30.4265 20C29.506 20 28.7598 20.7462 28.7598 21.6667V29.1667H27.7693C27.4521 29.1665 27.1328 29.1643 26.8175 29.2037C26.6068 29.23 25.6466 29.3497 25.1895 30.2923C24.7311 31.2372 25.2345 32.0707 25.3433 32.251C25.5206 32.545 25.7365 32.8125 25.948 33.0822C26.4391 33.7087 27.0756 34.5157 27.7098 35.1673C28.4286 35.9062 29.3271 36.6667 30.4166 36.6667C31.5061 36.6667 32.4046 35.9062 33.1235 35.1673C33.7576 34.5157 34.3941 33.7087 34.8853 33.0822C35.0968 32.8125 35.3125 32.545 35.49 32.251C35.5988 32.0707 36.1021 31.237 35.6438 30.2923C35.3316 29.6488 34.7005 29.2892 34.0101 29.203C33.7161 29.1662 33.3566 29.1665 33.064 29.1667H32.0931V21.6667Z" fill="var(--c-slate-9)"/>
</svg>
"""
|
fork = """<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none">
<path opacity="0.4" fill-rule="evenodd" clip-rule="evenodd" d="M4.99984 5.83337C5.46008 5.83337 5.83317 6.20647 5.83317 6.66671C5.83317 7.47594 5.83495 7.99903 5.88676 8.38446C5.93536 8.74587 6.01381 8.85921 6.07726 8.92262C6.14069 8.98604 6.25398 9.06454 6.61543 9.11312C7.00086 9.16496 7.52395 9.16671 8.33317 9.16671H11.6665C12.4758 9.16671 12.9988 9.16496 13.3843 9.11312C13.7457 9.06454 13.859 8.98604 13.9224 8.92262C13.9858 8.85921 14.0643 8.74587 14.1129 8.38446C14.1648 7.99903 14.1665 7.47594 14.1665 6.66671C14.1665 6.20647 14.5396 5.83337 14.9998 5.83337C15.4601 5.83337 15.8332 6.20647 15.8332 6.66671V6.72157C15.8333 7.46031 15.8333 8.09682 15.7648 8.60654C15.6913 9.15279 15.5257 9.67646 15.1009 10.1011C14.6763 10.5259 14.1526 10.6915 13.6063 10.765C13.0966 10.8335 12.4601 10.8335 11.7213 10.8334H10.8332V13.3334C10.8332 13.7936 10.4601 14.1667 9.99984 14.1667C9.53959 14.1 | star = """<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none">
<path opacity="0.4" d="M1.0415 9.99996C1.0415 14.9475 5.05229 18.9583 9.99984 18.9583C14.9474 18.9583 18.9582 14.9475 18.9582 9.99996C18.9582 5.05241 14.9474 1.04163 9.99984 1.04163C5.05229 1.04163 1.0415 5.05241 1.0415 9.99996Z" fill="currentColor"/>
<path d="M9.999 5.20837C10.4667 5.20837 10.835 5.56161 11.0702 6.03824L11.8556 7.62195C11.8794 7.67097 11.9358 7.73998 12.0207 7.80312C12.1055 7.86619 12.1885 7.90099 12.2431 7.91017L13.6647 8.14832C14.1782 8.23461 14.6087 8.48629 14.7484 8.92462C14.8881 9.36262 14.6835 9.81771 14.3142 10.1876L13.2094 11.3015C13.1657 11.3457 13.1166 11.4289 13.0858 11.5372C13.0553 11.6448 13.0526 11.7427 13.0665 11.806L13.0667 11.807L13.3827 13.1845C13.5137 13.7578 13.4702 14.3264 13.0659 14.6235C12.6602 14.9218 12.1057 14.7896 11.6019 14.4896L10.2692 13.6942C10.2133 13.6608 10.1172 13.6337 10.0012 13.6337C9.88608 13.6337 9.78792 13.6604 9.72833 13.6951L9.7275 13.6955L8.3975 14.4895C7.89433 14.7905 7.34054 14.9204 6.93475 14.6218C6.53066 14.3245 6.48505 13.757 6.61651 13.1842L6.93243 11.807L6.93262 11.806C6.94647 11.7427 6.94376 11.6448 6.91321 11.5372C6.88246 11.4289 6.83343 11.3457 6.78966 11.3015L5.68442 10.1872C5.31751 9.81729 5.11363 9.36254 5.25213 8.92521C5.39104 8.48662 5.82062 8.23464 6.33448 8.14829L7.75495 7.91034C7.80702 7.90131 7.88927 7.86682 7.97386 7.80359C8.0586 7.74023 8.1152 7.67107 8.13906 7.62195L8.14026 7.61951L8.92458 6.03782C9.162 5.56159 9.53183 5.20837 9.999 5.20837Z" fill="currentColor"/>
</svg>
""" |
14.7484 8.92462C14.8881 9.36262 14.6835 9.81771 14.3142 10.1876L13.2094 11.3015C13.1657 11.3457 13.1166 11.4289 13.0858 11.5372C13.0553 11.6448 13.0526 11.7427 13.0665 11.806L13.0667 11.807L13.3827 13.1845C13.5137 13.7578 13.4702 14.3264 13.0659 14.6235C12.6602 14.9218 12.1057 14.7896 11.6019 14.4896L10.2692 13.6942C10.2133 13.6608 10.1172 13.6337 10.0012 13.6337C9.88608 13.6337 9.78792 13.6604 9.72833 13.6951L9.7275 13.6955L8.3975 14.4895C7.89433 14.7905 7.34054 14.9204 6.93475 14.6218C6.53066 14.3245 6.48505 13.757 6.61651 13.1842L6.93243 11.807L6.93262 11.806C6.94647 11.7427 6.94376 11.6448 6.91321 11.5372C6.88246 11.4289 6.83343 11.3457 6.78966 11.3015L5.68442 10.1872C5.31751 9.81729 5.11363 9.36254 5.25213 8.92521C5.39104 8.48662 5.82062 8.23464 6.33448 8.14829L7.75495 7.91034C7.80702 7.90131 7.88927 7.86682 7.97386 7.80359C8.0586 7.74023 8.1152 7.67107 8.13906 7.62195L8.14026 7.61951L8.92458 6.03782C9.162 5.56159 9.53183 5.20837 9.999 5.20837Z" fill="currentColor"/>
</svg>
"""
|
eye_big = """<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40" fill="none">
<path opacity="0.4" d="M20.0002 7.08325C15.7159 7.08325 12.0434 8.96893 9.20068 11.1882C6.35538 13.4095 4.25226 16.0328 3.07585 17.6824L2.98715 17.8061C2.56523 18.3929 2.0835 19.0629 2.0835 19.9999C2.0835 20.9369 2.56523 21.6069 2.98715 22.1938L3.07585 22.3174C4.25226 23.9671 6.35538 26.5903 9.20068 28.8116C12.0434 31.0309 15.7159 32.9166 20.0002 32.9166C24.2845 32.9166 27.9568 31.0309 30.7997 28.8116C33.645 26.5903 35.748 23.9671 36.9245 22.3174L37.0132 22.1938C37.4352 21.6069 37.9168 20.9369 37.9168 19.9999C37.9168 19.0629 37.4352 18.3929 37.0132 17.8061L36.9245 17.6824C35.748 16.0328 33.645 13.4095 30.7997 11.1882C27.9568 8.96893 24.2845 7.08325 20.0002 7.08325Z" fill="var(--c-slate-9)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M20.0001 25.8334C16.7784 25.8334 14.1667 23.2217 14.1667 20.0001C14.1667 16.7784 16.7784 14.1667 20.0001 14.1667C23.2217 14.1667 25.8334 16 | fork = """<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none">
<path opacity="0.4" fill-rule="evenodd" clip-rule="evenodd" d="M4.99984 5.83337C5.46008 5.83337 5.83317 6.20647 5.83317 6.66671C5.83317 7.47594 5.83495 7.99903 5.88676 8.38446C5.93536 8.74587 6.01381 8.85921 6.07726 8.92262C6.14069 8.98604 6.25398 9.06454 6.61543 9.11312C7.00086 9.16496 7.52395 9.16671 8.33317 9.16671H11.6665C12.4758 9.16671 12.9988 9.16496 13.3843 9.11312C13.7457 9.06454 13.859 8.98604 13.9224 8.92262C13.9858 8.85921 14.0643 8.74587 14.1129 8.38446C14.1648 7.99903 14.1665 7.47594 14.1665 6.66671C14.1665 6.20647 14.5396 5.83337 14.9998 5.83337C15.4601 5.83337 15.8332 6.20647 15.8332 6.66671V6.72157C15.8333 7.46031 15.8333 8.09682 15.7648 8.60654C15.6913 9.15279 15.5257 9.67646 15.1009 10.1011C14.6763 10.5259 14.1526 10.6915 13.6063 10.765C13.0966 10.8335 12.4601 10.8335 11.7213 10.8334H10.8332V13.3334C10.8332 13.7936 10.4601 14.1667 9.99984 14.1667C9.53959 14.1667 9.16651 13.7936 9.16651 13.3334V10.8334H8.33317C8.31483 10.8334 8.29654 10.8334 8.27831 10.8334C7.53958 10.8335 6.90306 10.8335 6.39335 10.765C5.84709 10.6915 5.32346 10.5259 4.89874 10.1011C4.47402 9.67646 4.30841 9.15279 4.23496 8.60654C4.16643 8.09682 4.16646 7.46031 4.16651 6.72157C4.16651 6.70334 4.16651 6.68506 4.16651 6.66671C4.16651 6.20647 4.53961 5.83337 4.99984 5.83337Z" fill="currentColor"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M2.7085 5.00004C2.7085 3.73439 3.73451 2.70837 5.00016 2.70837C6.26581 2.70837 7.29183 3.73439 7.29183 5.00004C7.29183 6.26569 6.26581 7.29171 5.00016 7.29171C3.73451 7.29171 2.7085 6.26569 2.7085 5.00004Z" fill="currentColor"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M7.7085 15C7.7085 13.7344 8.7345 12.7084 10.0002 12.7084C11.2658 12.7084 12.2918 13.7344 12.2918 15C12.2918 16.2657 11.2658 17.2917 10.0002 17.2917C8.7345 17.2917 7.7085 16.2657 7.7085 15Z" fill="currentColor"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.7085 5.00004C12.7085 3.73439 13.7345 2.70837 15.0002 2.70837C16.2658 2.70837 17.2918 3.73439 17.2918 5.00004C17.2918 6.26569 16.2658 7.29171 15.0002 7.29171C13.7345 7.29171 12.7085 6.26569 12.7085 5.00004Z" fill="currentColor"/>
</svg>
""" |
8.09682 4.16646 7.46031 4.16651 6.72157C4.16651 6.70334 4.16651 6.68506 4.16651 6.66671C4.16651 6.20647 4.53961 5.83337 4.99984 5.83337Z" fill="currentColor"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M2.7085 5.00004C2.7085 3.73439 3.73451 2.70837 5.00016 2.70837C6.26581 2.70837 7.29183 3.73439 7.29183 5.00004C7.29183 6.26569 6.26581 7.29171 5.00016 7.29171C3.73451 7.29171 2.7085 6.26569 2.7085 5.00004Z" fill="currentColor"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M7.7085 15C7.7085 13.7344 8.7345 12.7084 10.0002 12.7084C11.2658 12.7084 12.2918 13.7344 12.2918 15C12.2918 16.2657 11.2658 17.2917 10.0002 17.2917C8.7345 17.2917 7.7085 16.2657 7.7085 15Z" fill="currentColor"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.7085 5.00004C12.7085 3.73439 13.7345 2.70837 15.0002 2.70837C16.2658 2.70837 17.2918 3.73439 17.2918 5.00004C17.2918 6.26569 16.2658 7.29171 15.0002 7.29171C13.7345 7.29171 12.7085 6.26569 12.7085 5.00004Z" fill="currentColor"/>
</svg>
"""
|
image_ai = """<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="injected-svg" data-src="https://cdn.hugeicons.com/icons/ai-image-bulk-rounded.svg" xmlns:xlink="http://www.w3.org/1999/xlink" role="img" color="var(--c-slate-9)">
<path d="M9.5 8.5C9.5 9.60457 8.60457 10.5 7.5 10.5C6.39543 10.5 5.5 9.60457 5.5 8.5C5.5 7.39543 6.39543 6.5 7.5 6.5C8.60457 6.5 9.5 7.39543 9.5 8.5Z" fill="var(--c-slate-9)"></path>
<path d="M18.5 1.25C18.8138 1.25 19.0945 1.4454 19.2034 1.73972L19.4613 2.43675C19.8233 3.4151 19.9388 3.68091 20.1289 3.87106C20.3191 4.06121 20.5849 4.17667 21.5633 4.53869L22.2603 4.79661C22.5546 4.90552 22.75 5.18617 22.75 5.5C22.75 5.81383 22.5546 6.09448 22.2603 6.20339L21.5633 6.46131C20.5849 6.82333 20.3191 6.93879 20.1289 7.12894C19.9388 7.31909 19.8233 7.5849 19.4613 8.56325L19.2034 9.26028C19.0945 9.5546 18.8138 9.75 18.5 9.75C18.1862 9.75 17.9055 9.5546 17.7966 9.26028L17.5387 8.56325C17.1767 7.5849 17.0612 7.31909 16. | eye_big = """<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40" fill="none">
<path opacity="0.4" d="M20.0002 7.08325C15.7159 7.08325 12.0434 8.96893 9.20068 11.1882C6.35538 13.4095 4.25226 16.0328 3.07585 17.6824L2.98715 17.8061C2.56523 18.3929 2.0835 19.0629 2.0835 19.9999C2.0835 20.9369 2.56523 21.6069 2.98715 22.1938L3.07585 22.3174C4.25226 23.9671 6.35538 26.5903 9.20068 28.8116C12.0434 31.0309 15.7159 32.9166 20.0002 32.9166C24.2845 32.9166 27.9568 31.0309 30.7997 28.8116C33.645 26.5903 35.748 23.9671 36.9245 22.3174L37.0132 22.1938C37.4352 21.6069 37.9168 20.9369 37.9168 19.9999C37.9168 19.0629 37.4352 18.3929 37.0132 17.8061L36.9245 17.6824C35.748 16.0328 33.645 13.4095 30.7997 11.1882C27.9568 8.96893 24.2845 7.08325 20.0002 7.08325Z" fill="var(--c-slate-9)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M20.0001 25.8334C16.7784 25.8334 14.1667 23.2217 14.1667 20.0001C14.1667 16.7784 16.7784 14.1667 20.0001 14.1667C23.2217 14.1667 25.8334 16.7784 25.8334 20.0001C25.8334 23.2217 23.2217 25.8334 20.0001 25.8334Z" fill="var(--c-slate-9)"/>
</svg>
""" |
<path opacity="0.4" d="M20.0002 7.08325C15.7159 7.08325 12.0434 8.96893 9.20068 11.1882C6.35538 13.4095 4.25226 16.0328 3.07585 17.6824L2.98715 17.8061C2.56523 18.3929 2.0835 19.0629 2.0835 19.9999C2.0835 20.9369 2.56523 21.6069 2.98715 22.1938L3.07585 22.3174C4.25226 23.9671 6.35538 26.5903 9.20068 28.8116C12.0434 31.0309 15.7159 32.9166 20.0002 32.9166C24.2845 32.9166 27.9568 31.0309 30.7997 28.8116C33.645 26.5903 35.748 23.9671 36.9245 22.3174L37.0132 22.1938C37.4352 21.6069 37.9168 20.9369 37.9168 19.9999C37.9168 19.0629 37.4352 18.3929 37.0132 17.8061L36.9245 17.6824C35.748 16.0328 33.645 13.4095 30.7997 11.1882C27.9568 8.96893 24.2845 7.08325 20.0002 7.08325Z" fill="var(--c-slate-9)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M20.0001 25.8334C16.7784 25.8334 14.1667 23.2217 14.1667 20.0001C14.1667 16.7784 16.7784 14.1667 20.0001 14.1667C23.2217 14.1667 25.8334 16.7784 25.8334 20.0001C25.8334 23.2217 23.2217 25.8334 20.0001 25.8334Z" fill="var(--c-slate-9)"/>
</svg>
"""
|
dice = """<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24" color="currentColor" fill="none">
<path d="M12 21C15.7497 21 17.6246 21 18.9389 20.0451C19.3634 19.7367 19.7367 19.3634 20.0451 18.9389C21 17.6246 21 15.7497 21 12C21 8.25027 21 6.3754 20.0451 5.06107C19.7367 4.6366 19.3634 4.26331 18.9389 3.95492C17.6246 3 15.7497 3 12 3C8.25027 3 6.3754 3 5.06107 3.95491C4.6366 4.26331 4.26331 4.6366 3.95492 5.06107C3 6.3754 3 8.25027 3 12C3 15.7497 3 17.6246 3.95491 18.9389C4.26331 19.3634 4.6366 19.7367 5.06107 20.0451C6.3754 21 8.25027 21 12 21Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
<path d="M12 12V12.01" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" />
<path d="M8 8V8.01" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" />
<path d="M16 16V16.01" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="r | image_ai = """<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="injected-svg" data-src="https://cdn.hugeicons.com/icons/ai-image-bulk-rounded.svg" xmlns:xlink="http://www.w3.org/1999/xlink" role="img" color="var(--c-slate-9)">
<path d="M9.5 8.5C9.5 9.60457 8.60457 10.5 7.5 10.5C6.39543 10.5 5.5 9.60457 5.5 8.5C5.5 7.39543 6.39543 6.5 7.5 6.5C8.60457 6.5 9.5 7.39543 9.5 8.5Z" fill="var(--c-slate-9)"></path>
<path d="M18.5 1.25C18.8138 1.25 19.0945 1.4454 19.2034 1.73972L19.4613 2.43675C19.8233 3.4151 19.9388 3.68091 20.1289 3.87106C20.3191 4.06121 20.5849 4.17667 21.5633 4.53869L22.2603 4.79661C22.5546 4.90552 22.75 5.18617 22.75 5.5C22.75 5.81383 22.5546 6.09448 22.2603 6.20339L21.5633 6.46131C20.5849 6.82333 20.3191 6.93879 20.1289 7.12894C19.9388 7.31909 19.8233 7.5849 19.4613 8.56325L19.2034 9.26028C19.0945 9.5546 18.8138 9.75 18.5 9.75C18.1862 9.75 17.9055 9.5546 17.7966 9.26028L17.5387 8.56325C17.1767 7.5849 17.0612 7.31909 16.8711 7.12894C16.6809 6.93879 16.4151 6.82333 15.4367 6.46131L14.7397 6.20339C14.4454 6.09448 14.25 5.81383 14.25 5.5C14.25 5.18617 14.4454 4.90552 14.7397 4.79661L15.4367 4.53869C16.4151 4.17667 16.6809 4.06121 16.8711 3.87106C17.0612 3.68091 17.1767 3.4151 17.5387 2.43675L17.7966 1.73972C17.9055 1.4454 18.1862 1.25 18.5 1.25Z" fill="var(--c-slate-9)"></path>
<path opacity="0.4" fill-rule="evenodd" clip-rule="evenodd" d="M11.5015 2.25H11.4273H11.4273C9.30315 2.24998 7.60973 2.24996 6.28198 2.42847C4.91104 2.61279 3.78471 3.00337 2.89404 3.89404C2.00337 4.78471 1.61279 5.91104 1.42847 7.28198C1.24996 8.60973 1.24998 10.3031 1.25 12.4273V12.4273V12.5727V12.5727C1.24998 14.6969 1.24996 16.3903 1.42847 17.718C1.61279 19.089 2.00337 20.2153 2.89404 21.106C3.78471 21.9966 4.91104 22.3872 6.28198 22.5715C7.60974 22.75 9.30317 22.75 11.4274 22.75H11.5727C13.6968 22.75 15.3903 22.75 16.718 22.5715C18.089 22.3872 19.2153 21.9966 20.106 21.106C20.9966 20.2153 21.3872 19.089 21.5715 17.718C21.75 16.3903 21.75 14.6968 21.75 12.5727V12.4987C21.75 11.9817 21.75 11.4923 21.7477 11.0309C21.7451 10.4918 21.3059 10.0569 20.7667 10.0595C20.2276 10.0622 19.7927 10.5014 19.7954 11.0405C19.7976 11.4966 19.7976 11.9814 19.7976 12.5C19.7976 12.799 19.7976 13.0861 19.7971 13.362C13.7051 10.3912 9.3109 15.6805 5.41613 20.3954C4.91695 20.2327 4.56206 20.0129 4.27458 19.7254C3.80713 19.258 3.51865 18.6123 3.36344 17.4579C3.20446 16.2753 3.20238 14.7135 3.20238 12.5C3.20238 10.2865 3.20446 8.72466 3.36344 7.54213C3.51865 6.38769 3.80713 5.74203 4.27458 5.27458C4.74203 4.80713 5.38769 4.51865 6.54213 4.36344C7.72466 4.20446 9.28655 4.20238 11.5 4.20238C12.0186 4.20238 12.5034 4.20238 12.9595 4.20463C13.4986 4.20729 13.9378 3.77239 13.9405 3.23326C13.9431 2.69413 13.5082 2.25493 12.9691 2.25227C12.5078 2.25 12.0184 2.25 11.5015 2.25Z" fill="var(--c-slate-9)"></path>
</svg>
""" |
3 22.75 16.718 22.5715C18.089 22.3872 19.2153 21.9966 20.106 21.106C20.9966 20.2153 21.3872 19.089 21.5715 17.718C21.75 16.3903 21.75 14.6968 21.75 12.5727V12.4987C21.75 11.9817 21.75 11.4923 21.7477 11.0309C21.7451 10.4918 21.3059 10.0569 20.7667 10.0595C20.2276 10.0622 19.7927 10.5014 19.7954 11.0405C19.7976 11.4966 19.7976 11.9814 19.7976 12.5C19.7976 12.799 19.7976 13.0861 19.7971 13.362C13.7051 10.3912 9.3109 15.6805 5.41613 20.3954C4.91695 20.2327 4.56206 20.0129 4.27458 19.7254C3.80713 19.258 3.51865 18.6123 3.36344 17.4579C3.20446 16.2753 3.20238 14.7135 3.20238 12.5C3.20238 10.2865 3.20446 8.72466 3.36344 7.54213C3.51865 6.38769 3.80713 5.74203 4.27458 5.27458C4.74203 4.80713 5.38769 4.51865 6.54213 4.36344C7.72466 4.20446 9.28655 4.20238 11.5 4.20238C12.0186 4.20238 12.5034 4.20238 12.9595 4.20463C13.4986 4.20729 13.9378 3.77239 13.9405 3.23326C13.9431 2.69413 13.5082 2.25493 12.9691 2.25227C12.5078 2.25 12.0184 2.25 11.5015 2.25Z" fill="var(--c-slate-9)"></path>
</svg>
"""
|
contributors = """<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 24 24" fill="none" class="injected-svg" data-src="https://cdn.hugeicons.com/icons/user-multiple-02-bulk-rounded.svg" xmlns:xlink="http://www.w3.org/1999/xlink" role="img" color="var(--c-slate-9)">
<path opacity="0.4" d="M4.25 7C4.25 4.37665 6.37665 2.25 9 2.25C11.6234 2.25 13.75 4.37665 13.75 7C13.75 9.62335 11.6234 11.75 9 11.75C6.37665 11.75 4.25 9.62335 4.25 7Z" fill="var(--c-slate-9)"></path>
<path opacity="0.4" d="M1.25 19C1.25 15.8244 3.82436 13.25 7 13.25H11C14.1756 13.25 16.75 15.8244 16.75 19C16.75 20.5188 15.5188 21.75 14 21.75H4C2.48122 21.75 1.25 20.5188 1.25 19Z" fill="var(--c-slate-9)"></path>
<path d="M13.374 11.4644C13.8812 11.6492 14.4288 11.75 15 11.75C17.6233 11.75 19.75 9.62335 19.75 7C19.75 4.37665 17.6233 2.25 15 2.25C14.4288 2.25 13.8812 2.35081 13.374 2.5356C14.5317 3.67 15.25 5.25111 15.25 7C15.25 8.74889 14.5317 10.33 13.374 11.4644Z" fill="var(--c-slate-9)"></path> | dice = """<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24" color="currentColor" fill="none">
<path d="M12 21C15.7497 21 17.6246 21 18.9389 20.0451C19.3634 19.7367 19.7367 19.3634 20.0451 18.9389C21 17.6246 21 15.7497 21 12C21 8.25027 21 6.3754 20.0451 5.06107C19.7367 4.6366 19.3634 4.26331 18.9389 3.95492C17.6246 3 15.7497 3 12 3C8.25027 3 6.3754 3 5.06107 3.95491C4.6366 4.26331 4.26331 4.6366 3.95492 5.06107C3 6.3754 3 8.25027 3 12C3 15.7497 3 17.6246 3.95491 18.9389C4.26331 19.3634 4.6366 19.7367 5.06107 20.0451C6.3754 21 8.25027 21 12 21Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
<path d="M12 12V12.01" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" />
<path d="M8 8V8.01" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" />
<path d="M16 16V16.01" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" />
</svg>
""" |
s="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24" color="currentColor" fill="none">
<path d="M12 21C15.7497 21 17.6246 21 18.9389 20.0451C19.3634 19.7367 19.7367 19.3634 20.0451 18.9389C21 17.6246 21 15.7497 21 12C21 8.25027 21 6.3754 20.0451 5.06107C19.7367 4.6366 19.3634 4.26331 18.9389 3.95492C17.6246 3 15.7497 3 12 3C8.25027 3 6.3754 3 5.06107 3.95491C4.6366 4.26331 4.26331 4.6366 3.95492 5.06107C3 6.3754 3 8.25027 3 12C3 15.7497 3 17.6246 3.95491 18.9389C4.26331 19.3634 4.6366 19.7367 5.06107 20.0451C6.3754 21 8.25027 21 12 21Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
<path d="M12 12V12.01" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" />
<path d="M8 8V8.01" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" />
<path d="M16 16V16.01" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" />
</svg>
"""
|
badge_logo = """<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<rect width="16" height="16" rx="2" fill="#6E56CF"/>
<path d="M10 9V13H12V9H10Z" fill="white"/>
<path d="M4 3V13H6V9H10V7H6V5H10V7H12V3H4Z" fill="white"/>
</svg>
"""
github_navbar = """<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g clip-path="url(#clip0_10583_5590)">
<path d="M9.37253 15.0407V11.896C9.37253 11.6512 9.3004 11.4383 9.18413 11.246C9.1044 11.1141 9.159 10.9269 9.30313 10.8856C10.4965 10.5432 11.3333 9.99257 11.3333 8.16624C11.3333 7.69144 11.1843 7.24504 10.9223 6.85651C10.917 6.84864 10.912 6.84117 10.9071 6.83404C10.8523 6.75297 10.8248 6.71231 10.8167 6.66811C10.8087 6.62371 10.8201 6.57572 10.8433 6.47949C10.8453 6.47087 10.8475 6.46188 10.8497 6.45247C10.9455 6.05052 10.9532 5.62708 10.8461 5.23209C10.8109 5.10225 10.7355 5.02652 10.5989 5.04114C10.4217 5.06011 10.115 5.14489 9.66 5.44157C9.48126 5.55813 | contributors = """<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 24 24" fill="none" class="injected-svg" data-src="https://cdn.hugeicons.com/icons/user-multiple-02-bulk-rounded.svg" xmlns:xlink="http://www.w3.org/1999/xlink" role="img" color="var(--c-slate-9)">
<path opacity="0.4" d="M4.25 7C4.25 4.37665 6.37665 2.25 9 2.25C11.6234 2.25 13.75 4.37665 13.75 7C13.75 9.62335 11.6234 11.75 9 11.75C6.37665 11.75 4.25 9.62335 4.25 7Z" fill="var(--c-slate-9)"></path>
<path opacity="0.4" d="M1.25 19C1.25 15.8244 3.82436 13.25 7 13.25H11C14.1756 13.25 16.75 15.8244 16.75 19C16.75 20.5188 15.5188 21.75 14 21.75H4C2.48122 21.75 1.25 20.5188 1.25 19Z" fill="var(--c-slate-9)"></path>
<path d="M13.374 11.4644C13.8812 11.6492 14.4288 11.75 15 11.75C17.6233 11.75 19.75 9.62335 19.75 7C19.75 4.37665 17.6233 2.25 15 2.25C14.4288 2.25 13.8812 2.35081 13.374 2.5356C14.5317 3.67 15.25 5.25111 15.25 7C15.25 8.74889 14.5317 10.33 13.374 11.4644Z" fill="var(--c-slate-9)"></path>
<path d="M17.24 21.75H19.9995C21.5183 21.75 22.7495 20.5188 22.7495 19C22.7495 15.8244 20.1752 13.25 16.9995 13.25H15.416C17.1391 14.5754 18.2495 16.658 18.2495 19C18.2495 20.0488 17.8697 21.0088 17.24 21.75Z" fill="var(--c-slate-9)"></path>
</svg>
""" |
role="img" color="var(--c-slate-9)">
<path opacity="0.4" d="M4.25 7C4.25 4.37665 6.37665 2.25 9 2.25C11.6234 2.25 13.75 4.37665 13.75 7C13.75 9.62335 11.6234 11.75 9 11.75C6.37665 11.75 4.25 9.62335 4.25 7Z" fill="var(--c-slate-9)"></path>
<path opacity="0.4" d="M1.25 19C1.25 15.8244 3.82436 13.25 7 13.25H11C14.1756 13.25 16.75 15.8244 16.75 19C16.75 20.5188 15.5188 21.75 14 21.75H4C2.48122 21.75 1.25 20.5188 1.25 19Z" fill="var(--c-slate-9)"></path>
<path d="M13.374 11.4644C13.8812 11.6492 14.4288 11.75 15 11.75C17.6233 11.75 19.75 9.62335 19.75 7C19.75 4.37665 17.6233 2.25 15 2.25C14.4288 2.25 13.8812 2.35081 13.374 2.5356C14.5317 3.67 15.25 5.25111 15.25 7C15.25 8.74889 14.5317 10.33 13.374 11.4644Z" fill="var(--c-slate-9)"></path>
<path d="M17.24 21.75H19.9995C21.5183 21.75 22.7495 20.5188 22.7495 19C22.7495 15.8244 20.1752 13.25 16.9995 13.25H15.416C17.1391 14.5754 18.2495 16.658 18.2495 19C18.2495 20.0488 17.8697 21.0088 17.24 21.75Z" fill="var(--c-slate-9)"></path>
</svg>
"""
|
github_navbar = """<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g clip-path="url(#clip0_10583_5590)">
<path d="M9.37253 15.0407V11.896C9.37253 11.6512 9.3004 11.4383 9.18413 11.246C9.1044 11.1141 9.159 10.9269 9.30313 10.8856C10.4965 10.5432 11.3333 9.99257 11.3333 8.16624C11.3333 7.69144 11.1843 7.24504 10.9223 6.85651C10.917 6.84864 10.912 6.84117 10.9071 6.83404C10.8523 6.75297 10.8248 6.71231 10.8167 6.66811C10.8087 6.62371 10.8201 6.57572 10.8433 6.47949C10.8453 6.47087 10.8475 6.46188 10.8497 6.45247C10.9455 6.05052 10.9532 5.62708 10.8461 5.23209C10.8109 5.10225 10.7355 5.02652 10.5989 5.04114C10.4217 5.06011 10.115 5.14489 9.66 5.44157C9.48126 5.55813 9.39186 5.61641 9.31313 5.62945C9.2344 5.64249 9.1292 5.61518 8.91866 5.56056C8.63086 5.48587 8.33426 5.44578 8 5.44578C7.66573 5.44578 7.36913 5.48587 7.08133 5.56057C6.8708 5.61518 6.7656 5.64249 6.68686 5.62945C6.60814 5.61641 6.51875 5.55813 6.33999 5.44156C5.88502 5.14488 | badge_logo = """<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<rect width="16" height="16" rx="2" fill="#6E56CF"/>
<path d="M10 9V13H12V9H10Z" fill="white"/>
<path d="M4 3V13H6V9H10V7H6V5H10V7H12V3H4Z" fill="white"/>
</svg>
""" |
5.8244 3.82436 13.25 7 13.25H11C14.1756 13.25 16.75 15.8244 16.75 19C16.75 20.5188 15.5188 21.75 14 21.75H4C2.48122 21.75 1.25 20.5188 1.25 19Z" fill="var(--c-slate-9)"></path>
<path d="M13.374 11.4644C13.8812 11.6492 14.4288 11.75 15 11.75C17.6233 11.75 19.75 9.62335 19.75 7C19.75 4.37665 17.6233 2.25 15 2.25C14.4288 2.25 13.8812 2.35081 13.374 2.5356C14.5317 3.67 15.25 5.25111 15.25 7C15.25 8.74889 14.5317 10.33 13.374 11.4644Z" fill="var(--c-slate-9)"></path>
<path d="M17.24 21.75H19.9995C21.5183 21.75 22.7495 20.5188 22.7495 19C22.7495 15.8244 20.1752 13.25 16.9995 13.25H15.416C17.1391 14.5754 18.2495 16.658 18.2495 19C18.2495 20.0488 17.8697 21.0088 17.24 21.75Z" fill="var(--c-slate-9)"></path>
</svg>
"""
badge_logo = """<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<rect width="16" height="16" rx="2" fill="#6E56CF"/>
<path d="M10 9V13H12V9H10Z" fill="white"/>
<path d="M4 3V13H6V9H10V7H6V5H10V7H12V3H4Z" fill="white"/>
</svg>
"""
|
discord_navbar = """<svg width="16" height="13" viewBox="0 0 16 13" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M13.5447 1.01094C12.5249 0.543018 11.4313 0.198278 10.2879 0.000828179C10.2671 -0.00298182 10.2463 0.00653819 10.2356 0.0255882C10.0949 0.275728 9.93921 0.602058 9.83011 0.858558C8.60028 0.674438 7.3768 0.674438 6.17222 0.858558C6.06311 0.596358 5.90166 0.275728 5.76038 0.0255882C5.74966 0.00716819 5.72887 -0.00235182 5.70803 0.000828179C4.56527 0.197638 3.47171 0.542388 2.45129 1.01094C2.44246 1.01475 2.43488 1.0211 2.42986 1.02935C0.355594 4.12826 -0.212633 7.151 0.0661199 10.1362C0.0673809 10.1508 0.0755798 10.1648 0.0869318 10.1737C1.45547 11.1787 2.78114 11.7889 4.08219 12.1933C4.10301 12.1996 4.12507 12.192 4.13832 12.1749C4.44608 11.7546 4.72043 11.3114 4.95565 10.8454C4.96953 10.8181 4.95628 10.7857 4.92791 10.7749C4.49275 10.6099 4.0784 10.4086 3.67982 10.18C3.64829 10.1616 3.64577 10.1165 3.67477 10.095C3.75865 | github_navbar = """<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g clip-path="url(#clip0_10583_5590)">
<path d="M9.37253 15.0407V11.896C9.37253 11.6512 9.3004 11.4383 9.18413 11.246C9.1044 11.1141 9.159 10.9269 9.30313 10.8856C10.4965 10.5432 11.3333 9.99257 11.3333 8.16624C11.3333 7.69144 11.1843 7.24504 10.9223 6.85651C10.917 6.84864 10.912 6.84117 10.9071 6.83404C10.8523 6.75297 10.8248 6.71231 10.8167 6.66811C10.8087 6.62371 10.8201 6.57572 10.8433 6.47949C10.8453 6.47087 10.8475 6.46188 10.8497 6.45247C10.9455 6.05052 10.9532 5.62708 10.8461 5.23209C10.8109 5.10225 10.7355 5.02652 10.5989 5.04114C10.4217 5.06011 10.115 5.14489 9.66 5.44157C9.48126 5.55813 9.39186 5.61641 9.31313 5.62945C9.2344 5.64249 9.1292 5.61518 8.91866 5.56056C8.63086 5.48587 8.33426 5.44578 8 5.44578C7.66573 5.44578 7.36913 5.48587 7.08133 5.56057C6.8708 5.61518 6.7656 5.64249 6.68686 5.62945C6.60814 5.61641 6.51875 5.55813 6.33999 5.44156C5.88502 5.14488 5.57826 5.06011 5.4011 5.04114C5.26453 5.02652 5.18907 5.10225 5.15387 5.23209C5.04678 5.62709 5.05444 6.05053 5.15028 6.45247C5.15253 6.46189 5.15468 6.47089 5.15675 6.4795C5.17984 6.57573 5.19134 6.62371 5.18324 6.66811C5.17518 6.71231 5.14769 6.75297 5.09286 6.83404C5.08802 6.84124 5.08296 6.84871 5.07769 6.85651C4.8157 7.24504 4.66666 7.69144 4.66666 8.16624C4.66666 9.99257 5.5035 10.5432 6.69686 10.8856C6.841 10.9269 6.8956 11.1141 6.81586 11.246C6.6996 11.4383 6.62745 11.6512 6.62745 11.896V12.1962C6.60508 12.1933 6.58243 12.1901 6.56217 12.1867C6.43821 12.1658 6.26036 12.1262 6.05568 12.0518C5.6465 11.9033 5.14059 11.6207 4.73246 11.0799C4.56611 10.8595 4.25258 10.8156 4.03216 10.982C3.81174 11.1483 3.76791 11.4618 3.93426 11.6823C4.4866 12.4142 5.17224 12.795 5.71448 12.9918C5.9855 13.0902 6.22334 13.1437 6.39613 13.1728C6.48274 13.1874 6.55363 13.196 6.60496 13.201C6.61123 13.2016 6.61902 13.2022 6.62745 13.2028V15.0371C3.36407 14.4128 0.835938 11.5972 0.835938 8.00004C0.835938 3.78569 4.10122 0.833374 8.00006 0.833374C11.899 0.833374 15.1643 3.57694 15.1643 8.00264C15.1643 11.6807 12.636 14.4328 9.37253 15.0407Z" fill="currentColor"/>
</g>
</svg>
""" |
4 6.57573 5.19134 6.62371 5.18324 6.66811C5.17518 6.71231 5.14769 6.75297 5.09286 6.83404C5.08802 6.84124 5.08296 6.84871 5.07769 6.85651C4.8157 7.24504 4.66666 7.69144 4.66666 8.16624C4.66666 9.99257 5.5035 10.5432 6.69686 10.8856C6.841 10.9269 6.8956 11.1141 6.81586 11.246C6.6996 11.4383 6.62745 11.6512 6.62745 11.896V12.1962C6.60508 12.1933 6.58243 12.1901 6.56217 12.1867C6.43821 12.1658 6.26036 12.1262 6.05568 12.0518C5.6465 11.9033 5.14059 11.6207 4.73246 11.0799C4.56611 10.8595 4.25258 10.8156 4.03216 10.982C3.81174 11.1483 3.76791 11.4618 3.93426 11.6823C4.4866 12.4142 5.17224 12.795 5.71448 12.9918C5.9855 13.0902 6.22334 13.1437 6.39613 13.1728C6.48274 13.1874 6.55363 13.196 6.60496 13.201C6.61123 13.2016 6.61902 13.2022 6.62745 13.2028V15.0371C3.36407 14.4128 0.835938 11.5972 0.835938 8.00004C0.835938 3.78569 4.10122 0.833374 8.00006 0.833374C11.899 0.833374 15.1643 3.57694 15.1643 8.00264C15.1643 11.6807 12.636 14.4328 9.37253 15.0407Z" fill="currentColor"/>
</g>
</svg>
"""
|
send = """<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<path d="M14.9256 2.33952C15.2803 1.34627 14.3212 0.387241 13.328 0.741968L1.49618 4.96762C0.318368 5.38827 0.419982 7.08649 1.63956 7.36363L6.39535 8.43196L8.9271 5.82401C9.18357 5.55983 9.60564 5.55357 9.86977 5.81003C10.134 6.06649 10.1402 6.48855 9.88377 6.75276L7.27357 9.44149L8.30384 14.028C8.58104 15.2476 10.2792 15.3492 10.6999 14.1714L14.9256 2.33952Z" fill="currentColor"/>
</svg>
"""
chat_bubble = """<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<path fill-rule="evenodd" clip-rule="evenodd" d="M1.95127 8.00001C1.95127 4.33242 4.90631 1.35925 8.55153 1.35925C12.1968 1.35925 15.1518 4.33242 15.1518 8.00001C15.1518 11.6676 12.1968 14.6408 8.55153 14.6408C7.71682 14.6408 6.91657 14.4845 6.17936 14.1987C6.12373 14.1772 6.08985 14.1641 6.06509 14.1549C6.05856 14.1555 6.05075 14.1563 6.04129 14.1572L5.97468 14.164L2.46298 14.5 | discord_navbar = """<svg width="16" height="13" viewBox="0 0 16 13" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M13.5447 1.01094C12.5249 0.543018 11.4313 0.198278 10.2879 0.000828179C10.2671 -0.00298182 10.2463 0.00653819 10.2356 0.0255882C10.0949 0.275728 9.93921 0.602058 9.83011 0.858558C8.60028 0.674438 7.3768 0.674438 6.17222 0.858558C6.06311 0.596358 5.90166 0.275728 5.76038 0.0255882C5.74966 0.00716819 5.72887 -0.00235182 5.70803 0.000828179C4.56527 0.197638 3.47171 0.542388 2.45129 1.01094C2.44246 1.01475 2.43488 1.0211 2.42986 1.02935C0.355594 4.12826 -0.212633 7.151 0.0661199 10.1362C0.0673809 10.1508 0.0755798 10.1648 0.0869318 10.1737C1.45547 11.1787 2.78114 11.7889 4.08219 12.1933C4.10301 12.1996 4.12507 12.192 4.13832 12.1749C4.44608 11.7546 4.72043 11.3114 4.95565 10.8454C4.96953 10.8181 4.95628 10.7857 4.92791 10.7749C4.49275 10.6099 4.0784 10.4086 3.67982 10.18C3.64829 10.1616 3.64577 10.1165 3.67477 10.095C3.75865 10.0321 3.84255 9.9667 3.92264 9.9007C3.93713 9.8886 3.95732 9.8861 3.97435 9.8937C6.59287 11.0892 9.42771 11.0892 12.0153 9.8937C12.0323 9.8854 12.0525 9.888 12.0677 9.9C12.1478 9.9661 12.2316 10.0321 12.3161 10.095C12.3451 10.1165 12.3433 10.1616 12.3117 10.18C11.9131 10.413 11.4988 10.6099 11.063 10.7743C11.0346 10.7851 11.022 10.8181 11.0359 10.8454C11.2762 11.3108 11.5505 11.7539 11.8526 12.1742C11.8652 12.192 11.8879 12.1996 11.9087 12.1933C13.2161 11.7889 14.5417 11.1787 15.9103 10.1737C15.9223 10.1648 15.9298 10.1515 15.9311 10.1369C16.2647 6.6856 15.3723 3.68765 13.5655 1.02998C13.5611 1.0211 13.5535 1.01475 13.5447 1.01094ZM5.34668 8.3185C4.55833 8.3185 3.90876 7.59478 3.90876 6.70593C3.90876 5.81707 4.54574 5.09331 5.34668 5.09331C6.15393 5.09331 6.79722 5.82342 6.7846 6.70593C6.7846 7.59478 6.14762 8.3185 5.34668 8.3185ZM10.6632 8.3185C9.87481 8.3185 9.22527 7.59478 9.22527 6.70593C9.22527 5.81707 9.86221 5.09331 10.6632 5.09331C11.4704 5.09331 12.1137 5.82342 12.1011 6.70593C12.1011 7.59478 11.4704 8.3185 10.6632 8.3185Z" fill="currentColor"/>
</svg>
""" |
59287 11.0892 9.42771 11.0892 12.0153 9.8937C12.0323 9.8854 12.0525 9.888 12.0677 9.9C12.1478 9.9661 12.2316 10.0321 12.3161 10.095C12.3451 10.1165 12.3433 10.1616 12.3117 10.18C11.9131 10.413 11.4988 10.6099 11.063 10.7743C11.0346 10.7851 11.022 10.8181 11.0359 10.8454C11.2762 11.3108 11.5505 11.7539 11.8526 12.1742C11.8652 12.192 11.8879 12.1996 11.9087 12.1933C13.2161 11.7889 14.5417 11.1787 15.9103 10.1737C15.9223 10.1648 15.9298 10.1515 15.9311 10.1369C16.2647 6.6856 15.3723 3.68765 13.5655 1.02998C13.5611 1.0211 13.5535 1.01475 13.5447 1.01094ZM5.34668 8.3185C4.55833 8.3185 3.90876 7.59478 3.90876 6.70593C3.90876 5.81707 4.54574 5.09331 5.34668 5.09331C6.15393 5.09331 6.79722 5.82342 6.7846 6.70593C6.7846 7.59478 6.14762 8.3185 5.34668 8.3185ZM10.6632 8.3185C9.87481 8.3185 9.22527 7.59478 9.22527 6.70593C9.22527 5.81707 9.86221 5.09331 10.6632 5.09331C11.4704 5.09331 12.1137 5.82342 12.1011 6.70593C12.1011 7.59478 11.4704 8.3185 10.6632 8.3185Z" fill="currentColor"/>
</svg>
"""
|
chat_bubble = """<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<path fill-rule="evenodd" clip-rule="evenodd" d="M1.95127 8.00001C1.95127 4.33242 4.90631 1.35925 8.55153 1.35925C12.1968 1.35925 15.1518 4.33242 15.1518 8.00001C15.1518 11.6676 12.1968 14.6408 8.55153 14.6408C7.71682 14.6408 6.91657 14.4845 6.17936 14.1987C6.12373 14.1772 6.08985 14.1641 6.06509 14.1549C6.05856 14.1555 6.05075 14.1563 6.04129 14.1572L5.97468 14.164L2.46298 14.5293C2.45477 14.5301 2.44652 14.531 2.43823 14.5319C2.29286 14.547 2.13593 14.5634 2.00367 14.5649C1.87238 14.5665 1.62243 14.5597 1.38096 14.4115C1.10142 14.2399 0.911029 13.9533 0.860348 13.6279C0.816568 13.3467 0.905878 13.1117 0.957494 12.9902C1.00949 12.8679 1.08451 12.7283 1.15401 12.5989L2.28749 10.488C2.32629 10.4158 2.35013 10.3712 2.36662 10.3386C2.35226 10.2913 2.33076 10.2269 2.29572 10.1223C2.07214 9.45486 1.95127 8.74084 1.95127 8.00001Z" fill="currentColor"/>
</svg>
"""
image_ai_small | send = """<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<path d="M14.9256 2.33952C15.2803 1.34627 14.3212 0.387241 13.328 0.741968L1.49618 4.96762C0.318368 5.38827 0.419982 7.08649 1.63956 7.36363L6.39535 8.43196L8.9271 5.82401C9.18357 5.55983 9.60564 5.55357 9.86977 5.81003C10.134 6.06649 10.1402 6.48855 9.88377 6.75276L7.27357 9.44149L8.30384 14.028C8.58104 15.2476 10.2792 15.3492 10.6999 14.1714L14.9256 2.33952Z" fill="currentColor"/>
</svg>
""" |
2998C13.5611 1.0211 13.5535 1.01475 13.5447 1.01094ZM5.34668 8.3185C4.55833 8.3185 3.90876 7.59478 3.90876 6.70593C3.90876 5.81707 4.54574 5.09331 5.34668 5.09331C6.15393 5.09331 6.79722 5.82342 6.7846 6.70593C6.7846 7.59478 6.14762 8.3185 5.34668 8.3185ZM10.6632 8.3185C9.87481 8.3185 9.22527 7.59478 9.22527 6.70593C9.22527 5.81707 9.86221 5.09331 10.6632 5.09331C11.4704 5.09331 12.1137 5.82342 12.1011 6.70593C12.1011 7.59478 11.4704 8.3185 10.6632 8.3185Z" fill="currentColor"/>
</svg>
"""
send = """<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<path d="M14.9256 2.33952C15.2803 1.34627 14.3212 0.387241 13.328 0.741968L1.49618 4.96762C0.318368 5.38827 0.419982 7.08649 1.63956 7.36363L6.39535 8.43196L8.9271 5.82401C9.18357 5.55983 9.60564 5.55357 9.86977 5.81003C10.134 6.06649 10.1402 6.48855 9.88377 6.75276L7.27357 9.44149L8.30384 14.028C8.58104 15.2476 10.2792 15.3492 10.6999 14.1714L14.9256 2.33952Z" fill="currentColor"/>
</svg>
"""
|
image_ai_small = """<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g clip-path="url(#clip0_10609_3912)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M1.71982 2.52091C5.72843 0.270891 10.2719 0.270835 14.2805 2.52091C14.8493 2.84017 15.1668 3.44449 15.1668 4.06767V10.8002L14.8922 10.6615C14.8866 10.6587 14.881 10.656 14.8754 10.6534C14.1758 10.3323 13.4495 10.1662 12.7138 10.1668C11.4716 10.1618 10.2663 10.6268 9.16776 11.4912C8.74063 10.8908 8.23436 10.359 7.66776 9.91931C5.91512 8.55917 3.80742 8.16671 1.3336 8.16671H0.833496V4.06769C0.833496 3.44449 1.15102 2.84017 1.71982 2.52091ZM9.69796 12.3476C10.065 13.0344 10.3364 13.7842 10.4909 14.5703L10.4927 14.5794L10.5492 14.8984C11.8219 14.6287 13.0754 14.1556 14.2805 13.4792C14.8493 13.1599 15.1668 12.5556 15.1668 11.9324V11.9204L14.45 11.5585C13.8742 11.2956 13.2924 11.1661 12.7136 11.1668H12.711C11.7035 11.1625 10.6797 11.5483 9.69796 12.3476ZM9.5633 15.0662L9.50876 14.7586C9.18 | chat_bubble = """<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<path fill-rule="evenodd" clip-rule="evenodd" d="M1.95127 8.00001C1.95127 4.33242 4.90631 1.35925 8.55153 1.35925C12.1968 1.35925 15.1518 4.33242 15.1518 8.00001C15.1518 11.6676 12.1968 14.6408 8.55153 14.6408C7.71682 14.6408 6.91657 14.4845 6.17936 14.1987C6.12373 14.1772 6.08985 14.1641 6.06509 14.1549C6.05856 14.1555 6.05075 14.1563 6.04129 14.1572L5.97468 14.164L2.46298 14.5293C2.45477 14.5301 2.44652 14.531 2.43823 14.5319C2.29286 14.547 2.13593 14.5634 2.00367 14.5649C1.87238 14.5665 1.62243 14.5597 1.38096 14.4115C1.10142 14.2399 0.911029 13.9533 0.860348 13.6279C0.816568 13.3467 0.905878 13.1117 0.957494 12.9902C1.00949 12.8679 1.08451 12.7283 1.15401 12.5989L2.28749 10.488C2.32629 10.4158 2.35013 10.3712 2.36662 10.3386C2.35226 10.2913 2.33076 10.2269 2.29572 10.1223C2.07214 9.45486 1.95127 8.74084 1.95127 8.00001Z" fill="currentColor"/>
</svg>
""" |
"/>
</svg>
"""
chat_bubble = """<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<path fill-rule="evenodd" clip-rule="evenodd" d="M1.95127 8.00001C1.95127 4.33242 4.90631 1.35925 8.55153 1.35925C12.1968 1.35925 15.1518 4.33242 15.1518 8.00001C15.1518 11.6676 12.1968 14.6408 8.55153 14.6408C7.71682 14.6408 6.91657 14.4845 6.17936 14.1987C6.12373 14.1772 6.08985 14.1641 6.06509 14.1549C6.05856 14.1555 6.05075 14.1563 6.04129 14.1572L5.97468 14.164L2.46298 14.5293C2.45477 14.5301 2.44652 14.531 2.43823 14.5319C2.29286 14.547 2.13593 14.5634 2.00367 14.5649C1.87238 14.5665 1.62243 14.5597 1.38096 14.4115C1.10142 14.2399 0.911029 13.9533 0.860348 13.6279C0.816568 13.3467 0.905878 13.1117 0.957494 12.9902C1.00949 12.8679 1.08451 12.7283 1.15401 12.5989L2.28749 10.488C2.32629 10.4158 2.35013 10.3712 2.36662 10.3386C2.35226 10.2913 2.33076 10.2269 2.29572 10.1223C2.07214 9.45486 1.95127 8.74084 1.95127 8.00001Z" fill="currentColor"/>
</svg>
"""
|
chart = """<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<path fill-rule="evenodd" clip-rule="evenodd" d="M1 3C1 1.96278 1.96279 1 3 1H13C14.0372 1 15 1.96278 15 3V13C15 14.0372 14.0372 15 13 15H3C1.96279 15 1 14.0372 1 13V3ZM11.5 8.17073C11.7829 8.17073 12.0122 8.40006 12.0122 8.68293V12.0976C12.0122 12.3804 11.7829 12.6098 11.5 12.6098C11.2171 12.6098 10.9878 12.3804 10.9878 12.0976V8.68293C10.9878 8.40006 11.2171 8.17073 11.5 8.17073ZM8.00001 9.53659C8.28288 9.53659 8.5122 9.76591 8.5122 10.0488V12.0976C8.5122 12.3804 8.28288 12.6098 8.00001 12.6098C7.71714 12.6098 7.48782 12.3804 7.48782 12.0976V10.0488C7.48782 9.76591 7.71714 9.53659 8.00001 9.53659ZM4.48781 10.2195C4.77068 10.2195 5 10.4488 5 10.7317V12.0976C5 12.3804 4.77068 12.6098 4.48781 12.6098C4.20493 12.6098 3.97561 12.3804 3.97561 12.0976V10.7317C3.97561 10.4488 4.20493 10.2195 4.48781 10.2195ZM10.0488 3.39024C9.84159 3.39024 9.65481 3.51504 9.57559 3.70643C9.4963 3.8978 | image_ai_small = """<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g clip-path="url(#clip0_10609_3912)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M1.71982 2.52091C5.72843 0.270891 10.2719 0.270835 14.2805 2.52091C14.8493 2.84017 15.1668 3.44449 15.1668 4.06767V10.8002L14.8922 10.6615C14.8866 10.6587 14.881 10.656 14.8754 10.6534C14.1758 10.3323 13.4495 10.1662 12.7138 10.1668C11.4716 10.1618 10.2663 10.6268 9.16776 11.4912C8.74063 10.8908 8.23436 10.359 7.66776 9.91931C5.91512 8.55917 3.80742 8.16671 1.3336 8.16671H0.833496V4.06769C0.833496 3.44449 1.15102 2.84017 1.71982 2.52091ZM9.69796 12.3476C10.065 13.0344 10.3364 13.7842 10.4909 14.5703L10.4927 14.5794L10.5492 14.8984C11.8219 14.6287 13.0754 14.1556 14.2805 13.4792C14.8493 13.1599 15.1668 12.5556 15.1668 11.9324V11.9204L14.45 11.5585C13.8742 11.2956 13.2924 11.1661 12.7136 11.1668H12.711C11.7035 11.1625 10.6797 11.5483 9.69796 12.3476ZM9.5633 15.0662L9.50876 14.7586C9.18403 13.1114 8.27296 11.6547 7.0547 10.7093C5.55695 9.54704 3.71312 9.16671 1.3336 9.16671H0.833496V11.9324C0.833496 12.5556 1.15102 13.1599 1.71982 13.4792C4.21319 14.8787 6.9135 15.4077 9.5633 15.0662ZM5.00016 4.33337C4.26378 4.33337 3.66683 4.93033 3.66683 5.66671C3.66683 6.40309 4.26378 7.00004 5.00016 7.00004C5.73654 7.00004 6.3335 6.40309 6.3335 5.66671C6.3335 4.93033 5.73654 4.33337 5.00016 4.33337Z" fill="currentColor"/>
</g>
</svg>
""" |
.1618 10.2663 10.6268 9.16776 11.4912C8.74063 10.8908 8.23436 10.359 7.66776 9.91931C5.91512 8.55917 3.80742 8.16671 1.3336 8.16671H0.833496V4.06769C0.833496 3.44449 1.15102 2.84017 1.71982 2.52091ZM9.69796 12.3476C10.065 13.0344 10.3364 13.7842 10.4909 14.5703L10.4927 14.5794L10.5492 14.8984C11.8219 14.6287 13.0754 14.1556 14.2805 13.4792C14.8493 13.1599 15.1668 12.5556 15.1668 11.9324V11.9204L14.45 11.5585C13.8742 11.2956 13.2924 11.1661 12.7136 11.1668H12.711C11.7035 11.1625 10.6797 11.5483 9.69796 12.3476ZM9.5633 15.0662L9.50876 14.7586C9.18403 13.1114 8.27296 11.6547 7.0547 10.7093C5.55695 9.54704 3.71312 9.16671 1.3336 9.16671H0.833496V11.9324C0.833496 12.5556 1.15102 13.1599 1.71982 13.4792C4.21319 14.8787 6.9135 15.4077 9.5633 15.0662ZM5.00016 4.33337C4.26378 4.33337 3.66683 4.93033 3.66683 5.66671C3.66683 6.40309 4.26378 7.00004 5.00016 7.00004C5.73654 7.00004 6.3335 6.40309 6.3335 5.66671C6.3335 4.93033 5.73654 4.33337 5.00016 4.33337Z" fill="currentColor"/>
</g>
</svg>
"""
|
code_custom = """<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g clip-path="url(#clip0_10609_4430)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.00016 0.833374C4.04212 0.833374 0.833496 4.042 0.833496 8.00004C0.833496 11.9581 4.04212 15.1667 8.00016 15.1667C11.9582 15.1667 15.1668 11.9581 15.1668 8.00004C15.1668 4.042 11.9582 0.833374 8.00016 0.833374ZM9.2993 6.21104C9.4157 5.86175 9.22696 5.4842 8.87763 5.36777C8.52836 5.25133 8.15083 5.44011 8.03436 5.7894L6.70103 9.78937C6.58461 10.1387 6.77336 10.5162 7.1227 10.6327C7.47196 10.7491 7.8495 10.5603 7.96596 10.211L9.2993 6.21104ZM5.8049 7.13831C6.06525 6.87797 6.06525 6.45583 5.8049 6.19548C5.54455 5.93513 5.12244 5.93513 4.86209 6.19548L3.52876 7.52884C3.26841 7.78917 3.26841 8.21131 3.52876 8.47164L4.86209 9.80497C5.12244 10.0653 5.54455 10.0653 5.8049 9.80497C6.06525 9.54464 6.06525 9.12251 5.8049 8.86217L4.94297 8.00024L5.8049 7.13831ZM11.1382 6.19548C10.8779 5.93513 10. | chart = """<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<path fill-rule="evenodd" clip-rule="evenodd" d="M1 3C1 1.96278 1.96279 1 3 1H13C14.0372 1 15 1.96278 15 3V13C15 14.0372 14.0372 15 13 15H3C1.96279 15 1 14.0372 1 13V3ZM11.5 8.17073C11.7829 8.17073 12.0122 8.40006 12.0122 8.68293V12.0976C12.0122 12.3804 11.7829 12.6098 11.5 12.6098C11.2171 12.6098 10.9878 12.3804 10.9878 12.0976V8.68293C10.9878 8.40006 11.2171 8.17073 11.5 8.17073ZM8.00001 9.53659C8.28288 9.53659 8.5122 9.76591 8.5122 10.0488V12.0976C8.5122 12.3804 8.28288 12.6098 8.00001 12.6098C7.71714 12.6098 7.48782 12.3804 7.48782 12.0976V10.0488C7.48782 9.76591 7.71714 9.53659 8.00001 9.53659ZM4.48781 10.2195C4.77068 10.2195 5 10.4488 5 10.7317V12.0976C5 12.3804 4.77068 12.6098 4.48781 12.6098C4.20493 12.6098 3.97561 12.3804 3.97561 12.0976V10.7317C3.97561 10.4488 4.20493 10.2195 4.48781 10.2195ZM10.0488 3.39024C9.84159 3.39024 9.65481 3.51504 9.57559 3.70643C9.4963 3.89782 9.54008 4.11813 9.68656 4.26462L10.343 4.921C10.0596 5.16469 9.72098 5.43228 9.33178 5.69988C8.01927 6.60225 6.15601 7.4878 3.90243 7.4878C3.61956 7.4878 3.39024 7.71713 3.39024 8C3.39024 8.28287 3.61956 8.5122 3.90243 8.5122C6.42933 8.5122 8.49288 7.5197 9.91213 6.544C10.3618 6.2349 10.7492 5.92579 11.0692 5.64724L11.7353 6.3134C11.8818 6.45988 12.1021 6.50371 12.2936 6.42443C12.4849 6.34515 12.6098 6.15839 12.6098 5.95122V3.90244C12.6098 3.61956 12.3804 3.39024 12.0976 3.39024H10.0488Z" fill="currentColor"/>
</svg>
""" |
22 9.76591 8.5122 10.0488V12.0976C8.5122 12.3804 8.28288 12.6098 8.00001 12.6098C7.71714 12.6098 7.48782 12.3804 7.48782 12.0976V10.0488C7.48782 9.76591 7.71714 9.53659 8.00001 9.53659ZM4.48781 10.2195C4.77068 10.2195 5 10.4488 5 10.7317V12.0976C5 12.3804 4.77068 12.6098 4.48781 12.6098C4.20493 12.6098 3.97561 12.3804 3.97561 12.0976V10.7317C3.97561 10.4488 4.20493 10.2195 4.48781 10.2195ZM10.0488 3.39024C9.84159 3.39024 9.65481 3.51504 9.57559 3.70643C9.4963 3.89782 9.54008 4.11813 9.68656 4.26462L10.343 4.921C10.0596 5.16469 9.72098 5.43228 9.33178 5.69988C8.01927 6.60225 6.15601 7.4878 3.90243 7.4878C3.61956 7.4878 3.39024 7.71713 3.39024 8C3.39024 8.28287 3.61956 8.5122 3.90243 8.5122C6.42933 8.5122 8.49288 7.5197 9.91213 6.544C10.3618 6.2349 10.7492 5.92579 11.0692 5.64724L11.7353 6.3134C11.8818 6.45988 12.1021 6.50371 12.2936 6.42443C12.4849 6.34515 12.6098 6.15839 12.6098 5.95122V3.90244C12.6098 3.61956 12.3804 3.39024 12.0976 3.39024H10.0488Z" fill="currentColor"/>
</svg>
"""
|
message_form = """<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32" fill="none">
<path fill-rule="evenodd" clip-rule="evenodd" d="M19.5762 3.7157C16.9685 3.65026 15.0312 3.65027 12.4234 3.7157L12.3236 3.71821C10.3112 3.76865 8.65532 3.81015 7.32069 4.04229C5.90421 4.28867 4.71818 4.7685 3.71365 5.77561C2.71437 6.77743 2.2359 7.94475 1.99352 9.33883C1.76604 10.6471 1.73161 12.2616 1.68994 14.2156L1.6878 14.3161C1.6594 15.6468 1.65941 16.3533 1.68782 17.6838L1.68997 17.7844C1.73162 19.7384 1.76605 21.3528 1.99353 22.6612C2.23593 24.0552 2.7144 25.2225 3.71366 26.2244C4.71821 27.2314 5.90422 27.7113 7.32072 27.9577C8.65533 28.1898 10.3112 28.2313 12.3236 28.2817L12.4235 28.2842C15.0312 28.3497 16.9685 28.3497 19.5762 28.2842L19.676 28.2817C21.6885 28.2313 23.3444 28.1897 24.679 27.9576C26.0954 27.7113 27.2814 27.2314 28.286 26.2244C29.2853 25.2225 29.7638 24.0552 30.0061 22.661C30.2337 21.3528 30.2681 19.7384 30.3097 17.7844L30.3118 17.6838C30.3402 16.35 | code_custom = """<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g clip-path="url(#clip0_10609_4430)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.00016 0.833374C4.04212 0.833374 0.833496 4.042 0.833496 8.00004C0.833496 11.9581 4.04212 15.1667 8.00016 15.1667C11.9582 15.1667 15.1668 11.9581 15.1668 8.00004C15.1668 4.042 11.9582 0.833374 8.00016 0.833374ZM9.2993 6.21104C9.4157 5.86175 9.22696 5.4842 8.87763 5.36777C8.52836 5.25133 8.15083 5.44011 8.03436 5.7894L6.70103 9.78937C6.58461 10.1387 6.77336 10.5162 7.1227 10.6327C7.47196 10.7491 7.8495 10.5603 7.96596 10.211L9.2993 6.21104ZM5.8049 7.13831C6.06525 6.87797 6.06525 6.45583 5.8049 6.19548C5.54455 5.93513 5.12244 5.93513 4.86209 6.19548L3.52876 7.52884C3.26841 7.78917 3.26841 8.21131 3.52876 8.47164L4.86209 9.80497C5.12244 10.0653 5.54455 10.0653 5.8049 9.80497C6.06525 9.54464 6.06525 9.12251 5.8049 8.86217L4.94297 8.00024L5.8049 7.13831ZM11.1382 6.19548C10.8779 5.93513 10.4558 5.93513 10.1954 6.19548C9.9351 6.45583 9.9351 6.87797 10.1954 7.13831L11.0574 8.00024L10.1954 8.86217C9.9351 9.12251 9.9351 9.54464 10.1954 9.80497C10.4558 10.0653 10.8779 10.0653 11.1382 9.80497L12.4716 8.47164C12.7319 8.21131 12.7319 7.78917 12.4716 7.52884L11.1382 6.19548Z" fill="currentColor"/>
</g>
<defs>
<clipPath id="clip0_10609_4430">
<rect width="16" height="16" fill="white"/>
</clipPath>
</defs>
</svg>
""" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.