mirror of
https://github.com/plausible/analytics.git
synced 2024-12-22 00:51:36 +03:00
32937c53d1
* Upgrade config file * Upgrade grey colour * Update styles for dashboard * Update styles for new site flow * Update styles for user settings * Update site setting styles * Update other pages * Adjust spacing * Update last grey rules * Purge css
17 lines
594 B
JavaScript
17 lines
594 B
JavaScript
import React from 'react';
|
|
import { Link } from 'react-router-dom'
|
|
|
|
export default function MoreLink({site, list, endpoint}) {
|
|
if (list.length > 0) {
|
|
return (
|
|
<div className="text-center w-full absolute bottom-0 left-0 p-4">
|
|
<Link to={`/${encodeURIComponent(site.domain)}/${endpoint}${window.location.search}`} className="leading-snug font-bold text-sm text-gray-600 hover:text-red-500 transition tracking-wide">
|
|
<svg className="feather mr-1 -mt-px"><use xlinkHref="#feather-maximize" /></svg>
|
|
MORE
|
|
</Link>
|
|
</div>
|
|
)
|
|
}
|
|
return null
|
|
}
|