cal.pub0.org/packages/features/insights/components/Card.tsx

18 lines
348 B
TypeScript

import { Card } from "@tremor/react";
interface ICardProps {
children: React.ReactNode;
className?: string;
}
export const CardInsights = (props: ICardProps) => {
const { children, className = "", ...rest } = props;
return (
<Card className={`shadow-none ring-gray-300 ${className}`} {...rest}>
{children}
</Card>
);
};