@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) • 383 B
TypeScript
/// <reference types="react" />
export interface WalkthroughItem {
icon?: JSX.Element;
title: string;
subtitle: string | JSX.Element;
isSequential?: boolean;
}
export interface WalkthroughProps {
title: string;
items: Array<WalkthroughItem>;
}
export declare const Walkthrough: ({ title, items }: WalkthroughProps) => import("react/jsx-runtime").JSX.Element;