UNPKG

@chakra-ui/react

Version:

Responsive and accessible React UI components built with React and Emotion

13 lines (12 loc) 634 B
import { type HTMLChakraProps } from "../../styled-system"; export interface LinkOverlayProps extends HTMLChakraProps<"a"> { } export declare const LinkOverlay: import("react").ForwardRefExoticComponent<LinkOverlayProps & import("react").RefAttributes<HTMLAnchorElement>>; export interface LinkBoxProps extends HTMLChakraProps<"div"> { } /** * `LinkBox` is used to wrap content areas within a link while ensuring semantic html * * @see Docs https://chakra-ui.com/docs/components/link-overlay */ export declare const LinkBox: import("react").ForwardRefExoticComponent<LinkBoxProps & import("react").RefAttributes<HTMLDivElement>>;