@yamada-ui/tabs
Version:
Yamada UI tabs component
11 lines (8 loc) • 400 B
text/typescript
import * as _yamada_ui_core from '@yamada-ui/core';
import { HTMLUIProps } from '@yamada-ui/core';
import { UseClickableProps } from '@yamada-ui/use-clickable';
import { Merge } from '@yamada-ui/utils';
interface TabProps extends Merge<UseClickableProps<HTMLButtonElement>, HTMLUIProps<"button">> {
}
declare const Tab: _yamada_ui_core.Component<"button", TabProps>;
export { Tab, type TabProps };