UNPKG

@pandacss/studio

Version:

The automated token documentation for Panda CSS

10 lines (7 loc) 462 B
/* eslint-disable */ import type { FunctionComponent } from 'react' import type { LinkOverlayProperties } from '../patterns/link-overlay'; import type { HTMLPandaProps } from '../types/jsx'; import type { DistributiveOmit } from '../types/system-types'; export interface LinkOverlayProps extends LinkOverlayProperties, DistributiveOmit<HTMLPandaProps<'a'>, keyof LinkOverlayProperties > {} export declare const LinkOverlay: FunctionComponent<LinkOverlayProps>