UNPKG

taro-ui-vue3

Version:

Taro UI Rewritten in Vue 3.0

24 lines (14 loc) 415 B
import { AllowedComponentProps } from '@vue/runtime-core' export interface AtComponent extends AllowedComponentProps { } export interface AtIconBaseProps2 extends AtComponent { value: string; color?: string; } export interface AtIconBaseProps extends AtComponent { value: string; color?: string; prefixClass?: string; size?: number | string; } export default AtComponent