UNPKG

@etsoo/materialui

Version:

TypeScript Material-UI Implementation

21 lines (20 loc) 449 B
import { ButtonProps } from "@mui/material/Button"; /** * ButtonLink props */ export type ButtonLinkProps<T = unknown> = Omit<ButtonProps, "href" | "onClick"> & { /** * To href */ href: string; /** * Link state */ state?: T; }; /** * ButtonLink * @param props Props * @returns Component */ export declare function ButtonLink<T = unknown>(props: ButtonLinkProps<T>): import("react/jsx-runtime").JSX.Element;