@cmk/fe_utils
Version:
frontend utility library
9 lines (7 loc) • 356 B
TypeScript
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;