import React from 'react' import { Tabs as RACTabs, type Key as RACKey, type TabsProps as RACTabsProps, } from 'react-aria-components' export type TabsProps = Omit export type Key = RACKey /** * {@link https://cultureamp.atlassian.net/wiki/spaces/DesignSystem/pages/3081929117/Tabs Guidance} | * {@link https://cultureamp.design/?path=/docs/components-tabs--controlled Storybook} * * Wrapper around all of the tab subcomponents * Holds a TabList and TabPanels */ export const Tabs = (props: TabsProps): JSX.Element =>