react95-native
Version:
Refreshed Windows 95 style UI components for your React Native app
9 lines (8 loc) • 338 B
TypeScript
import React from 'react';
import { StyleProp, ViewStyle, View } from 'react-native';
declare type Props = React.ComponentPropsWithRef<typeof View> & {
children?: React.ReactNode;
style?: StyleProp<ViewStyle>;
};
declare const SnackbarContent: ({ children, style, ...rest }: Props) => JSX.Element;
export default SnackbarContent;