Switch X for Check

This commit is contained in:
Chewbacca 2022-12-06 13:50:03 -05:00
parent 4448309adc
commit 717c21a2e3

View file

@ -37,7 +37,7 @@ const CarouselItem = ({ avatar }: { avatar: any }) => {
<div className='block mx-auto relative w-14 h-14 rounded-full'>
{isSelected && (
<div className='absolute inset-0 bg-primary-600 bg-opacity-50 rounded-full flex items-center justify-center'>
<Icon src={require('@tabler/icons/x.svg')} className='text-white h-6 w-6' />
<Icon src={require('@tabler/icons/check.svg')} className='text-white h-6 w-6' />
</div>
)}