@naturacosmeticos/natds-react
Version:
A collection of components from Natura Design System for React
8 lines (7 loc) • 362 B
TypeScript
import { Theme } from '@naturacosmeticos/natds-themes';
import { TabItemProps } from './TabItem.props';
declare type TabButtonProps = Pick<TabItemProps, 'isActive' | 'isDisabled' | 'brand'>;
declare const styles: (data?: (TabButtonProps & {
theme?: Theme | undefined;
}) | undefined) => import("jss").Classes<"wrapper" | "tabButton">;
export default styles;