UNPKG

react-native-windows

Version:
17 lines 458 B
/** * 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