You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
430 B
22 lines
430 B
6 years ago
|
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;
|
||
|
}
|
||
|
}
|