react-wired-elements
Version:
Wired Elements as React components. TypeScript types included.
18 lines (17 loc) • 510 B
TypeScript
import * as React from 'react';
import { BaseProps } from './types';
export interface WiredTabProps extends BaseProps {
/**
* Unique identifier for that tab. Used for selection.
*/
name?: string;
/**
* Text to show in the tab. Defaults to the name property.
*/
label?: string;
/**
* The children.
*/
children?: React.ReactNode;
}
export declare const WiredTab: ({ children, name, label, className, style, }: WiredTabProps) => JSX.Element;