blakeblackshear.frigate/web/src/components/Heading.jsx

6 lines
219 B
React
Raw Normal View History

2021-01-09 18:26:46 +01:00
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>;
2021-01-09 18:26:46 +01:00
}