You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
510 B

import React from 'react';
import { SizeType } from 'antd/lib/config-provider/SizeContext';
import './index.less';
export interface LabelProps {
prefixCls?: string;
label: string;
value?: string | string[];
disabled?: boolean;
onClear?: () => void;
size?: SizeType;
ellipsis?: boolean;
placeholder?: string;
expanded?: boolean;
className?: string;
style?: React.CSSProperties;
}
declare const LightFilterLabel: React.FC<LabelProps>;
export default LightFilterLabel;