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