Add position to icons
This commit is contained in:
@@ -153,7 +153,9 @@ export function ListHiddenScreen({
|
|||||||
<ButtonText>
|
<ButtonText>
|
||||||
<Trans>Removed from saved feeds</Trans>
|
<Trans>Removed from saved feeds</Trans>
|
||||||
</ButtonText>
|
</ButtonText>
|
||||||
{isProcessing ? <ButtonIcon icon={Loader} /> : null}
|
{isProcessing ? (
|
||||||
|
<ButtonIcon icon={Loader} position="right" />
|
||||||
|
) : null}
|
||||||
</Button>
|
</Button>
|
||||||
) : null}
|
) : null}
|
||||||
{isOwner ? (
|
{isOwner ? (
|
||||||
@@ -184,8 +186,10 @@ export function ListHiddenScreen({
|
|||||||
disabled={isProcessing}>
|
disabled={isProcessing}>
|
||||||
<ButtonText>
|
<ButtonText>
|
||||||
<Trans>Unsubscribe from list</Trans>
|
<Trans>Unsubscribe from list</Trans>
|
||||||
{isProcessing ? <ButtonIcon icon={Loader} /> : null}
|
|
||||||
</ButtonText>
|
</ButtonText>
|
||||||
|
{isProcessing ? (
|
||||||
|
<ButtonIcon icon={Loader} position="right" />
|
||||||
|
) : null}
|
||||||
</Button>
|
</Button>
|
||||||
) : null}
|
) : null}
|
||||||
</View>
|
</View>
|
||||||
|
|||||||
Reference in New Issue
Block a user