import { Card } from "@/src/components/ui/card"; import { cn } from "@/src/utils/tailwind"; export const SettingsTableCard = ({ children, className, }: { children: React.ReactNode; className?: string; }) => { return ( :first-child>:first-child]:border-t-0", className, )} > {children} ); };