@gechiui/components
Version:
UI components for GeChiUI.
38 lines (27 loc) • 603 B
Markdown
# Footer Message Link
FooterMessageLink allows for adding a link within a FooterMessageControl component.
### Usage
```jsx
return (
<FooterMessageControl
value={
<>
{ __( 'Example footer text. ' ) }
<FooterMessageLink
href={ 'https://www.gechiui.com/' }
value={ __( 'Visit www.GeChiUI.com!' ) }
/>
</>
}
/>
);
```
### Props
#### href
The URL that is being linked to and that will open in a browser tab when selected.
- Type: `String`
- Required: Yes
#### value
The "clickable" text that will be displayed to the user.
- Type: `String`
- Required: Yes