Skip to content

Commit 212b4fc

Browse files
committed
minor fixes
1 parent 7d6b3ec commit 212b4fc

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

packages/wizard/src/Wizard.stories.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import { Wizard } from '.';
1111
faker.seed(0);
1212

1313
export default {
14-
title: 'Components/Wizard',
14+
title: 'Composition/Data Display/Wizard',
1515
component: Wizard,
1616
parameters: {
1717
default: 'LiveExample',

packages/wizard/src/WizardFooter/WizardFooter.types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { FormFooterProps } from '@leafygreen-ui/form-footer';
22

3-
export interface WizardFooterProps {
3+
export interface WizardFooterProps extends React.ComponentProps<'footer'> {
44
/**
55
* Props for the back button (left-most button)
66
*/

packages/wizard/src/WizardStep/WizardStep.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
import React from 'react';
22

3-
import { TextNode, Description, H3 } from '@leafygreen-ui/typography';
3+
import { Description, H3 } from '@leafygreen-ui/typography';
44

55
import { stepStyles } from './WizardStep.styles';
66
import { WizardStepProps } from './WizardStep.types';
77
import { WizardSubComponentProperties } from '../constants';
8+
import { TextNode } from './TextNode';
89

910
export function WizardStep({ title, description, children }: WizardStepProps) {
1011
return (

0 commit comments

Comments
 (0)