* docs: create a new UI docs project (#13233) * docs: create a new UI docs project * fix installation errors * docs: migrate UI docs content to new project (#13241) * Fix content * added examples for some components * finish adding examples * lint fix * fix build errors * delete empty files * path fixes + refactor * fix build error
31 lines
1.2 KiB
TypeScript
31 lines
1.2 KiB
TypeScript
import { Tabs, Text } from "@medusajs/ui"
|
|
|
|
export default function TabsVertical() {
|
|
return (
|
|
<div className="w-full px-4 flex flex-col gap-4">
|
|
<Tabs defaultValue="general" orientation="vertical" className="flex">
|
|
<Tabs.List className="flex-col min-w-[120px] border-r border-ui-border-base">
|
|
<Tabs.Trigger value="general">General</Tabs.Trigger>
|
|
<Tabs.Trigger value="shipping">Shipping</Tabs.Trigger>
|
|
<Tabs.Trigger value="payment">Payment</Tabs.Trigger>
|
|
</Tabs.List>
|
|
<div className="ml-6 flex-1">
|
|
<Tabs.Content value="general">
|
|
<Text size="small">This is the General tab (vertical).</Text>
|
|
</Tabs.Content>
|
|
<Tabs.Content value="shipping">
|
|
<Text size="small">This is the Shipping tab (vertical).</Text>
|
|
</Tabs.Content>
|
|
<Tabs.Content value="payment">
|
|
<Text size="small">This is the Payment tab (vertical).</Text>
|
|
</Tabs.Content>
|
|
</div>
|
|
</Tabs>
|
|
<Text size="xsmall" className="text-ui-fg-muted">
|
|
Use the up and down arrow keys to navigate between the tabs. You must
|
|
focus on a tab first.
|
|
</Text>
|
|
</div>
|
|
)
|
|
}
|