UNPKG

@wix/design-system

Version:

@wix/design-system

11 lines 589 B
import React from 'react'; import { VerticalTabsContextValue } from '../../VerticalTabs/VerticalTabsContext'; import { VerticalTabsItemProps } from '../VerticalTabsItem.types'; type TabAffixProps = Pick<VerticalTabsContextValue, 'size'> & { children: VerticalTabsItemProps['prefixIcon'] | VerticalTabsItemProps['suffixIcon']; dataHook?: string; className?: string; }; declare const Affix: ({ dataHook, children, size, className }: TabAffixProps) => React.ReactElement<any, string | React.JSXElementConstructor<any>> | null; export { Affix }; //# sourceMappingURL=Affix.d.ts.map