diff options
author | fragosti <francesco.agosti93@gmail.com> | 2018-11-02 09:36:34 +0800 |
---|---|---|
committer | fragosti <francesco.agosti93@gmail.com> | 2018-11-02 09:36:34 +0800 |
commit | cdaa1407dacacc53e01a70b1e0ac46536342a4e0 (patch) | |
tree | 154ea733755d4fc7b793902e88c4d0448d8b73a7 /packages/instant/src/components/ui | |
parent | 92706a4b431e0023cf21adec62635447594d8ab3 (diff) | |
download | dexon-sol-tools-cdaa1407dacacc53e01a70b1e0ac46536342a4e0.tar.gz dexon-sol-tools-cdaa1407dacacc53e01a70b1e0ac46536342a4e0.tar.zst dexon-sol-tools-cdaa1407dacacc53e01a70b1e0ac46536342a4e0.zip |
feat: implement search bar UI
Diffstat (limited to 'packages/instant/src/components/ui')
-rw-r--r-- | packages/instant/src/components/ui/icon.tsx | 8 | ||||
-rw-r--r-- | packages/instant/src/components/ui/input.tsx | 1 |
2 files changed, 8 insertions, 1 deletions
diff --git a/packages/instant/src/components/ui/icon.tsx b/packages/instant/src/components/ui/icon.tsx index 9b83d962a..94ea26900 100644 --- a/packages/instant/src/components/ui/icon.tsx +++ b/packages/instant/src/components/ui/icon.tsx @@ -20,6 +20,7 @@ interface IconInfoMapping { failed: IconInfo; success: IconInfo; chevron: IconInfo; + search: IconInfo; } const ICONS: IconInfoMapping = { closeX: { @@ -52,6 +53,13 @@ const ICONS: IconInfoMapping = { strokeLinecap: 'round', strokeLinejoin: 'round', }, + search: { + viewBox: '0 0 14 14', + fillRule: 'evenodd', + clipRule: 'evenodd', + path: + 'M8.39404 5.19727C8.39404 6.96289 6.96265 8.39453 5.19702 8.39453C3.4314 8.39453 2 6.96289 2 5.19727C2 3.43164 3.4314 2 5.19702 2C6.96265 2 8.39404 3.43164 8.39404 5.19727ZM8.09668 9.51074C7.26855 10.0684 6.27075 10.3945 5.19702 10.3945C2.3269 10.3945 0 8.06738 0 5.19727C0 2.32715 2.3269 0 5.19702 0C8.06738 0 10.394 2.32715 10.394 5.19727C10.394 6.27051 10.0686 7.26855 9.51074 8.09668L13.6997 12.2861L12.2854 13.7002L8.09668 9.51074Z', + }, }; export interface IconProps { diff --git a/packages/instant/src/components/ui/input.tsx b/packages/instant/src/components/ui/input.tsx index a884ff7cb..65cf838b0 100644 --- a/packages/instant/src/components/ui/input.tsx +++ b/packages/instant/src/components/ui/input.tsx @@ -9,7 +9,6 @@ export interface InputProps { fontSize?: string; fontColor?: ColorOption; placeholder?: string; - onChange?: (event: React.ChangeEvent<HTMLInputElement>) => void; } export const Input = |