Skip to content

Commit

Permalink
chore: search icon in indexfilters
Browse files Browse the repository at this point in the history
  • Loading branch information
mrcthms committed Jan 15, 2024
1 parent 2456acd commit 9aef612
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React, {useId} from 'react';
import {XCircleIcon} from '@shopify/polaris-icons';
import {SearchIcon} from '@shopify/polaris-icons';

import {Spinner} from '../../../Spinner';
import {Icon} from '../../../Icon';
Expand Down Expand Up @@ -62,7 +62,7 @@ export function SearchField({
disabled={disabled}
variant={borderlessQueryField ? 'borderless' : 'inherit'}
size="slim"
prefix={mdUp ? <Icon source={XCircleIcon} /> : undefined}
prefix={mdUp ? <Icon source={SearchIcon} /> : undefined}
suffix={
loading ? (
<div className={styles.Spinner}>
Expand Down

0 comments on commit 9aef612

Please sign in to comment.