mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-03-17 23:13:51 +01:00
16 lines
355 B
TypeScript
16 lines
355 B
TypeScript
import classnames from 'classnames';
|
|
import type { ReactNode } from 'react';
|
|
|
|
type Props = {
|
|
className?: string;
|
|
children?: ReactNode;
|
|
};
|
|
|
|
export function Heading({ className, children, ...props }: Props) {
|
|
return (
|
|
<h1 className={classnames(className, 'text-2xl font-semibold text-gray-900 mb-3')} {...props}>
|
|
{children}
|
|
</h1>
|
|
);
|
|
}
|