@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) • 568 B
TypeScript
export type LogoPACompanyColors = "default" | "light" | "dark";
export type LogoPACompanyVariants = "default" | "flat";
export interface LogoPagoPACompanyProps {
/** 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?: LogoPACompanyColors;
variant?: LogoPACompanyVariants;
}
export declare const LogoPagoPACompany: ({ title, size, color, variant, }: LogoPagoPACompanyProps) => JSX.Element;