ant-design/site/theme/template/IconDisplay/index.tsx

22 lines
430 B
TypeScript
Raw Normal View History

2018-09-01 14:05:47 +08:00
import * as React from 'react';
import { ThemeType } from '../../../../components/icon';
interface IconDisplayProps {
icons: Array<{ category: string, names: string[] }>;
}
interface IconDisplayState {
theme: ThemeType;
}
export default class IconDisplay extends React.Component<IconDisplayProps, IconDisplayState> {
state: IconDisplayState = {
theme: 'outlined',
};
render() {
// wip
return null;
}
}