react-native-windows
Version:
React Native for Windows
17 lines • 458 B
TypeScript
/**
* Copyright (c) Microsoft Corporation.
* Licensed under the MIT License.
* @format
*/
import { StyleProp, ViewProps, ViewStyle } from 'react-native';
export interface GlyphStyle extends ViewStyle {
color?: string;
}
export interface GlyphProps extends ViewProps {
style?: StyleProp<GlyphStyle>;
emSize?: number;
fontUri: string;
glyph: string;
colorEnabled?: boolean;
}
//# sourceMappingURL=GlyphProps.d.ts.map