reflex/pynecone/components/navigation/nextlink.py
2023-05-09 23:01:25 -07:00

21 lines
507 B
Python

"""A link component."""
from pynecone.components.component import Component
from pynecone.vars import Var
class NextLink(Component):
"""Links are accessible elements used primarily for navigation. This component is styled to resemble a hyperlink and semantically renders an <a>."""
library = "next/link"
tag = "NextLink"
is_default = True
# The page to link to.
href: Var[str]
# Whether to pass the href prop to the child.
pass_href: Var[bool] = True # type: ignore