Files
fn_registry/frontend/functions/ui/tabs.md
T
egutierrez cfdf515228 chore: auto-commit (799 archivos)
- .claude/CLAUDE.md
- .claude/commands/subagentes.md
- .claude/rules/INDEX.md
- .mcp.json
- bash/functions/cybersecurity/analyze_dns.md
- bash/functions/cybersecurity/audit_http_headers.md
- bash/functions/cybersecurity/audit_ssh_config.md
- bash/functions/cybersecurity/check_firewall.md
- bash/functions/cybersecurity/detect_suspicious_users.md
- bash/functions/cybersecurity/encrypt_file.md
- ...

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-14 00:28:20 +02:00

52 lines
1.4 KiB
Markdown

---
name: tabs
kind: component
lang: ts
domain: ui
version: "1.0.0"
purity: impure
signature: "Tabs(props: TabsRootProps): JSX.Element"
description: "Sistema de tabs con orientacion horizontal/vertical, variantes default y line. Mantine Tabs."
tags: [tabs, navigation, component, ui, interactive, mantine, pendiente-usar]
uses_functions: []
uses_types: []
returns: []
returns_optional: false
error_type: ""
imports: ["@mantine/core"]
output: "Componente Tabs que renderiza sistema de navegación por tabs con orientación y variantes configurables"
tested: false
tests: []
test_file_path: ""
file_path: "frontend/functions/ui/tabs.tsx"
props:
- name: orientation
type: "'horizontal' | 'vertical'"
required: false
description: "Orientación de los tabs"
- name: variant
type: "'default' | 'line'"
required: false
description: "Estilo visual de la lista"
emits: [onValueChange]
has_state: true
framework: react
variant: [default, line]
source_repo: "https://gitea-dgg044oo04woo4ggcsws4gk0.organic-machine.com/Bl4cksmith/Frontend_Library"
source_license: "MIT"
source_file: "frontend/src/components/ui/tabs.tsx"
---
## Ejemplo
```tsx
<Tabs defaultValue="general">
<TabsList>
<TabsTrigger value="general">General</TabsTrigger>
<TabsTrigger value="security">Security</TabsTrigger>
</TabsList>
<TabsContent value="general">...</TabsContent>
<TabsContent value="security">...</TabsContent>
</Tabs>
```