@tra-tech/react-native-kitra
Version:
UI kit for React Native
18 lines (17 loc) • 573 B
TypeScript
import React from 'react';
import type { IconComponentProps } from '../../types';
export declare const accessibilityProps: {
role: string;
focusable: boolean;
accessibilityElementsHidden?: undefined;
importantForAccessibility?: undefined;
} | {
accessibilityElementsHidden: boolean;
importantForAccessibility: "no-hide-descendants";
role?: undefined;
focusable?: undefined;
};
export declare class FeatherIcon extends React.Component<IconComponentProps> {
render(): import("react/jsx-runtime").JSX.Element;
}
export default FeatherIcon;