frigate/web-old/src/components/Heading.jsx
Blake Blackshear 91656033c5 Use new UI (#8983)
* fixup build

* swap frontends
2024-01-31 06:42:22 -06:00

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