10 lines
212 B
TypeScript
10 lines
212 B
TypeScript
|
|
import React from "react";
|
||
|
|
|
||
|
|
export const Title = ({ text }: { text: string | boolean }) => {
|
||
|
|
return (
|
||
|
|
<h2 className={`text-[26px] sm:text-[34px] leading-[115%] font-normal`}>
|
||
|
|
{text}
|
||
|
|
</h2>
|
||
|
|
);
|
||
|
|
};
|