UNPKG

@geist-ui/react

Version:

Modern and minimalist React UI library.

15 lines (14 loc) 517 B
import React from 'react'; interface Props { initialValue?: string; value?: string; hideDivider?: boolean; onChange?: (val: string) => void; className?: string; } declare type NativeAttrs = Omit<React.HTMLAttributes<any>, keyof Props>; export declare type TabsProps = Props & NativeAttrs; declare const Tabs: React.ForwardRefExoticComponent<Props & NativeAttrs & { children?: React.ReactNode; } & import("../use-scaleable").ScaleableProps & React.RefAttributes<unknown>>; export default Tabs;