@bytebeans/macaw-ui
Version:
Saleor's UI component library
8 lines (7 loc) • 355 B
TypeScript
import type { ButtonBaseProps } from "@material-ui/core/ButtonBase";
import React from "react";
import { UserInteraction } from "../../types/utils";
export declare type LayoutButtonProps<T extends React.ElementType = "button"> = ButtonBaseProps<T> & {
state?: UserInteraction;
};
export declare const LayoutButton: React.FC<LayoutButtonProps>;