remove IconDisplay jsx
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…
Reference in New Issue