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