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"...
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('/') e...
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(...
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 = categ...
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 ...
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( ...
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 ...
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 ...
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 ...
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, ...
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.stri...
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_item...
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(' ',...
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 co...
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_ch...
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...
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 categor...
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 i...
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...
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 g...
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...
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="...
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( ...
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_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]) ...
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_comp...
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=" ") ...
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 = ...
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( ...
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_c...
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_l...
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_l...
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", ...
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",...
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( ...
return [ SideBarItem( names="AG Grid", children=[ SideBarItem( names="Overview", link=enterprise.ag_grid.index.path, ), SideBarItem( names="Column Definitions", ...
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", ...
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, ...
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="Spoil...
# 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_pr...
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("Overv...
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 =...
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...
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...
# 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=nam...
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...
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, ...
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, ...
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.ba...
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_tuto...
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, ...
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="", ...
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.ins...
items = [ SideBarSection( names="User Interface Overview", alt_name_for_next_prev="", link=ui.overview.path, ), create_item( "Components", children=[ components.props, components.conditional_renderi...
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, ...
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...
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.cu...
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, ...
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( ...
items = [ create_item( "Deploy Quick Start", children=[ hosting.deploy_quick_start, ], ), create_item( "Project", children=[ hosting.adding_members, ], ), create_item( ...
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, ...
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...
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...
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_gith...
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, ], ), ...
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( "Usag...
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...
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.cont...
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 = 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_referenc...
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.br...
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 = 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] =...
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 cr...
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) -> ...
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. ...
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. ...
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...
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....
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' key...
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 th...
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") ...
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: ...
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().c...
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: ...
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 i...
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 c...
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] ...
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...
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.7543...
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.5...
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 ...
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.1...
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"...
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...
.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.8776...
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.5...
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" s...
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.0790...
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.623...
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.541...
"> <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.16...
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=...
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.5574...
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.8...
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.72...
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...
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"...
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...
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 ...
.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="injecte...
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...
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 1...
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.80...
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 2...
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.1959C...
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.79...
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 ...
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.4...
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.7906...
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/s...
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.29...
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.413...
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.861...
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 10...
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.29M8...
.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 4...
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 109H37V181H1V1...
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....
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....
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.989...
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 109H37V181H1V1H1...
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 109H817V1...
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.14...
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...
(--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_88...
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.05C2...
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-...
.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-...
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 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....
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...
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.052...
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....
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 2...
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....
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...
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.6942C1...
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.9...
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.07...
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.000...
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 1...
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.936...
<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...
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...
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....
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 ...
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.2...
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.2...
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.9549...
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://w...
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 ...
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 1...
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 ...
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 ...
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 ...
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....
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.89...
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 ...
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....
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.1742C1...
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....
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....
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....
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.06767...
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.64...
"/> </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.64...
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.400...
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.06767V1...
.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...
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.1667C1...
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...
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 ...
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.76...
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....