UNPKG

tdesign-react

Version:
9 lines (8 loc) 332 B
import React, { FunctionComponent } from 'react'; import { TdAnchorItemProps } from './type'; import { StyledProps } from '../common'; export interface AnchorItemProps extends TdAnchorItemProps, StyledProps { children?: React.ReactNode; } declare const AnchorItem: FunctionComponent<AnchorItemProps>; export default AnchorItem;