1
0
Fork 0
mirror of https://github.com/sussy-code/smov.git synced 2024-12-27 15:47:41 +01:00
smov/src/components/layout/SectionHeading.tsx

25 lines
570 B
TypeScript
Raw Normal View History

2022-02-10 23:45:17 +01:00
import { Icon, Icons } from "components/Icon";
import { ReactNode } from "react";
interface SectionHeadingProps {
icon?: Icons;
title: string;
children?: ReactNode;
}
export function SectionHeading(props: SectionHeadingProps) {
return (
<div className="mt-12">
2022-02-13 18:49:03 +01:00
<p className="flex items-center uppercase font-bold text-denim-700 mb-3">
2022-02-10 23:45:17 +01:00
{props.icon ? (
<span className="text-xl mr-2">
<Icon icon={props.icon} />
</span>
) : null}
{props.title}
</p>
{props.children}
</div>
);
}