医学道
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
video/src/pages/index/components/search.tsx

13 lines
361 B

import {FC} from "react";
import {Text, View} from "@tarojs/components";
import styles from "@/pages/index/index.module.scss";
import Icon from "@/components/icon";
export const Search: FC = () => {
return (
<View className={styles.search}>
<Icon name='search' size={18}/>
<Text className='ml-1'></Text>
</View>
)
}