Files
Egutierrez 5a824c2eee initial: mirror of @fn_library from fn_registry
75 components + DESIGN_SYSTEM.md + sync script.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-04-21 19:06:49 +02:00

1.4 KiB

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

Ejemplo

<Tabs defaultValue="general">
  <TabsList>
    <TabsTrigger value="general">General</TabsTrigger>
    <TabsTrigger value="security">Security</TabsTrigger>
  </TabsList>
  <TabsContent value="general">...</TabsContent>
  <TabsContent value="security">...</TabsContent>
</Tabs>