UNPKG

@cfxjs/react-ui

Version:

Modern and minimalist React UI library.

9 lines (8 loc) 218 B
import React from 'react'; interface Props { label: string | React.ReactNode; value: string; disabled?: boolean; } declare const TabsItem: React.FC<React.PropsWithChildren<Props>>; export default TabsItem;