Skip to content

Commit

Permalink
Update SectionRow.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
cdedreuille committed Jan 31, 2024
1 parent fa608f3 commit b361f5c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions code/ui/blocks/src/components/ArgsTable/SectionRow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import type { FC } from 'react';
import React, { useState } from 'react';
import { transparentize, lighten } from 'polished';
import { styled } from '@storybook/theming';
import { ChevronSmallDownIcon, ChevronSmallRightIcon } from '@storybook/icons';
import { ChevronDownIcon, ChevronRightIcon } from '@storybook/icons';

type Level = 'section' | 'subsection';

Expand All @@ -14,7 +14,7 @@ export interface SectionRowProps {
colSpan: number;
}

const ExpanderIconDown = styled(ChevronSmallDownIcon)(({ theme }) => ({
const ExpanderIconDown = styled(ChevronDownIcon)(({ theme }) => ({
marginRight: 8,
marginLeft: -10,
marginTop: -2, // optical alignment
Expand All @@ -28,7 +28,7 @@ const ExpanderIconDown = styled(ChevronSmallDownIcon)(({ theme }) => ({
display: 'inline-block',
}));

const ExpanderIconRight = styled(ChevronSmallRightIcon)(({ theme }) => ({
const ExpanderIconRight = styled(ChevronRightIcon)(({ theme }) => ({
marginRight: 8,
marginLeft: -10,
marginTop: -2, // optical alignment
Expand Down

0 comments on commit b361f5c

Please sign in to comment.