@pagopa/mui-italia
Version:
[Material-UI](https://mui.com/core/) theme inspired by [Bootstrap Italia](https://italia.github.io/bootstrap-italia/).
19 lines (18 loc) • 667 B
TypeScript
import { SxProps } from "@mui/material";
export type PartyAccount = {
image: string | undefined;
name: string;
role?: string | undefined;
parentName?: string;
};
export interface PartyAccountItemProps {
image?: string;
partyName: string;
partyRole?: string;
noWrap?: boolean;
containerSx?: SxProps;
infoContainerSx?: SxProps;
maxCharactersNumberMultiLine?: number;
parentPartyName?: string;
}
export declare const PartyAccountItem: ({ partyName, parentPartyName, partyRole, image, noWrap, containerSx, infoContainerSx, maxCharactersNumberMultiLine, }: PartyAccountItemProps) => import("react/jsx-runtime").JSX.Element;