@ui-kitten/eva-icons
Version:
Eva Icons for React Native
12 lines (11 loc) • 417 B
TypeScript
import React from 'react';
import { SvgProps } from 'react-native-svg';
import { IconProvider } from '@ui-kitten/components';
type IconElement = React.ReactElement<SvgProps>;
type IconComponent = React.ComponentType<SvgProps>;
export declare class EvaIcon implements IconProvider<SvgProps> {
private content;
constructor(content: IconComponent);
toReactElement(props: SvgProps): IconElement;
}
export {};