import * as React from 'react' export interface SettingsCardProps { title: string description?: string icon?: React.ElementType action?: React.ReactNode children?: React.ReactNode } /** * A titled settings panel with an optional trailing action. * * Theme-driven surfaces (startsim-1f3n): it used to hard-code * `bg-white text-gray-900`, which ignored every app's palette and was * unreadable in dark mode. Now it renders on the `card` token like the rest of * the system. */ export function SettingsCard({ title, description, icon: Icon, action, children }: SettingsCardProps) { return (
{description}
)}