Skip to content
This repository was archived by the owner on Apr 23, 2026. It is now read-only.

Commit 6d8f9d6

Browse files
authored
bump hugeicons (#52)
1 parent d2432c3 commit 6d8f9d6

5 files changed

Lines changed: 61 additions & 54 deletions

File tree

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ fail_fast: true
22

33
repos:
44
- repo: https://github.com/astral-sh/ruff-pre-commit
5-
rev: v0.14.8
5+
rev: v0.14.10
66
hooks:
77
- id: ruff-check
88
files: ^reflex_ui/

reflex_ui/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
"components": ["base"],
4040
"components.icons.hugeicon": ["hi", "icon"],
4141
"components.icons.simple_icon": ["simple_icon"],
42-
"components.icons.others": ["spinner"],
42+
"components.icons.others": ["spinner", "select_arrow", "arrow_svg"],
4343
"utils.twmerge": ["cn"],
4444
}
4545

reflex_ui/__init__.pyi

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ from .components.base.toggle import toggle
3434
from .components.base.toggle_group import toggle_group
3535
from .components.base.tooltip import tooltip
3636
from .components.icons.hugeicon import hi, icon
37-
from .components.icons.others import spinner
37+
from .components.icons.others import arrow_svg, select_arrow, spinner
3838
from .components.icons.simple_icon import simple_icon
3939
from .utils.twmerge import cn
4040

@@ -74,12 +74,13 @@ _SUBMOD_ATTRS = {
7474
"components": ["base"],
7575
"components.icons.hugeicon": ["hi", "icon"],
7676
"components.icons.simple_icon": ["simple_icon"],
77-
"components.icons.others": ["spinner"],
77+
"components.icons.others": ["spinner", "select_arrow", "arrow_svg"],
7878
"utils.twmerge": ["cn"],
7979
}
8080

8181
__all__ = [
8282
"accordion",
83+
"arrow_svg",
8384
"avatar",
8485
"badge",
8586
"base",
@@ -103,6 +104,7 @@ __all__ = [
103104
"preview_card",
104105
"scroll_area",
105106
"select",
107+
"select_arrow",
106108
"simple_icon",
107109
"skeleton",
108110
"slider",

reflex_ui/components/icons/hugeicon.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
class HugeIcon(CoreComponent):
1111
"""A HugeIcon component."""
1212

13-
library = "@hugeicons/react@1.1.1"
13+
library = "@hugeicons/react@1.1.3"
1414

1515
tag = "HugeiconsIcon"
1616

@@ -51,7 +51,7 @@ def create(cls, *children, **props) -> Component:
5151
icon_name,
5252
_var_data=VarData(
5353
imports={
54-
"@hugeicons/core-free-icons@1.2.1": ImportVar(tag=icon_name)
54+
"@hugeicons/core-free-icons@3.1.0": ImportVar(tag=icon_name)
5555
}
5656
),
5757
)

0 commit comments

Comments
 (0)