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