feat: 3 components ViewAllItem,IconWishList,Logo

This commit is contained in:
unknown
2021-08-24 09:02:22 +07:00
parent 9e7f931c53
commit c328e93052
11 changed files with 10122 additions and 2 deletions

View File

@@ -0,0 +1,21 @@
import s from './Logo.module.scss'
interface Props {
className?: string
children?: any
}
const Logo = ({}: Props) => {
return(
<div className={s.logo}>
<div className={s.eclipse}>
</div>
<div className={s.conTent}>
ONLINE GROCERY
</div>
</div>
)
}
export default Logo