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">
<p className="text-denim-700 mb-4 flex items-center font-bold uppercase">
2022-02-10 23:45:17 +01:00
{props.icon ? (
<span className="mr-2 text-xl">
2022-02-10 23:45:17 +01:00
<Icon icon={props.icon} />
</span>
) : null}
{props.title}
</p>
{props.children}
</div>
);
}