@pagopa/mui-italia
Version:
[Material-UI](https://mui.com/core/) theme inspired by [Bootstrap Italia](https://italia.github.io/bootstrap-italia/).
11 lines (10 loc) • 472 B
TypeScript
export type LogoPagoPAProductColors = "default" | "light" | "dark";
export interface LogoPagoPAProductProps {
/** Provides a human-readable title for the element that contains it. */
title: string;
/** Width of the component. Height is set automatically. */
size?: number;
/** The color of the component. */
color: LogoPagoPAProductColors;
}
export declare const LogoPagoPAProduct: ({ title, size, color, }: LogoPagoPAProductProps) => JSX.Element;