@pagopa/mui-italia
Version:
[Material-UI](https://mui.com/core/) theme inspired by [Bootstrap Italia](https://italia.github.io/bootstrap-italia/).
14 lines (13 loc) • 660 B
TypeScript
export type MonogramPagoPACompanyShapes = "none" | "circle";
export type MonogramPagoPAMonogramColors = "primary" | "dark" | "light" | "light-primary";
export interface MonogramPagoPACompanyProps {
/** 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: MonogramPagoPAMonogramColors;
/** The shape of the component. */
shape: MonogramPagoPACompanyShapes;
}
export declare const MonogramPagoPACompany: ({ title, size, color, shape, }: MonogramPagoPACompanyProps) => JSX.Element;