Shrink icon

This commit is contained in:
Ian Philips 2022-08-24 15:11:38 -06:00 committed by mantikoros
parent c753313546
commit ed9d0cfd95

View File

@ -56,19 +56,13 @@ export const FollowMarketButton = (props: {
> >
{followers?.includes(user?.id ?? 'nope') ? ( {followers?.includes(user?.id ?? 'nope') ? (
<Row className={'gap-2'}> <Row className={'gap-2'}>
<EyeOffIcon <EyeOffIcon className={clsx('h-6 w-6')} aria-hidden="true" />
className={clsx('h-6 w-6 xl:h-7 xl:w-7')} Unwatch
aria-hidden="true"
/>
Unfollow
</Row> </Row>
) : ( ) : (
<Row className={'gap-2'}> <Row className={'gap-2'}>
<EyeIcon <EyeIcon className={clsx('h-6 w-6')} aria-hidden="true" />
className={clsx('h-6 w-6 xl:h-7 xl:w-7')} Watch
aria-hidden="true"
/>
Follow
</Row> </Row>
)} )}
<FollowMarketModal <FollowMarketModal