@wfp/ui
Version:
WFP UI Kit
21 lines (18 loc) • 449 B
TypeScript
import * as React from 'react';
import { IIcon } from './utils';
declare namespace Icon {
interface IconProps extends React.HTMLProps<Icon> {
description: string
fill?: string
fillRule?: string
height?: string
icon?: IIcon | React.ReactNode
name?: string
role?: string
viewBox?: string
width?: string
iconRef?: () => void
}
}
declare class Icon extends React.Component<Icon.IconProps>{ }
export = Icon