Skip to content

Commit

Permalink
chore: update indicator stories
Browse files Browse the repository at this point in the history
  • Loading branch information
anuraghazra committed Jul 11, 2024
1 parent 7a8e4c6 commit 58c72ff
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 7 deletions.
4 changes: 2 additions & 2 deletions packages/blade/src/components/Avatar/docs/Avatar.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -121,15 +121,15 @@ const AvatarSizesTemplate: StoryFn<typeof AvatarComponent> = (args) => {
flex="1 1 auto"
alignItems="center"
justifyItems="center"
alignContent="start"
alignContent="center"
gap="spacing.5"
flexWrap="nowrap"
width="120px"
>
<Box width="50px">
<Heading>{size}</Heading>
</Box>
<Box display="flex" flex="1 1 auto" justifyContent="flex-start">
<Box display="flex" flex="1 1 auto" justifyContent="center">
<AvatarComponent {...args} size={size} />
</Box>
</Box>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ export const Composition: StoryFn<typeof IndicatorComponent> = ({ ...args }) =>
{...args}
position="absolute"
top={isReactNative ? '-8px' : '-4px'}
right="-8px"
right="-4px"
zIndex={10}
/>
<Button>Get started</Button>
Expand Down
1 change: 0 additions & 1 deletion packages/blade/src/components/StepGroup/StepItemMarker.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ const StepItemIndicator = ({ color }: { color: IndicatorProps['color'] }): React
>
<Indicator
position="relative"
marginLeft="spacing.2"
color={color}
size={size}
accessibilityLabel={`${color} indicator`}
Expand Down
Loading

0 comments on commit 58c72ff

Please sign in to comment.