blob: fccbdcf5dc61083f2941b13b82267e649a996ac3 (
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'
colorScheme='gray'
leftIcon={<HeartIcon size={18} />}
>
Wishlist
</Button>
)
}
export default AddToWishlist
|