import { Example, ExampleWrapper, } from "@/registry/bases/base/components/example" import { Button } from "@/registry/bases/base/ui/button" import { DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuSeparator, DropdownMenuTrigger, } from "@/registry/bases/base/ui/dropdown-menu" import { Input } from "@/registry/bases/base/ui/input" import { Tabs, TabsContent, TabsList, TabsTrigger, } from "@/registry/bases/base/ui/tabs" import { IconPlaceholder } from "@/app/(create)/components/icon-placeholder" export default function TabsExample() { return ( ) } function TabsBasic() { return ( Home Settings ) } function TabsLine() { return ( Overview Analytics Reports ) } function TabsVariantsComparison() { return (
Overview Analytics Overview Analytics
) } function TabsDisabled() { return ( Home Disabled ) } function TabsWithIcons() { return ( Preview Code ) } function TabsIconOnly() { return ( ) } function TabsMultiple() { return ( Overview Analytics Reports Settings ) } function TabsWithContent() { return ( Account Password Notifications
Manage your account preferences and profile information. Update your password to keep your account secure. Configure how you receive notifications and alerts.
) } function TabsLineWithContent() { return ( Account Password Notifications
Manage your account preferences and profile information. Update your password to keep your account secure. Configure how you receive notifications and alerts.
) } function TabsLineDisabled() { return ( Overview Analytics Reports ) } function TabsWithDropdown() { return (
Overview Analytics Reports } > More options Settings Export Archive
View your dashboard metrics and key performance indicators. Detailed analytics and insights about your data. Generate and view custom reports.
) } function TabsVertical() { return ( Account Password Notifications
Manage your account preferences and profile information. Update your password to keep your account secure. Use a strong password with a mix of letters, numbers, and symbols. Configure how you receive notifications and alerts. Choose which types of notifications you want to receive and how you want to receive them.
) } function TabsWithInputAndButton() { return (
Overview Analytics
View your dashboard metrics and key performance indicators. Detailed analytics and insights about your data. Generate and view custom reports.
) }