UNPKG

@pagopa/mui-italia

Version:

[Material-UI](https://mui.com/core/) theme inspired by [Bootstrap Italia](https://italia.github.io/bootstrap-italia/).

13 lines (12 loc) 447 B
/// <reference types="react" /> export interface PartyAvatarProps { /** The id attribute added to the element */ id?: string; /** The logo src */ customSrc: string | undefined; /** The alt text showed instead of the image */ customAlt: string | undefined; /** Logo Dimension set in pixels */ size?: number; } export declare const PartyAvatar: ({ customAlt, customSrc, size, id, }: PartyAvatarProps) => JSX.Element;