@pagopa/mui-italia
Version:
[Material-UI](https://mui.com/core/) theme inspired by [Bootstrap Italia](https://italia.github.io/bootstrap-italia/).
16 lines (15 loc) • 753 B
TypeScript
/// <reference types="react" />
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;