Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ui] Dash icon #20341

Merged
merged 1 commit into from
Mar 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ import concept_book from '../icon-svgs/concept-book.svg';
import console_icon from '../icon-svgs/console.svg';
import content_copy from '../icon-svgs/content_copy.svg';
import corporate_fare from '../icon-svgs/corporate_fare.svg';
import dash from '../icon-svgs/dash.svg';
import datatype_array from '../icon-svgs/datatype_array.svg';
import datatype_bool from '../icon-svgs/datatype_bool.svg';
import datatype_number from '../icon-svgs/datatype_number.svg';
Expand Down Expand Up @@ -147,7 +148,6 @@ import star from '../icon-svgs/star.svg';
import star_outline from '../icon-svgs/star_outline.svg';
import status from '../icon-svgs/status.svg';
import sticky_note from '../icon-svgs/sticky_note.svg';
import subtract from '../icon-svgs/subtract.svg';
import sync_alt from '../icon-svgs/sync_alt.svg';
import sync_problem from '../icon-svgs/sync_problem.svg';
import table_view from '../icon-svgs/table_view.svg';
Expand Down Expand Up @@ -233,6 +233,7 @@ export const Icons = {
chat_support,
changes_present,
concept_book,
dash,
open_in_new,
folder,
tag,
Expand Down Expand Up @@ -334,7 +335,6 @@ export const Icons = {
settings_backup_restore,
sort_by_alpha,
source,
subtract,
speed,
splitscreen,
stacks,
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ const LineageDepthControl = ({
<Button
disabled={value <= 1}
onClick={() => onChange(value - 1)}
icon={<Icon name="subtract" />}
icon={<Icon name="dash" />}
/>
<TextInput
min={1}
Expand Down
Loading