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