UNPKG

@cmk/fe_utils

Version:
9 lines (7 loc) 356 B
import { LinkProps } from '@mui/material'; import { ReactNode } from 'react'; import { CommonComponentPropertys } from '../../componentProperty'; export type LinkWrapperProps = CommonComponentPropertys & LinkProps & { rootInjection: ReactNode; }; export declare const LinkWrapper: (props: LinkWrapperProps) => import("react/jsx-runtime").JSX.Element;