Skip to main content

Link

Link is a component that receives a title and href as props and renders clickable text that opens the URL, with optional styling.

Implementation code

import { Link } from '@nexara/nativeflow';

const Component = () => {
return (
<Link
title='@nexara/nativeflow'
href='https://www.npmjs.com/package/@nexara/nativeflow'
/>
);
}
export default Component;
PropTypeDefaultDescription
titlestring'Link'The text to be displayed as the link.
hrefstringThe URL that will be opened when the link is pressed.
styleTextStyleOptional custom styles for the link text.