import React from 'react'; import { View, ImageBackground, StyleProp, ViewStyle } from 'react-native'; import type { $RemoveChildren, DimensionValue } from '../../types'; import base64hourglass from './base64hourglass'; type Props = $RemoveChildren & { // TODO: switch from any size (px / %) to the way we do it in Button(sm | md | lg) ? size?: DimensionValue; style?: StyleProp; }; const Hourglass = ({ size = 30, style, ...rest }: Props) => { return ( ); }; export default Hourglass;