import * as React from 'react'; export interface Lock32Props extends React.SVGProps { ariaLabel?: string } export default function Lock32({ ariaLabel, ...props }: Lock32Props) { return ( ); }