@cimpress/react-components
Version:
React components to support the MCP styleguide
14 lines • 379 B
TypeScript
import React, { ReactNode } from 'react';
export interface TabGroupProps {
/**
* The title of the group of tabs
*/
label: string;
/**
* Inner content of TabGroup element
*/
children?: ReactNode;
}
declare const TabGroup: ({ label, children }: TabGroupProps) => React.JSX.Element;
export default TabGroup;
//# sourceMappingURL=TabGroup.d.ts.map