When to use anchor suffix icon? #3855
-
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Hey there, @jess-watson! Fancy seeing you here again. I see you've got another puzzle for us to solve together. Give me a moment to dive into your question about the LinkExternal icon, and I'll be back with some insights shortly. |
Beta Was this translation helpful? Give feedback.
-
Disclaimer: This is a very experimental bot using OpenAI's GPT-4. The answers may not be correct, a human will review the answer and update it if necessary. Based on the provided sections from the Paste documentation, the guidance around when to use the LinkExternal icon in the suffix of an anchor is as follows:
import {Anchor} from '@twilio-paste/core/anchor';
<Anchor href="https://external-link.com" showExternal>
External Link
</Anchor>
For more details, you can refer to the Anchor component documentation: https://paste.twilio.design/components/anchor#external-anchor. This approach helps maintain a clear distinction between internal and external navigation for users, improving the overall user experience by setting the right expectations before a link is clicked. I also did a search, and I managed to find these other Discussions that might be similar or related to your question. Give them a read to see if they answer your question. If they do, head back here and update this discussion and mark it as answered, pointing others to the related discussion:
|
Beta Was this translation helpful? Give feedback.
Disclaimer: This is a very experimental bot using OpenAI's GPT-4. The answers may not be correct, a human will review the answer and update it if necessary.
Based on the provided sections from the Paste documentation, the guidance around when to use the LinkExternal icon in the suffix of an anchor is as follows:
showExternal
property on the Anchor component, which automatically adds a very similar external link icon. This is suitable for links that navigate away from the current application to a different domain or product documentation. The presence of the LinkExternal icon helps users understand that …