remove IconDisplay jsx

pull/11999/head
HeskeyBaozi 6 years ago committed by 偏右
parent dcc35f1deb
commit 2600d8a4ca

@ -0,0 +1,21 @@
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;
}
}
Loading…
Cancel
Save