import { Screen, View, Link, Text, Button, Card, Icon } from '@idealyst/components'; export const LinkExamples = () => { const handlePress = (linkType: string) => { console.log(`Link pressed: ${linkType}`); }; return ( Link Examples {/* Basic Text Links */} Basic Text Links handlePress('home')}> Go to Home handlePress('settings')}> Settings handlePress('profile')}> Profile {/* Links with Path Variables */} Links with Path Variables handlePress('user-123')} > View User #123 handlePress('product')} > Electronics Product #456 handlePress('post')} > Read "Hello World" Post {/* Links Wrapping Buttons */} Links Wrapping Buttons handlePress('dashboard-btn')}> handlePress('create-btn')}> handlePress('help-btn')}> {/* Links with Icons and Text */} Links with Icons handlePress('notifications')}> Notifications handlePress('messages')}> Messages handlePress('favorites')}> Favorites {/* Disabled Links */} Disabled Links handlePress('disabled-text')}> Restricted Area (Disabled) handlePress('disabled-btn')}> {/* Links Wrapping Cards */} Clickable Cards (Links) handlePress('card-1')}> Article Title Click this card to read the full article... handlePress('card-2')}> Documentation View the complete documentation {/* Navigation Menu Style */} Navigation Menu Style handlePress('menu-home')}> Home handlePress('menu-search')}> Search handlePress('menu-account')}> Account {/* Styled Links */} Custom Styled Links handlePress('styled-1')} > Styled Container handlePress('styled-2')} > Bordered Link ); };