diff options
author | Steve Klebanoff <steve.klebanoff@gmail.com> | 2018-11-06 01:42:22 +0800 |
---|---|---|
committer | Steve Klebanoff <steve.klebanoff@gmail.com> | 2018-11-06 01:42:22 +0800 |
commit | eb46570a38c0c2b698ec1fe23806c2ff4c8e7bfa (patch) | |
tree | 3388500c8e8de44beb557eb2b3211f7a3e0d117e /packages/instant/src/components/search_input.tsx | |
parent | 66261102de57e3bc86714577c021aa5c7e17c150 (diff) | |
download | dexon-0x-contracts-eb46570a38c0c2b698ec1fe23806c2ff4c8e7bfa.tar.gz dexon-0x-contracts-eb46570a38c0c2b698ec1fe23806c2ff4c8e7bfa.tar.zst dexon-0x-contracts-eb46570a38c0c2b698ec1fe23806c2ff4c8e7bfa.zip |
chore(instant): import UI components directly
Diffstat (limited to 'packages/instant/src/components/search_input.tsx')
-rw-r--r-- | packages/instant/src/components/search_input.tsx | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/packages/instant/src/components/search_input.tsx b/packages/instant/src/components/search_input.tsx index f082eaa16..3a693b9f8 100644 --- a/packages/instant/src/components/search_input.tsx +++ b/packages/instant/src/components/search_input.tsx @@ -3,7 +3,10 @@ import * as React from 'react'; import { ColorOption } from '../style/theme'; -import { Container, Flex, Icon, Input, InputProps } from './ui'; +import { Container } from './ui/container'; +import { Flex } from './ui/flex'; +import { Icon } from './ui/icon'; +import { Input, InputProps } from './ui/input'; export interface SearchInputProps extends InputProps { backgroundColor?: ColorOption; |