UNPKG

antd-mobile

Version:

基于 React 的移动设计规范实现

15 lines (14 loc) 356 B
/// <reference types="react" /> import React from 'react'; export interface IconPropType { type: string; size?: 'xxs' | 'xs' | 'sm' | 'md' | 'lg' | number; color?: string; } export default class Icon extends React.Component<any, any> { static defaultProps: { size: string; color: string; }; render(): JSX.Element; }