# Interface: StepLabelProps (/jsdoc/pixi-vn/index/interfaces/StepLabelProps)



Defined in: [src/narration/interfaces/StepLabelProps.ts:17](https://github.com/DRincs-Productions/pixi-vn/blob/998c1a75c5978f24c0dc137af5f42b90b2803967/src/narration/interfaces/StepLabelProps.ts#L17)

StepLabelPropsType is the type of the props that will be passed to the StepLabel.
You can override this interface to add your own props.

Default [#default]

```ts
{}
```

Example [#example]

```typescript
// pixi-vn.d.ts
declare module '@drincs/pixi-vn' {
    interface StepLabelProps {
        navigate: (route: string) => void,
        [key: string]: any
    }
}
```
