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.
21 lines
710 B
21 lines
710 B
6 years ago
|
import * as React from 'react';
|
||
|
import Icon from '../icon';
|
||
|
import classNames from 'classnames';
|
||
|
|
||
|
export default function InputIcon(props: { suffixIcon: any; prefixCls: string }) {
|
||
|
const { suffixIcon, prefixCls } = props;
|
||
|
return (
|
||
|
(suffixIcon &&
|
||
|
(React.isValidElement<{ className?: string }>(suffixIcon) ? (
|
||
|
React.cloneElement(suffixIcon, {
|
||
|
className: classNames({
|
||
|
[suffixIcon.props.className!]: suffixIcon.props.className,
|
||
|
[`${prefixCls}-picker-icon`]: true,
|
||
|
}),
|
||
|
})
|
||
|
) : (
|
||
|
<span className={`${prefixCls}-picker-icon`}>{suffixIcon}</span>
|
||
|
))) || <Icon type="calendar" className={`${prefixCls}-picker-icon`} />
|
||
|
);
|
||
|
}
|