UNPKG

@pagopa/mui-italia

Version:

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

15 lines (14 loc) 516 B
/// <reference types="react" /> export interface ProductAvatarProps { /** The id attribute added to the element */ id?: string; /** Component dimension set in pixels */ size?: "small" | "default" | "large"; /** The url logo */ logoUrl: string; /** The logo background color */ logoBgColor?: string; /** Alternate text for logo */ logoAltText: string; } export declare const ProductAvatar: ({ size, id, logoUrl, logoBgColor, logoAltText, }: ProductAvatarProps) => JSX.Element;