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