import React from 'react'; import { G, Path, Defs, ClipPath } from 'react-native-svg'; import type { IllustrationSvgProps } from '../types'; import BaseSvg from '../BaseSvg'; const Lock = ({ stroke, fill, testID, width, height, }: IllustrationSvgProps) => { return ( ); }; export default Lock;