import { Text } from '..'; import { Box } from '../Box'; import { Stack } from '../Box/Stack'; import { Button } from '../Button'; import { Card } from '../Card'; import { Form } from '../Form'; import { Icon } from '../Icon'; import { Input } from '../Input'; import type { TabsProps } from './Tabs'; import { Tabs } from './Tabs'; export default { component: Tabs, title: 'UI/Tabs', argTypes: {}, }; function Account() { return ( Make changes to your account here. Click save when you're done. Name } /> Email } /> ); } function Password() { return ( Change your password here. After saving, you'll be logged out. Current password } /> New password } /> ); } export const Usage = (args: TabsProps) => ( Account Password ); export const Subtle = (args: TabsProps) => ( Account Password );