mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 10:30:04 +01:00
f5e86d0351
* fix error with color variable - fix rebase * clean list search & fuse threshold decreased * update search-icon , fix tests * nice to have highlighting text & cleaning * unit test on settings & search input ui up on expanded view * fix color variable in alert scss * setting search input padding right up * fix dom warning * util/search test added & Dom element warning fix * renaming files * fix color text in settings search * settings search highlight text refacto & fix ui * fix settings-search test & renaming * Fix styling on search field for edge cases, update components and e2e E2E tests update for search feature Update components from class to functional component # Fix storybook for search box Fix styling Fix unit tests fix: remove z-index Fix unit tests Co-authored-by: amerkadicE <amer.kadic@endava.com>
12 lines
264 B
JavaScript
12 lines
264 B
JavaScript
import React from 'react';
|
|
import SettingsSearch from './settings-search';
|
|
|
|
export default {
|
|
title: 'Pages/Settings/SettingsSearch',
|
|
id: __filename,
|
|
};
|
|
|
|
export const SettingsSearchComponent = () => {
|
|
return <SettingsSearch onSearch settingsRoutesList />;
|
|
};
|