mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-30 06:09:34 +08:00
14 lines
315 B
TypeScript
14 lines
315 B
TypeScript
import * as React from 'react';
|
|
|
|
export interface IconProps {
|
|
type: string;
|
|
className?: string;
|
|
title?: string;
|
|
onClick?: (e) => void;
|
|
}
|
|
|
|
export default (props: IconProps) => {
|
|
const { type, className = '' } = props;
|
|
return <i {...props} className={`${className} anticon anticon-${type}`.trim()} />;
|
|
};
|