mirror of
https://github.com/blakeblackshear/frigate.git
synced 2025-05-17 01:16:06 +02:00
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>;
|
|
}
|