@pagopa/mui-italia
Version:
[Material-UI](https://mui.com/core/) theme inspired by [Bootstrap Italia](https://italia.github.io/bootstrap-italia/).
12 lines (11 loc) • 340 B
TypeScript
/// <reference types="react" />
export interface ShowcaseItem {
icon?: JSX.Element;
title: string;
subtitle: string | JSX.Element;
}
export interface ShowcaseProps {
title: string;
items: Array<ShowcaseItem>;
}
export declare const Showcase: ({ title, items }: ShowcaseProps) => import("react/jsx-runtime").JSX.Element;