ant-design/components/icon/index.tsx
2016-08-22 17:26:14 +08:00

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()} />;
};