UNPKG

@cloudquery/plugin-ui-sdk

Version:

SDK for CloudQuery Plugin UI configuration

16 lines 520 B
import { default as React, ReactNode } from 'react'; import { LinkProps as MuiLinkProps } from '@mui/material/Link'; /** * @public */ export type LinkProps = Omit<MuiLinkProps, 'onClick' | 'children' | 'href'> & { children: ReactNode; href: string; }; /** * Wrapper for MUI Link component that opens a URL in the plugin UI top app. * * @public */ export declare const Link: React.ForwardRefExoticComponent<Omit<LinkProps, "ref"> & React.RefAttributes<HTMLAnchorElement>>; //# sourceMappingURL=link.d.ts.map