UNPKG

@pagopa/mui-italia

Version:

[Material-UI](https://mui.com/core/) theme inspired by [Bootstrap Italia](https://italia.github.io/bootstrap-italia/).

17 lines (16 loc) 406 B
interface sectionCTA { label: string; title: string; href: string; } export interface Section { icon?: JSX.Element; title: string; subtitle: string | JSX.Element; cta: sectionCTA; } export interface HorizontalNavProps { sections: Array<Section>; } export declare const HorizontalNav: ({ sections }: HorizontalNavProps) => import("react/jsx-runtime").JSX.Element; export {};