@etsoo/materialui
Version:
TypeScript Material-UI Implementation
24 lines (23 loc) • 615 B
TypeScript
import { IBridgeHost } from "@etsoo/appscript";
import { IconButtonProps } from "@mui/material/IconButton";
import { BoxProps } from "@mui/material/Box";
/**
* Bridge close button props
*/
export interface BridgeCloseButtonProps extends IconButtonProps {
/**
* Box props
*/
boxProps?: BoxProps;
/**
* Validate the host
* @param host Host
*/
validate?(host: IBridgeHost): boolean;
}
/**
* Bridge close button
* @param props Props
* @returns Component
*/
export declare function BridgeCloseButton(props: BridgeCloseButtonProps): import("react/jsx-runtime").JSX.Element;