UNPKG

@cerberus-design/styled-system

Version:

Cerberus Design System Panda-CSS styled-system.

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