@wordpress/components
Version:
UI components for WordPress.
26 lines (23 loc) • 491 B
JavaScript
/**
* External dependencies
*/
import { Text, Linking } from 'react-native';
/**
* WordPress dependencies
*/
import { withPreferredColorScheme } from '@wordpress/compose';
/**
* Internal dependencies
*/
import styles from './styles.scss';
function FooterMessageLink( { href, value } ) {
return (
<Text
style={ styles.footerMessageLink }
onPress={ () => Linking.openURL( href ) }
>
{ value }
</Text>
);
}
export default withPreferredColorScheme( FooterMessageLink );