mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-29 13:47:02 +08:00
3411765ce9
* refactor: add interface form Calendar * refactor: add interface for layout * refactor: add interface for DatePicker * refactor: add interface for Icon * refactor: add interface for InputNumber * refactor: add interface for Input
13 lines
297 B
TypeScript
13 lines
297 B
TypeScript
import * as React from 'react';
|
|
|
|
export interface IconProps {
|
|
type: string;
|
|
className?: string;
|
|
onClick?: (e) => void;
|
|
}
|
|
|
|
export default (props: IconProps) => {
|
|
const { type, className = '' } = props;
|
|
return <i {...props} className={`${className} anticon anticon-${type}`.trim()} />;
|
|
};
|