@brightlayer-ui/react-native-vector-icons
Version:
Brightlayer UI vector icons for use in React Native projects, based on react-native-vector-icons
18 lines (17 loc) • 830 B
TypeScript
/// <reference types="react" />
declare const BLUIIcon: import("react").FC<import("react-native").TextProps & {
name: string | number | symbol;
size?: number | undefined;
color?: import("react-native").ColorValue | undefined;
innerRef?: import("react").Ref<import("react-native").Text> | undefined;
} & import("react").RefAttributes<import("react-native").Text>> & {
getImageSource: (name: string | number | symbol, size?: number | undefined, color?: import("react-native").ColorValue | undefined) => Promise<{
uri: string;
scale: number;
} | undefined>;
getImageSourceSync: (name: string | number | symbol, size?: number | undefined, color?: import("react-native").ColorValue | undefined) => {
uri: string;
scale: number;
} | undefined;
};
export default BLUIIcon;