mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-07-22 11:49:03 +03:00
10 lines
252 B
React
10 lines
252 B
React
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}>
|
|
{children}
|
|
</a>
|
|
);
|
|
}
|