@alicloudfe/components
Version:
A react component library for aliyun
15 lines (14 loc) • 448 B
TypeScript
import { Tag as NextTag } from '@alifd/next';
import React from 'react';
declare type NextTagProps = React.ComponentProps<typeof NextTag>;
export declare type TagProps = {
/** icon */
icon?: React.ReactNode;
hoverUnchangable?: Boolean;
} & NextTagProps;
declare const Tag: React.FC<TagProps> & {
Closeable: typeof NextTag.Closeable;
Selectable: typeof NextTag.Selectable;
Group: typeof NextTag.Group;
};
export default Tag;