mirror of
https://github.com/blakeblackshear/frigate.git
synced 2024-11-21 19:07:46 +01:00
10 lines
271 B
JavaScript
10 lines
271 B
JavaScript
import { h } from 'preact';
|
|
|
|
export default function Heading({ children, className = '', size = '2xl' }) {
|
|
return (
|
|
<h1 className={`font-semibold tracking-widest text-gray-900 uppercase dark:text-white text-${size} ${className}`}>
|
|
{children}
|
|
</h1>
|
|
);
|
|
}
|