import type { ReactNode } from "react"; import { Card } from "../ui/card"; interface LstCardProps { children?: ReactNode; className?: string; style?: React.CSSProperties; } export function LstCard({ children, className = "", style = {}, }: LstCardProps) { return ( {children} ); }