Commit 645921a 1 parent b645828 commit 645921a Copy full SHA for 645921a
File tree 3 files changed +4
-6
lines changed
components/src/components/tabs
react/src/components/Tabs
3 files changed +4
-6
lines changed Original file line number Diff line number Diff line change 62
62
.#{$prefix } --tabs-trigger svg {
63
63
position : absolute ;
64
64
right : $spacing-05 ;
65
- width : rem (12px );
66
- height : rem (7px );
67
65
fill : $ui-05 ;
68
66
transition : transform $duration--fast-01 motion (standard , productive );
69
67
}
Original file line number Diff line number Diff line change 8
8
<div data-tabs class =" {{ @root.prefix }} --tabs{{ #if container }} {{ @root.prefix }} --tabs--container{{ /if }} " >
9
9
<div class =" {{ @root.prefix }} --tabs-trigger" tabindex =" 0" >
10
10
<a href =" javascript:void(0)" class =" {{ @root.prefix }} --tabs-trigger-text" tabindex =" -1" ></a >
11
- {{ carbon-icon ' ChevronDownGlyph ' }}
11
+ {{ carbon-icon ' ChevronDown16 ' }}
12
12
</div >
13
13
<ul class =" {{ @root.prefix }} --tabs__nav {{ @root.prefix }} --tabs__nav--hidden" role =" tablist" >
14
14
{{ #each items }}
Original file line number Diff line number Diff line change 8
8
import PropTypes from 'prop-types' ;
9
9
import React from 'react' ;
10
10
import classNames from 'classnames' ;
11
- import { ChevronDownGlyph } from '@carbon/icons-react' ;
11
+ import { ChevronDown16 } from '@carbon/icons-react' ;
12
12
import { settings } from 'carbon-components' ;
13
13
import { keys , match , matches } from '../../internal/keyboard' ;
14
14
@@ -294,9 +294,9 @@ export default class Tabs extends React.Component {
294
294
onClick = { this . handleDropdownClick } >
295
295
{ selectedLabel }
296
296
</ a >
297
- < ChevronDownGlyph aria-hidden = "true" >
297
+ < ChevronDown16 aria-hidden = "true" >
298
298
{ iconDescription && < title > { iconDescription } </ title > }
299
- </ ChevronDownGlyph >
299
+ </ ChevronDown16 >
300
300
</ div >
301
301
< ul role = "tablist" className = { classes . tablist } >
302
302
{ tabsWithProps }
You can’t perform that action at this time.
0 commit comments