UNPKG

tdesign-react

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