Repository URL to install this package:
|
Version:
3.0.4 ▾
|
import React from 'react';
import { DefaultProps } from 'icons/typings';
interface Props extends DefaultProps {
type?: string;
}
declare class FlagIcon extends React.PureComponent<Props> {
static defaultProps: {
renderWrapper: (elements: any) => JSX.Element;
};
render(): any;
}
export { FlagIcon };
export default FlagIcon;