(feature: str)
| 3 | from ..ui.base import base_page |
| 4 | |
| 5 | def feature_item(feature: str) -> rx.Component: |
| 6 | return rx.hstack( |
| 7 | rx.icon( |
| 8 | "check", color=rx.color("blue", 9), size=21 |
| 9 | ), |
| 10 | rx.text(feature, size="4", weight="regular"), |
| 11 | ) |
| 12 | |
| 13 | |
| 14 | def standard_features() -> rx.Component: |
no outgoing calls
no test coverage detected