21 lines
829 B
Python
21 lines
829 B
Python
"""Stub file for linkoverlay.py"""
|
|
# ------------------- DO NOT EDIT ----------------------
|
|
# This file was generated by `scripts/pyi_generator.py`!
|
|
# ------------------------------------------------------
|
|
|
|
from typing import Union, overload, Optional
|
|
from reflex.components.libs.chakra import ChakraComponent
|
|
from reflex.components.component import Component
|
|
from reflex.vars import Var, BaseVar, ComputedVar
|
|
from reflex.event import EventChain
|
|
|
|
class LinkOverlay(ChakraComponent):
|
|
@overload
|
|
@classmethod
|
|
def create(cls, *children, is_external: Optional[Union[Var[bool], bool]] = None, href: Optional[Union[Var[str], str]] = None, **props) -> "LinkOverlay": ... # type: ignore
|
|
|
|
class LinkBox(ChakraComponent):
|
|
@overload
|
|
@classmethod
|
|
def create(cls, *children, **props) -> "LinkBox": ... # type: ignore
|