@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) • 721 B
TypeScript
export type NextGeneratioNEUVariants = "filled" | "outline" | "color";
export type NextGenerationEUColors = "light" | "dark" | "pantone";
export interface FundedByNextGenerationEUPropsProps {
/** Provides a human-readable title for the element that contains it. */
title?: string;
/** Width of the component. Height is set automatically. */
size?: number;
/** The variant to use. If the color variant is set,
* the color property is ignored. */
variant?: NextGeneratioNEUVariants;
/** The color of the component. */
color?: NextGenerationEUColors;
}
export declare const FundedByNextGenerationEU: ({ title, size, color, variant, }: FundedByNextGenerationEUPropsProps) => JSX.Element;