Skip to content

Commit 3e7c4ee

Browse files
authored
Arrow icon updates (#690)
Add ArrowLeft icon. Rename ArrowDropDown to ArrowDown and ArrowDropUp to ArrowUp
1 parent 07e3f25 commit 3e7c4ee

File tree

8 files changed

+13
-7
lines changed

8 files changed

+13
-7
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1515
## [0.7.24] - 2020-03-12
1616

1717
### Added
18-
18+
- `ArrowLeft` Icon added
1919
- `Checkbox` supports `defaultChecked` property.
2020
- `TabPanels` supports `FlexBoxProps` & `LayoutProps`
2121

22+
### Change
23+
- `ArrowDropDown` and `ArrowDropUp` Icons renamed to `ArrowUp` and `ArrowDown`
24+
2225
## Fixed
2326

2427
- `IconButton` Fixed duplicate Tooltips scenario
Lines changed: 3 additions & 0 deletions
Loading
Lines changed: 1 addition & 1 deletion
Loading
Lines changed: 1 addition & 1 deletion
Loading
Lines changed: 1 addition & 1 deletion
Loading

packages/playground/src/ActionList/ActionListDemo.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ export const ActionListDemo: FC = () => {
144144
}
145145
indicator={
146146
<Icon
147-
name={status === 'Success' ? 'ArrowDropUp' : 'ArrowDropDown'}
147+
name={status === 'Success' ? 'ArrowUp' : 'ArrowDown'}
148148
color={
149149
status === 'Success' ? 'palette.green300' : 'palette.red300'
150150
}

packages/playground/src/Popovers/ContentOverflow.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ export const ContentOverflow: FC = ({ children }) => (
5050
>
5151
{(onClick, ref, className) => (
5252
<ButtonOutline
53-
iconAfter="ArrowDropDown"
53+
iconAfter="ArrowDown"
5454
m="xxlarge"
5555
className={className}
5656
onClick={onClick}

packages/playground/src/Popovers/EdgeOverflow.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ export const EdgeOverflow: FC<Props> = ({
5151
>
5252
{(onClick, ref, className) => (
5353
<ButtonOutline
54-
iconAfter="ArrowDropDown"
54+
iconAfter="ArrowDown"
5555
m="xxlarge"
5656
className={className}
5757
onClick={onClick}

0 commit comments

Comments
 (0)