Skip to content

Commit 184e8ed

Browse files
authored
feat: Updated icons (#188)
1 parent 8df14cb commit 184e8ed

File tree

447 files changed

+1309
-407
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

447 files changed

+1309
-407
lines changed

packages/fuselage/src/components/Chevron/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export function Chevron({
1313
size,
1414
...props
1515
}) {
16-
const children = useMemo(() => <Icon name='arrow-down' size={size} />, [size]);
16+
const children = useMemo(() => <Icon name='chevron-down' size={size} />, [size]);
1717

1818
return <Box
1919
is='span'

packages/fuselage/src/components/Select/MultiSelect.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ export const MultiSelect = ({
9090
</Flex.Item>
9191
<Flex.Item grow={0} shrink={0}>
9292
<Margins inline='x4'>
93-
<Addon children={<Icon name={ visible === AnimatedVisibility.VISIBLE ? 'cross' : 'arrow-down'} size='x20' />}/>
93+
<Addon children={<Icon name={ visible === AnimatedVisibility.VISIBLE ? 'cross' : 'chevron-down'} size='x20' />}/>
9494
</Margins>
9595
</Flex.Item>
9696
<AnimatedVisibility visibility={visible}><Position anchor={containerRef}><_Options onMouseDown={prevent} multiple filter={filter} renderItem={CheckOption} role='listbox' options={filteredOptions} onSelect={internalChanged} cursor={cursor} /></Position></AnimatedVisibility>

packages/fuselage/src/components/Select/Select.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ export const Select = ({
8484
</Margins>
8585
</Flex.Item>}
8686
<Anchor disabled={disabled} rcx-input-box--undecorated filter={filter} ref={ref} aria-haspopup='listbox' onClick={show} onBlur={hide} onKeyUp={handleKeyUp} onKeyDown={handleKeyDown} />
87-
<Margins inline='x4'><Addon children={<Icon name={ visible === AnimatedVisibility.VISIBLE ? 'cross' : 'arrow-down'} size='x20' />}/></Margins>
87+
<Margins inline='x4'><Addon children={<Icon name={ visible === AnimatedVisibility.VISIBLE ? 'cross' : 'chevron-down'} size='x20' />}/></Margins>
8888
</Wrapper>
8989
</Margins>
9090
</Flex.Container>

packages/fuselage/src/components/SelectInput/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export const SelectInput = forwardRef(function SelectInput({
3030
placeholderVisible={isPlaceholderVisible ? !!placeholder : undefined}
3131
ref={ref}
3232
{...props}
33-
addon={<Icon name='arrow-down' size='x20' />}
33+
addon={<Icon name='chevron-down' size='x20' />}
3434
type='select'
3535
onChange={handleChange}
3636
>

0 commit comments

Comments
 (0)