Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
17 lines
641 B
Plaintext
17 lines
641 B
Plaintext
import React from 'react';
|
|
import type { StepNavItem } from './types.js';
|
|
import { StepNavProvider, useStepNav } from './context.js';
|
|
import './index.scss';
|
|
export { SetStepNav } from './SetStepNav.js';
|
|
declare const StepNav: React.FC<{
|
|
readonly className?: string;
|
|
readonly CustomIcon?: React.ReactNode;
|
|
/**
|
|
* @deprecated
|
|
* This prop is deprecated and will be removed in the next major version.
|
|
* Components now import their own `Link` directly from `next/link`.
|
|
*/
|
|
readonly Link?: React.ComponentType;
|
|
}>;
|
|
export { StepNav, StepNavItem, StepNavProvider, useStepNav };
|
|
//# sourceMappingURL=index.d.ts.map |