@etsoo/materialui
Version:
TypeScript Material-UI Implementation
13 lines (12 loc) • 382 B
TypeScript
import { LinkProps } from "@mui/material";
import { Link as RouterLink } from "react-router";
/**
* Extended link component props
*/
export type LinkExProps = Omit<LinkProps<typeof RouterLink>, "component">;
/**
* Extended link component
* @param props Props
* @returns Component
*/
export declare function LinkEx(props: LinkExProps): import("react/jsx-runtime").JSX.Element;