import * as React from 'react' import { ViewStyle } from 'react-native' import Svg, { Path, Rect } from 'react-native-svg' import Colors from 'src/styles/colors' interface Props { style?: ViewStyle } export default function KeylessBackup({ style }: Props) { return ( ) }