You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

36 lines
1006 B

import React, { HTMLAttributes, ReactNode } from "react";
export interface HeadingProps extends HTMLAttributes<HTMLHeadingElement> {
fontClass?: string;
desc?: ReactNode;
isCenter?: boolean;
}
const Heading: React.FC<HeadingProps> = ({
children,
desc = "Discover the most outstanding articles in all topics of life. ",
className = "mb-10 text-neutral-900 dark:text-neutral-50",
isCenter = false,
...args
}) => {
return (
<div className={`nc-Section-Heading relative ${className}`}>
<div
className={
isCenter ? "text-center w-full max-w-2xl mx-auto mb-4" : "max-w-2xl"
}
>
<h2 className={`text-3xl md:text-4xl font-semibold`} {...args}>
{children || `Section Heading`}
</h2>
{desc && (
<span className="block mt-2 md:mt-3 font-normal text-base sm:text-lg text-neutral-500 dark:text-neutral-400">
{desc}
</span>
)}
</div>
</div>
);
};
export default Heading;