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