Skip to content

Commit

Permalink
fix(VerticalContainer): Rename props / stories
Browse files Browse the repository at this point in the history
  • Loading branch information
johan-fx committed Jan 19, 2024
1 parent b8711c3 commit f3ac6be
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {
} from './VerticalContainer.constants';

const VerticalContainer = forwardRef(({ children, scrollRef, leftZone, ...props }, ref) => {
const { classes } = VerticalContainerStyles({ name: 'VerticalStepperContainer' });
const { classes } = VerticalContainerStyles({ name: 'VerticalContainer' });

return (
<Box ref={ref} className={classes.root}>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { ThemeProvider } from './../../ThemeProvider';
import { Box, ContextContainer } from '../../layout';
import { Paragraph } from '../../typography';

# VerticalStepperContainer
# VerticalContainer

[Source code](https://github.com/leemonade/bubbles/tree/main/packages/components/src/layout/VerticalStepperContainer/VerticalStepperContainer.js)

Expand All @@ -23,7 +23,7 @@ import { Paragraph } from '../../typography';

## Overview

VerticalStepperContainer is component to render a VerticalStepper including the steps.
VerticalContainer is component to render a VerticalStepper including the steps.

<ThemeProvider>
<VerticalContainer
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import {
import { TotalLayoutContainer } from '../TotalLayout/TotalLayoutContainer/TotalLayoutContainer';

export default {
title: 'Atoms/Layout/VerticalStepperContainer',
title: 'Atoms/Layout/VerticalContainer',
parameters: {
component: VerticalContainer,
docs: {
Expand Down

0 comments on commit f3ac6be

Please sign in to comment.