import React from 'react'; import SvgIcon from './svgIcon'; type Props = React.ComponentProps; const IconLock = React.forwardRef(function IconLock( props: Props, ref: React.Ref ) { return ( ); }); IconLock.displayName = 'IconLock'; export {IconLock};