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