import React from "react";
import { twMerge } from "tailwind-merge";
export const Metric: React.FC<{ children: any; className?: string }> = ({
children,
className,
}) => {
return (
{children}
);
};
export const Title: React.FC<{
children: any;
className?: string;
onClick?: () => void;
}> = ({ children, className, onClick }) => {
return (
{children}
);
};
export const Label: React.FC<{ children: any; className?: string }> = ({
children,
className,
}) => {
return (
);
};
export const Text: React.FC<{ children: any; className?: string; style?: any }> = ({
children,
className,
style
}) => {
return (
{children}
);
};