15 lines
416 B
TypeScript
15 lines
416 B
TypeScript
import * as _chakra_ui_system from '@chakra-ui/system';
|
|
import { HTMLChakraProps } from '@chakra-ui/system';
|
|
|
|
interface TabIndicatorProps extends HTMLChakraProps<"div"> {
|
|
}
|
|
/**
|
|
* TabIndicator
|
|
*
|
|
* Used to render an active tab indicator that animates between
|
|
* selected tabs.
|
|
*/
|
|
declare const TabIndicator: _chakra_ui_system.ComponentWithAs<"div", TabIndicatorProps>;
|
|
|
|
export { TabIndicator, TabIndicatorProps };
|