frigate/web/src/components/Link.jsx

10 lines
252 B
React
Raw Normal View History

2021-01-09 20:26:46 +03:00
import { h } from 'preact';
export default function Link({ className, children, href, ...props }) {
return (
<a className={`text-blue-500 dark:text-blue-400 hover:underline ${className}`} href={href} {...props}>
2021-01-09 20:26:46 +03:00
{children}
</a>
);
}