FloatingContactLinks
1.0.0
Requires Celeste 1.0.0
Install or Update
wp celeste pull component FloatingContactLinks
Dependencies will automatically be installed.
Properties
| Prop | Description |
|---|---|
links |
An array of links, each one should contain a url and name key |
links.name |
String, usually the site name, all lowercase, also used as the icon name |
links.url |
String, URL to link to |
animate |
Whether or not the component should slide in from the right |
How to use it
{% set links = [
{ name: "Instagram", url: "https://instagram.com" },
{ name: "TikTok", url: "https://tiktok.com" },
{ name: "LinkedIn", url: "https://linkedin.com" }
] %}
<FloatingContactLinks :links="links" />