@pagopa/mui-italia
Version:
[Material-UI](https://mui.com/core/) theme inspired by [Bootstrap Italia](https://italia.github.io/bootstrap-italia/).
14 lines (13 loc) • 644 B
TypeScript
import React from "react";
export interface PartyAccountItemButtonProps {
selectedItem?: boolean;
partyName: string;
partyRole?: string;
image?: string;
action?: React.Dispatch<React.MouseEvent<HTMLDivElement, MouseEvent>>;
disabled?: boolean;
endSlot?: JSX.Element | Array<JSX.Element> | undefined;
maxCharactersNumberMultiLine?: number;
parentPartyName?: string;
}
export declare const PartyAccountItemButton: ({ partyName, partyRole, image, selectedItem, action, disabled, endSlot, maxCharactersNumberMultiLine, parentPartyName, }: PartyAccountItemButtonProps) => import("react/jsx-runtime").JSX.Element;