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.
13 lines
361 B
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>
|
|
)
|
|
}
|
|
|