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.
|
import { Typography } from "antd";
|
|
import { twMerge } from "tailwind-merge";
|
|
|
|
const { Text } = Typography;
|
|
|
|
export const Title = ({ text, className }) => {
|
|
return (
|
|
<div className={className}>
|
|
<Text type="secondary" className={twMerge("uppercase")}>
|
|
{text}
|
|
</Text>
|
|
</div>
|
|
);
|
|
};
|