Files
frigate/web/src/components/Link.jsx
2021-01-19 18:02:08 -06:00

10 lines
252 B
JavaScript

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>
);
}