@moderntribe/wme-ui
Version:
Components and hooks to build the best UX/UI admin wizards
12 lines • 386 B
TypeScript
import type React from 'react';
export type WizardSidebarProps = {
logo?: React.ReactNode;
icon?: React.ReactNode;
heading: string;
body: string;
children?: React.ReactNode;
subtext?: React.ReactNode;
subtextIcon?: React.ReactNode;
};
export default function WizardSidebar(props: WizardSidebarProps): JSX.Element;
//# sourceMappingURL=wizard-sidebar.d.ts.map