mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-13 15:49:10 +08:00
22 lines
430 B
TypeScript
22 lines
430 B
TypeScript
|
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;
|
||
|
}
|
||
|
}
|