Skip to content

Commit

Permalink
fix(time-picker): update icon to chevrondown16 (#5115)
Browse files Browse the repository at this point in the history
  • Loading branch information
annawen1 authored and joshblack committed Jan 23, 2020
1 parent b994c9a commit fd67b89
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import PropTypes from 'prop-types';
import React, { Component } from 'react';
import classNames from 'classnames';
import { ChevronDownGlyph } from '@carbon/icons-react';
import { ChevronDown16 } from '@carbon/icons-react';
import { settings } from 'carbon-components';

const { prefix } = settings;
Expand Down Expand Up @@ -108,11 +108,11 @@ export default class TimePickerSelect extends Component {
disabled={disabled}>
{children}
</select>
<ChevronDownGlyph
<ChevronDown16
className={`${prefix}--select__arrow`}
aria-label={iconDescription}>
{iconDescription && <title>{iconDescription}</title>}
</ChevronDownGlyph>
</ChevronDown16>
</div>
);
}
Expand Down

0 comments on commit fd67b89

Please sign in to comment.