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