UNPKG

@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) 351 B
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;