ant-design/components/icon/index.tsx
2016-06-22 13:19:48 +08:00

11 lines
307 B
TypeScript

import React from 'react';
import splitObject from '../_util/splitObject';
export default props => {
const [{type, className = ''}, others] = splitObject(props,
['type','className']);
let className2 = `${className} anticon anticon-${type}`;
return <i className={className2} {...others} />;
};