tdesign-react
Version:
TDesign Component for React
9 lines (8 loc) • 332 B
TypeScript
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;