UNPKG

@pandacss/studio

Version:

The automated token documentation for Panda CSS

10 lines (7 loc) 436 B
/* eslint-disable */ import type { FunctionComponent } from 'react' import type { LinkBoxProperties } from '../patterns/link-box'; import type { HTMLPandaProps } from '../types/jsx'; import type { DistributiveOmit } from '../types/system-types'; export interface LinkBoxProps extends LinkBoxProperties, DistributiveOmit<HTMLPandaProps<'div'>, keyof LinkBoxProperties > {} export declare const LinkBox: FunctionComponent<LinkBoxProps>