blob: eab3c7be363b22931ae94b7d70f54347bb9a2ae0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
import { Button } from '@chakra-ui/react'
import { HeartIcon } from 'lucide-react'
import React from 'react'
const AddToWishlist = () => {
return (
<Button
variant='link'
className='!text-gray-500 !font-medium'
leftIcon={<HeartIcon size={18} />}
>
Wishlist
</Button>
)
}
export default AddToWishlist
|