react95-native
Version:
Refreshed Windows 95 style UI components for your React Native app
10 lines (9 loc) • 378 B
TypeScript
/// <reference types="react" />
import { View, StyleProp, ViewStyle } from 'react-native';
import type { $RemoveChildren, DimensionValue } from '../../types';
declare type Props = $RemoveChildren<typeof View> & {
size?: DimensionValue;
style?: StyleProp<ViewStyle>;
};
declare const Hourglass: ({ size, style, ...rest }: Props) => JSX.Element;
export default Hourglass;