import * as React from 'react' import Svg, { Path } from 'react-native-svg' import colors from 'src/styles/colors' interface Props { color?: string width?: number height?: number } const Lock = ({ color = colors.accent, width = 20, height = 20 }: Props) => ( ) export default Lock