UNPKG

@serendie/ui

Version:

Adaptive UI component library as part of Serendie Design System by Mitsubishi Electric

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