@etsoo/materialui
Version:
TypeScript Material-UI Implementation
21 lines (20 loc) • 481 B
TypeScript
import { IconButtonProps } from "@mui/material/IconButton";
/**
* IconButtonLink props
*/
export type IconButtonLinkProps<T = unknown> = Omit<IconButtonProps, "href" | "onClick"> & {
/**
* To href
*/
href: string;
/**
* Link state
*/
state?: T;
};
/**
* IconButtonLink
* @param props Props
* @returns Component
*/
export declare function IconButtonLink<T = unknown>(props: IconButtonLinkProps<T>): import("react/jsx-runtime").JSX.Element;