File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ import { Wizard } from '.';
11
11
faker . seed ( 0 ) ;
12
12
13
13
export default {
14
- title : 'Components /Wizard' ,
14
+ title : 'Composition/Data Display /Wizard' ,
15
15
component : Wizard ,
16
16
parameters : {
17
17
default : 'LiveExample' ,
Original file line number Diff line number Diff line change 1
1
import { FormFooterProps } from '@leafygreen-ui/form-footer' ;
2
2
3
- export interface WizardFooterProps {
3
+ export interface WizardFooterProps extends React . ComponentProps < 'footer' > {
4
4
/**
5
5
* Props for the back button (left-most button)
6
6
*/
Original file line number Diff line number Diff line change 1
1
import React from 'react' ;
2
2
3
- import { TextNode , Description , H3 } from '@leafygreen-ui/typography' ;
3
+ import { Description , H3 } from '@leafygreen-ui/typography' ;
4
4
5
5
import { stepStyles } from './WizardStep.styles' ;
6
6
import { WizardStepProps } from './WizardStep.types' ;
7
7
import { WizardSubComponentProperties } from '../constants' ;
8
+ import { TextNode } from './TextNode' ;
8
9
9
10
export function WizardStep ( { title, description, children } : WizardStepProps ) {
10
11
return (
You can’t perform that action at this time.
0 commit comments