import * as React from 'react' import { Toolbar as BaseToolbar } from '@base-ui/react/toolbar' import { cn } from '../../internal/utils' interface ToolbarProps extends React.ComponentProps {} function Toolbar({ className, ...props }: ToolbarProps) { return ( ) } interface ToolbarButtonProps extends React.ComponentProps {} function ToolbarButton(props: ToolbarButtonProps) { return } interface ToolbarLinkProps extends React.ComponentProps {} function ToolbarLink(props: ToolbarLinkProps) { return } interface ToolbarInputProps extends React.ComponentProps {} function ToolbarInput(props: ToolbarInputProps) { return } interface ToolbarGroupProps extends React.ComponentProps {} function ToolbarGroup({ className, ...props }: ToolbarGroupProps) { return ( ) } interface ToolbarSeparatorProps extends React.ComponentProps {} function ToolbarSeparator({ className, ...props }: ToolbarSeparatorProps) { return ( ) } export { Toolbar, ToolbarButton, ToolbarLink, ToolbarInput, ToolbarGroup, ToolbarSeparator } export type { ToolbarProps, ToolbarButtonProps, ToolbarLinkProps, ToolbarInputProps, ToolbarGroupProps, ToolbarSeparatorProps, }