UNPKG

@ywfe/materials-design

Version:
15 lines (14 loc) 357 B
import { Component } from 'react'; import './style.less'; interface AntdIconSetterProps { value: string; type: string; defaultValue: string; placeholder: string; hasClear: boolean; onChange: (icon: string | object) => undefined; } export default class extends Component<AntdIconSetterProps> { render(): JSX.Element; } export {};